{"info":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","description":"<html><head></head><body><p>This documentation describes the AdminPulse API endpoints. In case you have any feedback or miss certain functionality, let us know via <a href=\"https://\">support@adminpulse.eu</a></p>\n<h1 id=\"api-endpoint\">API endpoint</h1>\n<ul>\n<li>The base API endpoint for all requests (excluding the authentication calls) is: <a href=\"https://api.adminpulse.be\">https://api.adminpulse.be</a></li>\n</ul>\n<h1 id=\"status-codes\">Status codes</h1>\n<ul>\n<li><p><code>200</code> OK: the request was processed successfully</p>\n</li>\n<li><p><code>400</code> Bad request: the endpoint was called using invalid data</p>\n</li>\n<li><p><code>401</code> Unauthorized: invalid or missing access token</p>\n</li>\n<li><p><code>404</code> Resource not found: make sure the correct URL was used</p>\n</li>\n<li><p><code>429</code> Too many requests: the rate limit is currently set at 480 calls/min. Except for the documents/add call. That one allows for 50 calls/min.</p>\n</li>\n<li><p><code>500</code> Internal Server Error: an unexpected error occurred. Contact support if this problem keeps occurring.</p>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The AdminPulse API offers 2 authentication methods:</p>\n<ul>\n<li><p>OAuth with callback URL (recommended)</p>\n</li>\n<li><p>Using an <a href=\"https://adminpulse.zendesk.com/hc/articles/8331100368924\">API key</a></p>\n</li>\n</ul>\n<p>Whichever authentication method is used, the token or key always has to be added to the <code>Authorization</code> header with a <code>Bearer</code> prefix to access all API endpoints. Example: <code>Authentication: Bearer xyz</code></p>\n<p>If you are a 3rd party integrator and want to make an API integration for multiple accounting offices, send a request to <a href=\"https://\">support@adminpulse.eu</a> to request a <code>client_id</code> and <code>client_secret.</code> Tell us about your usecase and which redirect URL(s) you want to use and we will gladly assist you.</p>\n<h2 id=\"oauth-with-callback-url\">OAuth with callback URL</h2>\n<p>Keep in mind that you will have to register a <code>redirect URL</code> as well. This URL will be called after the user has logged in.</p>\n<p>Example: <a href=\"https://\"><i>https://yourcompany.com/adminpulse/callback</i></a></p>\n<h6 id=\"1-setup-the-authorization-url\">1. Setup the authorization URL</h6>\n<p>The authorization URL is: <a href=\"https://\"><code>https://login.adminpulse.be/connect/authorize</code></a></p>\n<p>The following query string parameters should be added. Make sure to sure URL encoding.</p>\n<ul>\n<li><p><code>client_id</code> the client ID that you received from the AdminPulse team</p>\n</li>\n<li><p><code>response_type=code</code></p>\n</li>\n<li><p><code>scope=api.connect</code> api.connect is currently the only scope available. Add the <code>offline_access</code> scope in to be able to request refresh tokens. See other scopes below.</p>\n</li>\n<li><p><code>redirect_uri</code> this is the callback URL that you registered with the AdminPulse team.</p>\n</li>\n<li><p><code>state</code> optionally you can pass state which will be included when the callback URL is called.</p>\n</li>\n</ul>\n<p>This is an example of a full authorization URL: <a href=\"https://\"><code>https://login.adminpulse.be/connect/authorize?client_id=</code><code><i><b>&amp;response_type=code&amp;scope=api.connect offline_access&amp;redirect_uri=https://</b></i></code><code>/callback</code></a></p>\n<p><em>Note: keep in mind that scopes need to be space delimited (using the encoding)</em></p>\n<h6 id=\"2-obtaining-an-access-token\">2. Obtaining an access token</h6>\n<p>After the authorization URL has been called and the user logged in successfully, the callback URL is called using a <code>GET</code> request with a query string parameter <code>code</code>. This code will be used to obtain an access token.</p>\n<p>The token endpoint is: <a href=\"https://\"><code>https://login.adminpulse.be/connect/token</code></a></p>\n<p>Request headers:</p>\n<p><code>Content-Type</code>: application/x-www-form-urlencoded</p>\n<p>Make a <code>POST</code> call with the following <strong>x-www-form-urlencoded</strong> data in the request body:</p>\n<ul>\n<li><p><code>code</code>: the code received via query string parameters</p>\n</li>\n<li><p><code>redirect_uri</code>: <a href=\"https://\">https://yourcompany.com/adminpulse/callback</a></p>\n</li>\n<li><p><code>grant_type:</code> authorization_code</p>\n</li>\n<li><p><code>client_id</code>: the client ID that you received from the AdminPulse team</p>\n</li>\n<li><p><code>client_secret</code>: the client secret that you received from the AdminPulse team</p>\n</li>\n</ul>\n<p>You receive the following parameters in the JSON body response:</p>\n<ul>\n<li><p><code>access_token</code>: the actual access token that will be used in the Authorization header for further requests to all API endpoints. Valid for 1 hour.</p>\n</li>\n<li><p><code>token_type</code>: the token type will always be Bearer</p>\n</li>\n<li><p><code>expires_in</code>: when the access token will expire (in seconds)</p>\n</li>\n<li><p><code>refresh_token</code>: the refresh token. Store this so a new access token can be requested when the access token expired.<br>  The refresh token itself is valid for 90 days. since the last time you used it. When using the refresh token to request a new access token, you will also receive a new refresh token which will again be valid for 90 days.<br>  If the refresh token is not used within the 90 day period, the user will have to re-authenticate.</p>\n</li>\n</ul>\n<h6 id=\"3-refreshing-an-access-token\">3. Refreshing an access token</h6>\n<p>The endpoint is: <a href=\"https://\"><code>https://login.adminpulse.be/connect/token</code></a></p>\n<p>Make a <code>POST</code> call with the following x-www-form-urlencoded data:</p>\n<ul>\n<li><p><code>refresh_token</code>: the refresh token that you stored from a previous request</p>\n</li>\n<li><p><code>grant_type=refresh_token</code></p>\n</li>\n<li><p><code>client_id</code>: the client ID that you received from the AdminPulse team</p>\n</li>\n<li><p><code>client_secret</code>: the client secret that you received from the AdminPulse team</p>\n</li>\n</ul>\n<p>You receive the following parameters in the JSON body response:</p>\n<ul>\n<li><p><code>access_token</code>: a new access token. Valid for 1 hour.</p>\n</li>\n<li><p><code>token_type</code>: the token type will always be Bearer</p>\n</li>\n<li><p><code>expires_in</code>: when the access token will expire (in seconds)</p>\n</li>\n<li><p><code>refresh_token</code>: the refresh token. Store this so a new access token can be requested when the access token expired.<br>  The refresh token itself is valid for 90 days. since the last time you used it. When using the refresh token to request a new access token, you will also receive a new refresh token which will again be valid for 90 days.<br>  If the refresh token is not used within the 90 day period, the user will have to re-authenticate.</p>\n</li>\n</ul>\n<h2 id=\"using-an-api-key\">Using an API key</h2>\n<p>In this case, a token will have to be generated by the customer (the accountant) by going to the \"My profile\" page in AdminPulse or using this link: <a href=\"https://\">https://app.adminpulse.be/#/profile/accesstokens</a>.</p>\n<p>This token does not need to be refreshed. You can use it in the Authorization header: <code>Authorization: Bearer</code></p>\n<h1 id=\"scopes\">Scopes</h1>\n<p>These scopes are available when obtaining an access token. Any required scope is mentioned per call below.</p>\n<ul>\n<li><p>documents.read</p>\n</li>\n<li><p>documents.write</p>\n</li>\n<li><p>interactions.write</p>\n</li>\n<li><p>invoices.read</p>\n</li>\n<li><p>invoices.write</p>\n</li>\n<li><p>relations.read</p>\n</li>\n<li><p>relations.write</p>\n</li>\n<li><p>registrations.read</p>\n</li>\n<li><p>registrations.write</p>\n</li>\n<li><p>tasks.read</p>\n</li>\n<li><p>tasks.write</p>\n</li>\n<li><p>users.read</p>\n</li>\n<li><p>users.write</p>\n</li>\n<li><p>pricelistitems.read</p>\n</li>\n<li><p>notifications.read</p>\n</li>\n<li><p>notifications.write</p>\n</li>\n</ul>\n<p>When using an API key for authentication, scopes are defined during the creation of the API key.</p>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>Your calls are rate limited by a combination of your unique client_id and the tenant you're making calls for (with a fallback value of the caller's IP Address).</p>\n<p>The amount of calls remaining can be checked by looking at these response headers of each request:</p>\n<ul>\n<li><p><strong>x-remaining-calls-per-minute</strong>: The amount of calls you can still make.</p>\n</li>\n<li><p><strong>x-total-calls-per-minute</strong>: The total amount of calls you can make per minute.</p>\n</li>\n</ul>\n<p>Please note: the minute referred to above is a sliding window. The rate limit is currently set at <strong>480 calls/min</strong>. Except for the documents/add call. That one allows for <strong>50 calls/min.</strong></p>\n<h1 id=\"webhooks\">Webhooks</h1>\n<h4 id=\"introduction\">Introduction</h4>\n<p>Webhooks provide a way for AdminPulse to automatically send real-time notifications to another application when specific events occur. Instead of constantly checking for updates, webhooks ensure that relevant information is sent to a designated URL when an event takes place.</p>\n<p>While there might be a slight delay (max 2 minutes) due to event batching, webhooks enable efficient and timely communication between different systems.</p>\n<h4 id=\"entities\">Entities</h4>\n<p>The support entities are:</p>\n<ul>\n<li><p><em>registration</em></p>\n</li>\n<li><p><em>relation</em></p>\n</li>\n<li><p><em>task</em></p>\n</li>\n<li><p><em>taskschedule</em></p>\n</li>\n<li><p><em>invoice</em></p>\n</li>\n<li><p><em>document</em></p>\n</li>\n<li><p><em>documentContent</em></p>\n</li>\n<li><p>email</p>\n</li>\n<li><p><em>user</em></p>\n</li>\n</ul>\n<h4 id=\"events\">Events</h4>\n<p>You can subscribe to the following events:</p>\n<ul>\n<li><p><em>created</em></p>\n</li>\n<li><p><em>updated</em></p>\n</li>\n<li><p><em>deleted</em></p>\n</li>\n</ul>\n<h4 id=\"how-the-webhook-is-sent\">How the webhook is sent</h4>\n<p>AdminPulse will send a <strong>POST</strong> request to your registered URL. The body of this request will contain a json object with the following structure:</p>\n<ul>\n<li><p>AppId - string</p>\n</li>\n<li><p>Items - array of item:</p>\n<ul>\n<li><p>EntityId - string - the id of the entity for which we send a webhook. Eg: relationId</p>\n</li>\n<li><p>EntityType - string - the entity type</p>\n</li>\n<li><p>Event - string - <em>created</em>/<em>updated</em>/<em>deleted</em></p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Please note</strong> that the webhook response does not include the actual values related to the event. To obtain the latest version of the affected entity and its associated information, you should make a subsequent call to our API using the provided details.</p>\n<h4 id=\"when-the-webhook-is-sent\">When the webhook is sent</h4>\n<p>Depending on the entity type, an event will be sent for a specific entity with the corresponding event type.</p>\n<p><strong>Registration</strong></p>\n<ul>\n<li><p>created when the registration was created</p>\n</li>\n<li><p>updated when the registration was modified (including when it was invoiced on a <strong>finalized</strong> invoice, not an invoice in its draft state)</p>\n</li>\n<li><p>deleted when the registration was deleted</p>\n</li>\n</ul>\n<p><strong>Relation</strong></p>\n<ul>\n<li><p><em>created</em> when the related was created</p>\n</li>\n<li><p><em>updated</em> when</p>\n<ul>\n<li><p>any of the relation fields were changed</p>\n</li>\n<li><p>a bank account was changed</p>\n</li>\n<li><p>an address was changed</p>\n</li>\n<li><p>the budget of the relation was changed</p>\n</li>\n<li><p>the invoice schedule of the relation was changed</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Task</strong></p>\n<ul>\n<li><p><em>created</em> when the task was created</p>\n</li>\n<li><p><em>updated</em> when</p>\n<ul>\n<li><p>task deadline was changed</p>\n</li>\n<li><p>task tags were changed</p>\n</li>\n<li><p>task relation was changed</p>\n</li>\n<li><p>task assigned user was changed</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Taskschedule</strong></p>\n<ul>\n<li><p><em>created</em> when the task schedule (on a relation) was created</p>\n</li>\n<li><p><em>updated</em> when the task schedule was changed</p>\n</li>\n</ul>\n<p><strong>Invoice</strong></p>\n<ul>\n<li><p><em>created</em> when a <strong>finalized</strong> invoice was created. A draft invoice that was processed and received an invoice number.</p>\n</li>\n<li><p><em>updated</em> when</p>\n<ul>\n<li><p>the invoice was edited</p>\n</li>\n<li><p>the invoice was paid or the payment was removed</p>\n</li>\n</ul>\n</li>\n<li><p><em>deleted</em> when an invoice was unnumbered (moved back to draft invoices)</p>\n</li>\n</ul>\n<p><strong>Document</strong></p>\n<ul>\n<li><p><em>created</em> when the document was created</p>\n</li>\n<li><p><em>updated</em> when document metadata was changed (not its content)</p>\n</li>\n<li><p><em>deleted</em> when the document was deleted</p>\n</li>\n</ul>\n<p><strong>DocumentContent</strong></p>\n<ul>\n<li><em>updated</em> when the content of a document was modified or replaced</li>\n</ul>\n<p>Email</p>\n<ul>\n<li><em>created</em> when the email was created</li>\n</ul>\n<p><strong>User</strong></p>\n<ul>\n<li><p>created when a new user was added to the AdminPulse account</p>\n</li>\n<li><p>updated when the user's metadata was changed</p>\n</li>\n<li><p>deleted when the user is removed from the AdminPulse account</p>\n</li>\n</ul>\n<h4 id=\"retries\">Retries</h4>\n<p>When the webhook does not receive a success status code (200/202/204), a retry will be attempted later on. Each webhook message will be retried 4 times. The delay is gradually increased between retries.</p>\n<ul>\n<li><p>5 minutes</p>\n</li>\n<li><p>1 hour</p>\n</li>\n<li><p>5 hours</p>\n</li>\n<li><p>10 hours</p>\n</li>\n</ul>\n<h4 id=\"disabling-of-webhooks\">Disabling of webhooks</h4>\n<p>If the webhook does not respond with a success status code for a long time, it will be disabled to prevent endless load on both AdminPulse and the target system.</p>\n<p>The webhook will be disabled when:</p>\n<ul>\n<li><p>the webhook was created more than one week ago</p>\n</li>\n<li><p>in the last week we did not receive a success response</p>\n</li>\n<li><p>in the last week at least 100 attempts were made to call the webhook</p>\n</li>\n</ul>\n<p>When the webhook is disabled, an e-mail is sent to the administrators of the AdminPulse account to notify them.</p>\n<h4 id=\"message-authenticity\">Message authenticity</h4>\n<p>When registering a webhook, you will receive an app id and app key (see <a href=\"https://developer.adminpulse.be/#9a7ad413-fb05-4e76-a0c6-444f9159d037\">https://developer.adminpulse.be/#9a7ad413-fb05-4e76-a0c6-444f9159d037</a>). It is recommended you store these values, so you can use them later when a webhook is received by your system. This way, you are 100% sure that the webhook was sent by AdminPulse and not by a malicious party.</p>\n<p>Webhook events can be validated using the HMAC signature present on the <code>X-HMAC-Signature</code> header.<br>An example of the value of this header is<br><code>Hmac HMACSHA256:SHA256:software.client:TnMMKIuazB0v1u+95awoNRDQbTUmHC/uqZDezJPtIdg=:67ddb60519c04e4ea6186a2480e0ee06:1755853921</code></p>\n<p>The value is colon-separated constructed string consisting of:</p>\n<ul>\n<li><p>the authentication scheme (Hmac)</p>\n</li>\n<li><p>the HMAC hashing method (HMACSHA256)</p>\n</li>\n<li><p>The request body hashing method (SHA256)</p>\n</li>\n<li><p>the app id (software.client)</p>\n</li>\n<li><p>the base64 version of a hashed string that consists of the app id, the HTTP request method in uppercase (POST), the url encoded request URL, the request timestamp in unix seconds, a nonce and a base64 version of the hashed request body</p>\n</li>\n<li><p>a nonce</p>\n</li>\n<li><p>request timestamp in unix seconds</p>\n</li>\n</ul>\n<p>To validate the signature, you will need to:</p>\n<ul>\n<li><p>hash the received json payload using SHA256</p>\n</li>\n<li><p>convert this string to base64</p>\n</li>\n<li><p>construct a string made up of these variables. Make sure the casing of the urlEncodedWebhookUrl uses capital casing: a slash should be / and not /.<br>  \"{appId}{httpMethod}{urlEncodedWebhookUrl}{receivedTimestamp}{receivedNonce}{base64HashedPayload}\"</p>\n</li>\n<li><p>hash this string using HMACSHA256, where the hashing key is your app key that you received when the webhook was created</p>\n</li>\n<li><p>compare the constructed string with the string received in the header above (<code>TnMMKIuazB0v1u+95awoNRDQbTUmHC/uqZDezJPtIdg</code>) in our example</p>\n</li>\n<li><p>if both strings match, the webhook was called by AdminPulse</p>\n</li>\n</ul>\n<h1 id=\"changelog\">Changelog</h1>\n<h4 id=\"2025---december\">2025 - december</h4>\n<ul>\n<li><p>add webhook support for email, taskschedule</p>\n</li>\n<li><p>add option to pass unitPrice when creating a registration</p>\n</li>\n<li><p>add option to get assignments without invoice schedule on /relations/invoiceschedules</p>\n</li>\n</ul>\n<h4 id=\"2025---october\">2025 - october</h4>\n<ul>\n<li><p>add lastSyncTime query parameter to \"list tasks\" endpoint</p>\n</li>\n<li><p>add lastSyncTime query parameter to \"list users\" endpoint</p>\n</li>\n<li><p>include assignment info in registration response</p>\n</li>\n<li><p>include invoice attachments in invoice response</p>\n</li>\n<li><p>include initials in relation response (NL)</p>\n</li>\n<li><p>add option to pass companyId and teams when adding a relation</p>\n</li>\n<li><p>add option to pass start date of invoice schedule when adding an invoice schedule</p>\n</li>\n<li><p>add option to override existing invoice schedule / set a new amount</p>\n</li>\n<li><p>add some remarks to the documentation of validating message authenticity when using our webhooks. The casing on the url encoded endpoint url should be capital case.</p>\n</li>\n</ul>\n<h4 id=\"2025---june\">2025 - june</h4>\n<ul>\n<li><p>add endpoints to list, create, update and delete task schedules</p>\n</li>\n<li><p>include task periodicities in /tasks/templates endpoint</p>\n</li>\n<li><p>add endpoint to get all invoice schedules for all relations: /relations/invoiceschedules</p>\n</li>\n</ul>\n<h4 id=\"2025---may\">2025 - may</h4>\n<ul>\n<li><p>add webhook support for document, documentContent, registration and user</p>\n</li>\n<li><p>add endpoints to list, create and update planned registrations</p>\n</li>\n<li><p>add endpoint to list pricetables</p>\n</li>\n<li><p>add endpoint to link a todo to an interaction</p>\n</li>\n<li><p>add endpoint to add an attachment to an interaction</p>\n</li>\n<li><p>add sendInvoiceStrategy, sendInvoiceSoftware, receiveInvoiceSoftware, otherSoftware and accountingSoftware to relation response</p>\n</li>\n<li><p>add endpoints to list teams, add, update and remove user from a team</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API endpoint","slug":"api-endpoint"},{"content":"Status codes","slug":"status-codes"},{"content":"Authentication","slug":"authentication"},{"content":"Scopes","slug":"scopes"},{"content":"Rate limit","slug":"rate-limit"},{"content":"Webhooks","slug":"webhooks"},{"content":"Changelog","slug":"changelog"}],"owner":"5560360","collectionId":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","publishedId":"TzJsgdv7","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"5FA3C0"},"publishDate":"2023-04-05T12:10:31.000Z"},"item":[{"name":"Authentication","item":[{"name":"OAuth with callback URL","item":[{"name":"1. Get authorization code","id":"f73f814e-6999-4380-9281-231da44f25b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{authorizeTokenUrl}}?response_type=code&client_id={{client_id}}&state={{state}}&redirect_uri={{redirect_uri}}&scope=api.connect offline_access","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"197af433-945e-4742-b46c-21010613b36e","id":"197af433-945e-4742-b46c-21010613b36e","name":"Authentication","type":"folder"}},"urlObject":{"host":["{{authorizeTokenUrl}}"],"query":[{"key":"response_type","value":"code"},{"key":"client_id","value":"{{client_id}}"},{"key":"state","value":"{{state}}"},{"key":"redirect_uri","value":"{{redirect_uri}}"},{"key":"scope","value":"api.connect offline_access"}],"variable":[]}},"response":[],"_postman_id":"f73f814e-6999-4380-9281-231da44f25b8"},{"name":"2. Get access token","id":"6be5da20-deff-4a40-87ae-9b6e4ea17004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"{{code}}","type":"text"},{"key":"redirect_uri","value":"{{redirect_uri}}","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"}]},"url":"{{identityTokenUrl}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"197af433-945e-4742-b46c-21010613b36e","id":"197af433-945e-4742-b46c-21010613b36e","name":"Authentication","type":"folder"}},"urlObject":{"host":["{{identityTokenUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6be5da20-deff-4a40-87ae-9b6e4ea17004"}],"id":"4b349062-1c14-486a-b188-7df0245fa005","_postman_id":"4b349062-1c14-486a-b188-7df0245fa005","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"197af433-945e-4742-b46c-21010613b36e","id":"197af433-945e-4742-b46c-21010613b36e","name":"Authentication","type":"folder"}}}],"id":"197af433-945e-4742-b46c-21010613b36e","description":"<h3 id=\"scopes\">Scopes</h3>\n<ul>\n<li><p>To get a refresh token, you must request the offline_access scope. A refresh token allows you to refresh your access token and maintain an offline connection.</p>\n</li>\n<li><p>api.connect</p>\n</li>\n<li><p>offline_access (optional)</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"ab5fa616-cc35-40a1-92af-bed39aeb4e74","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1685b421-e3a9-43eb-92b1-6b53424012c1","type":"text/javascript","exec":[""]}}],"_postman_id":"197af433-945e-4742-b46c-21010613b36e"},{"name":"Relations","item":[{"name":"Read","item":[{"name":"get single relation","event":[{"listen":"test","script":{"id":"41395b99-51c5-47d9-9ed3-f42d6ad74451","exec":[""],"type":"text/javascript","packages":{}}}],"id":"a22ddbde-6290-4638-9eec-d4616d1a8ed8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/APR00001|1ca045b2-fdfb-468c-a6ae-1f588cf0a42c","description":"<p>This endpoint supports both the unique identifier (APR00001) of a relation and the uuid of a relation (1ca045b2-fdfb-468c-a6ae-1f588cf0a42c):</p>\n<p><a href=\"https://api.adminpulse.be/relations/APR00001\">https://api.adminpulse.be/relations/APR00001</a><br /><a href=\"https://api.adminpulse.be/relations/1ca045b2-fdfb-468c-a6ae-1f588cf0a42c\">https://api.adminpulse.be/relations/1ca045b2-fdfb-468c-a6ae-1f588cf0a42c</a></p>\n<p>Required scope: <strong>relations.read</strong></p>\n<h2 id=\"relation\"><strong>Relation</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>infix</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>initials</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>commercialName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>languageCode</td>\n<td>string</td>\n<td>2 letter country code</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>number</td>\n<td>Madam =1  <br />Mister = 2  <br />Doctor = 5  <br />Master = 6  <br />Notary = 7</td>\n</tr>\n<tr>\n<td>vatNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>businessNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>idCardNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>idCardNumberExpiryDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>nationalIdNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>passportNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>rsinNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>kvkNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>loonheffingenNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>omzetbelastingNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bsnNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>driverLicenseNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>driverLicenseExpiryDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>lastSyncDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>type</td>\n<td>number</td>\n<td>Company = 0  <br />Sole proprietor = 1  <br />Person = 2</td>\n</tr>\n<tr>\n<td>crmType</td>\n<td>number</td>\n<td>Other = 0  <br />Prospect = 2  <br />Customer = 3  <br />Own company = 4</td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>foundingDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>publicationDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>publicationNr</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>lastFilingArticlesAssociation</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>nextGeneralMeetingDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>generalMeetingTime</td>\n<td>time</td>\n<td></td>\n</tr>\n<tr>\n<td>generalMeetingLocation</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>generalMeetingFormulaFixedDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>generalMeetingFormulaDay</td>\n<td>number</td>\n<td>Work day = 0  <br />Monday = 1  <br />Tuesday = 2  <br />Wednesday = 3  <br />Thursday = 4  <br />Friday = 5  <br />Saturday = 6  <br />Sunday = 7</td>\n</tr>\n<tr>\n<td>generalMeetingFormulaWeek</td>\n<td>number</td>\n<td>First = 0  <br />Second = 1  <br />Third = 2  <br />Fourth = 3  <br />Penultimate = 4  <br />Last = 5</td>\n</tr>\n<tr>\n<td>generalMeetingFormulaMonth</td>\n<td>number</td>\n<td>January = 1  <br />February = 2  <br />March = 3  <br />April = 4  <br />May = 5  <br />June = 6  <br />July = 7  <br />August = 8  <br />September = 9  <br />October = 10  <br />November = 11  <br />December = 12</td>\n</tr>\n<tr>\n<td>generalMeetingFormulaType</td>\n<td>number</td>\n<td>No general meeting= 0  <br />Always on a fixed date (day/month) = 1  <br />Formula = 2  <br />Free date = 3</td>\n</tr>\n<tr>\n<td>generalMeetingFormulaFallback</td>\n<td>number</td>\n<td>Same day = 0  <br />Next work day = 1  <br />Previous work day = 2  <br />Next monday = 3  <br />Next tuesday = 4  <br />Next wednesday = 5  <br />Next thursday = 6  <br />Next friday = 7  <br />Next saturday = 8  <br />Next sunday = 9</td>\n</tr>\n<tr>\n<td>fiscalYears</td>\n<td>array of fiscal years. See fiscal year attribute below.</td>\n<td></td>\n</tr>\n<tr>\n<td>isPerson</td>\n<td>boolean</td>\n<td>A sole proprietor is regarded as a person</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addressNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addressBox</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addressZipCode</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addressCountryCode</td>\n<td>string</td>\n<td>2 letter country code</td>\n</tr>\n<tr>\n<td>addressCountry</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>profession</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>legalForm</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>legalFormXbrl</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>responsible</td>\n<td>string</td>\n<td>name of the relation responsible</td>\n</tr>\n<tr>\n<td>responsibleEmail</td>\n<td>string</td>\n<td>e-mail of the relation responsible</td>\n</tr>\n<tr>\n<td>assistant</td>\n<td>string</td>\n<td>name of the relation assistant</td>\n</tr>\n<tr>\n<td>assistantEmail</td>\n<td>string</td>\n<td>e-mail of the relation assistant</td>\n</tr>\n<tr>\n<td>assistantBackup</td>\n<td>string</td>\n<td>name of the relation assistant backup</td>\n</tr>\n<tr>\n<td>assistantBackupEmail</td>\n<td>string</td>\n<td>e-mail of the relation assistant backup</td>\n</tr>\n<tr>\n<td>associate</td>\n<td>string</td>\n<td>name of the relation associate</td>\n</tr>\n<tr>\n<td>associateEmail</td>\n<td>string</td>\n<td>e-mail of the relation associate</td>\n</tr>\n<tr>\n<td>nationalityCountryCode</td>\n<td>string</td>\n<td>2 letter country code</td>\n</tr>\n<tr>\n<td>nationalityCountry</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>birthPlace</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>handicap</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>totalRisk</td>\n<td>number</td>\n<td>Anti money laundering risk level  <br />Low = 0  <br />Standard = 1  <br />High = 100</td>\n</tr>\n<tr>\n<td>purposeTransaction</td>\n<td>string</td>\n<td>Anti money laundering: purpose of the transaction</td>\n</tr>\n<tr>\n<td>natureTransaction</td>\n<td>string</td>\n<td>Anti money laundering: nature of the transaction</td>\n</tr>\n<tr>\n<td>amlExpiryDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>amlFinalizedDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>endFiscalYear</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>vatPeriodicity</td>\n<td>number</td>\n<td>Unknown = 0  <br />Monthly = 1  <br />Quarterly = 2  <br />Exemption small enterprise = 3  <br />Exemption agriculture = 4  <br />Yearly = 5  <br />Exemption article 44 = 6  <br />Not subject to VAT = 7  <br />Special VAT regime for lawyers = 8</td>\n</tr>\n<tr>\n<td>accountingSoftware</td>\n<td>number</td>\n<td>Unknown = 0  <br />Office = 1  <br />Yuki = 2  <br />ExactOnline = 3  <br />ExpertMPlus = 4  <br />Sage100 = 5  <br />SageBob = 6  <br />WinBooks = 7  <br />Octopus = 8  <br />VeroCount = 9  <br />Quadra = 10  <br />Wings = 11  <br />Horus = 12  <br />WinAuditor = 13  <br />Other = 17  <br />Popsy = 18  <br />Cubic = 19  <br />TopPower = 20  <br />Venice = 21  <br />Adsolut = 22  <br />ExactProacc = 23  <br />Admisol = 24  <br />Cashaca = 25  <br />Carfac = 26  <br />Afas = 27  <br />BusinessCentral = 28  <br />Silvasoft = 29  <br />Excel = 30  <br />Customer = 31  <br />SAPBusinessOne = 32  <br />Briljant = 33  <br />ODOO = 34  <br />Clearfacts = 35  <br />Dexxter = 36  <br />MyZen = 37  <br />Zensoft = 38  <br />Moneybird = 39  <br />Billtobox = 40  <br />Eboekhouden = 41  <br />Moneymonk = 42  <br />KingSoftware = 43  <br />Tellow = 44  <br />FiscaalGemak = 45  <br />Rompslomp = 46  <br />AccountView = 47  <br />Cash = 48  <br />Billit = 49  <br />Reeleezee = 50  <br />Snelstart = 51</td>\n</tr>\n<tr>\n<td>accountingAccessCode</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>accountingDigitalMailbox</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>accountingRelationcode</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>selfbooker</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array of strings</td>\n<td>Tags that are linked to the relation</td>\n</tr>\n<tr>\n<td>naceCodes</td>\n<td>array of strings</td>\n<td>Nace codes defined for the given relation</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>socialSecretariat</td>\n<td>number</td>\n<td>Other = 1  <br />Attentia = 2  <br />Securex = 3  <br />Acerta = 4  <br />Partena = 5  <br />Alia = 6  <br />Sodalis = 7  <br />Randstad = 8  <br />SDWorx = 9  <br />Sofidi = 10  <br />Accuria = 11  <br />Caritas = 12  <br />Sodiwe = 13  <br />Xerius = 14  <br />Liantis = 15  <br />Avixi = 16  <br />Salar = 17  <br />Sodibe = 18  <br />HDI = 19  <br />UCM = 20  <br />GroupS = 21  <br />NatPat = 22  <br />LWB = 23  <br />Besox = 24  <br />Ping = 25  <br />Horecaplus = 26  <br />VDA = 27  <br />CLB = 28  <br />WeHelp = 29  <br />SSE = 30  <br />Uw Payroll = 31  <br />ORBISS = 32  <br />Papperas = 33  <br />Own company = 253  <br />Unknown = 254  <br />None = 255</td>\n</tr>\n<tr>\n<td>socialSecurityFund</td>\n<td>number</td>\n<td>Other = 1  <br />GroupS = 2  <br />Xerius = 3  <br />Liantis = 4  <br />Partena = 5  <br />Acerta = 6  <br />Securex = 7  <br />Avixi = 8  <br />Entraide = 10  <br />Ucm = 11  <br />NationalFund = 12  <br />Nisse = 13  <br />Unknown = 254  <br />None = 255</td>\n</tr>\n<tr>\n<td>jurisdiction</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>vatStructuredCommunication</td>\n<td>string</td>\n<td>Structured communication for bank transfers (VAT)</td>\n</tr>\n<tr>\n<td>VatStructuredCommunicationPrepayment</td>\n<td>string</td>\n<td>Structured communication for bank transfers (VAT prepayment)</td>\n</tr>\n<tr>\n<td>bankName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bankIBAN</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bankBIC</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>financialStatementSchema</td>\n<td>number</td>\n<td>Reduced = 0  <br />Full = 1  <br />Micro = 2  <br />Not applicable = 3</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>number</td>\n<td>Manual = 0  <br />Direct debit = 1</td>\n</tr>\n<tr>\n<td>lastUboCalculationDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>lastUboOnlineSinceDate</td>\n<td>date</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>foundationDeed</td>\n<td>number</td>\n<td>Private (onderhands) = 1  <br />Notarial (authentiek) = 2</td>\n</tr>\n<tr>\n<td>rszNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>selfBooker</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>cupboardNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>sector</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>sectorDescription</td>\n<td>string</td>\n<td>1 = Agriculture, forestry and fishing  <br />2 = Mining and quarrying  <br />3 = Manufacturing  <br />4 = Electricity  <br />5 = Water supply; sewerage; waste management and remediation activities  <br />6 = Construction  <br />7 = Wholesale and retail trade; repair of motor vehicles and motorcycles  <br />8 = Transportation and storage  <br />9 = Accommodation and food service activities  <br />10 = Information and communication  <br />11 = Financial and insurance activities  <br />12 = Real estate activities  <br />13 = Professional, scientific and technical activities  <br />14 = Administrative and support service activities  <br />15 = Public administration and defence  <br />16 = Education  <br />17 = Human health and social work activities  <br />18 = Arts, entertainment and recreation  <br />19 = Other service activities  <br />20 = Activities of households as employers  <br />21 = Activities of extraterritorial  <br />255 = Unknown</td>\n</tr>\n<tr>\n<td>naceCodes</td>\n<td>array of string</td>\n<td></td>\n</tr>\n<tr>\n<td>relationGroupId</td>\n<td>string</td>\n<td>id of the relation group, if this relation belongs to a relation group</td>\n</tr>\n<tr>\n<td>relationGroupName</td>\n<td>string</td>\n<td>name of the relation group, if this relation belongs to a relation group</td>\n</tr>\n<tr>\n<td>sendInvoiceStrategy</td>\n<td>number</td>\n<td>null = general setting  <br />1 =email  <br />4 = send by post  <br />5 = peppol  <br />6 = peppol and email  <br />7 = email and by post  <br />8 = email, peppol and by post</td>\n</tr>\n<tr>\n<td>peppolStatus</td>\n<td>number</td>\n<td>0 =not yet searched on peppol network  <br />1 = not found on peppol network  <br />2 = found on peppol network but no supported UBL format  <br />3 = active on peppol network</td>\n</tr>\n<tr>\n<td>sendInvoicePeppolReady</td>\n<td>bool</td>\n<td></td>\n</tr>\n<tr>\n<td>otherSoftware</td>\n<td>array of number</td>\n<td>1 = ClearFacts  <br />2 = Bizzcontrol  <br />3 = BillToBox  <br />4 = Silverfin  <br />5 = FiscaalGemak  <br />6 = Caseware  <br />7 = Nextens  <br />8 = FiscaalOnline  <br />9 = ExactJaarrekening  <br />10 = Billit  <br />11 = Furoo  <br />12 = OkiOki  <br />13 = NumNum  <br />14 = Scrada  <br />15 = Basecone  <br />17 = Bouwsoft  <br />18 = Breex  <br />20 = Mollie  <br />21 = Twikey  <br />22 = ComaxMinFin  <br />23 = TOGA  <br />24 = Teamleader  <br />25 = Twinntax  <br />26 = Accounton  <br />27 = Bothive  <br />28 = Grub  <br />29 = Dapas  <br />30 = Zkr  <br />31 = Facturalia  <br />32 = Striktly  <br />33 = Codabox  <br />34 = Belcofin  <br />36 = Eenvoudigfactureren  <br />37 = OnFact  <br />38 = Kassatellen  <br />39 = Accountable  <br />40 = Nmbrs  <br />41 = Speedbooks  <br />42 = Visionplanner  <br />43 = Vectera  <br />44 = Soda  <br />45 = Cashaca  <br />47 = Lightspeed  <br />48 = Foodmaster  <br />49 = Caro  <br />50 = Factuursturen  <br />51 = MFAS  <br />52 = Audition  <br />53 = Loket  <br />54 = HIX  <br />56 = Lucy  <br />57 = WingsInvoice  <br />59 = Carfac  <br />60 = CEGID  <br />61 = Roller  <br />62 = Trivec  <br />63 = WinBooksConnect</td>\n</tr>\n<tr>\n<td>receiveInvoiceSoftware</td>\n<td>number</td>\n<td>1 = Unknown  <br />2 = Yuki  <br />3 = ExactOnline  <br />4 = BillToBox  <br />5 = Dexxter  <br />6 = Facturalia  <br />7 = OkiOki  <br />8 = Billit  <br />9 = Lucy  <br />10 = OnFact  <br />11 = Wings  <br />12 = Octopus  <br />13 = Odoo  <br />14 = Clearfacts  <br />15 = WeFact  <br />16 = Cashaca  <br />17 = ZenFactuur  <br />18 = Adsolut  <br />19 = ExpertM  <br />20 = Briljant  <br />21 = TeamleaderOne  <br />22 = Accountable  <br />23 = Doccle  <br />24 = CodaboxVoila  <br />25 = MyZenZensoft  <br />26 = Followin  <br />27 = Simpla  <br />28 = Banqup  <br />29 = IAmDigital  <br />30 = Breex</td>\n</tr>\n<tr>\n<td>sendInvoiceSoftware</td>\n<td>array of number</td>\n<td>1 = Unknown  <br />2 = Odoo  <br />3 = TeamleaderFocus  <br />4 = Facturalia  <br />5 = MyFact  <br />6 = Eenvoudigfactureren  <br />7 = OnFact  <br />8 = Kassatellen  <br />9 = Accountable  <br />10 = Factuursturen  <br />11 = Factuurdesk  <br />12 = WingsInvoice  <br />13 = Kyte  <br />14 = Secib  <br />15 = Kleos  <br />16 = Silvasoft  <br />17 = Wacsonline  <br />18 = Zervant  <br />19 = Penningmeester  <br />20 = Handsoft  <br />21 = MyZenZensoft  <br />22 = Yuki  <br />23 = ExactOnline  <br />24 = Cashaca  <br />25 = OkiOki  <br />26 = Lucy  <br />27 = Dexxter  <br />28 = Followin  <br />29 = Simpla  <br />30 = Banqup  <br />31 = BillToBox  <br />32 = IAmDigital  <br />33 = Breex  <br />34 = ZenFactuur  <br />35 = Billit  <br />36 = Octopus  <br />37 = Cegid  <br />38 = DeFactuur  <br />39 = AdminPulse  <br />40 = No software</td>\n</tr>\n<tr>\n<td>accountingSoftware</td>\n<td>number</td>\n<td>0 = Unknown  <br />1 = Office  <br />2 = Yuki  <br />3 = ExactOnline  <br />4 = ExpertMPlus  <br />5 = Sage100  <br />6 = SageBob  <br />7 = WinBooks  <br />8 = Octopus  <br />9 = VeroCount  <br />10 = Quadra  <br />11 = Wings  <br />12 = Horus  <br />13 = WinAuditor  <br />17 = Other  <br />18 = Popsy  <br />19 = Cubic  <br />20 = TopPower  <br />21 = Venice  <br />22 = Adsolut  <br />23 = ExactProacc  <br />24 = Admisol  <br />25 = Cashaca  <br />26 = Carfac  <br />27 = Afas  <br />28 = BusinessCentral  <br />29 = Silvasoft  <br />30 = Excel  <br />31 = Customer  <br />32 = SAPBusinessOne  <br />33 = Briljant  <br />34 = ODOO  <br />36 = Dexxter  <br />37 = MyZen  <br />38 = Zensoft  <br />39 = Moneybird  <br />41 = Eboekhouden  <br />42 = Moneymonk  <br />43 = KingSoftware  <br />44 = Tellow  <br />46 = Rompslomp  <br />47 = AccountView  <br />48 = Cash  <br />50 = Reeleezee  <br />51 = Snelstart  <br />52 = MultiverseOnline  <br />53 = Unit4  <br />54 = Jortt  <br />55 = Twinfield  <br />56 = Accountable  <br />57 = Bunni  <br />58 = ORAS  <br />59 = Zoho  <br />60 = eAccounting  <br />61 = AssistOnline  <br />62 = IgeComptaPlus  <br />63 = Navision  <br />64 = Netsuite  <br />65 = Minox  <br />66 = CsWin  <br />67 = EvaOnline  <br />68 = DigiBoox</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>array</td>\n<td>array of an object that contains two string properties: teamId and teamName</td>\n</tr>\n<tr>\n<td>ubo</td>\n<td>see ubo attribute below</td>\n<td></td>\n</tr>\n<tr>\n<td>tos</td>\n<td>array of linked relations. See linked relation attribute below</td>\n<td></td>\n</tr>\n<tr>\n<td>froms</td>\n<td>array of linked relations. See linked relation attribute below</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fiscal-year\">Fiscal year</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fiscalYear</td>\n<td>number</td>\n<td>The fiscal year</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>generalMeeting</td>\n<td>string</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ubo\">UBO</h2>\n<p>The UBO attribute consists of <strong>multiple</strong> (possible) UBO's. For example: a holding has 3 shareholders, two of which are UBO. The UBO attribute of the holding will contain an array of 3 elements, 2 of them will have a <code>uboCalculationResult</code> higher than 0, while the last shareholder will have <code>uboCalculationResult</code> 0 (no UBO)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td>Unique identifier of the relation</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The name of the relation</td>\n</tr>\n<tr>\n<td>uboPercentage</td>\n<td>decimal</td>\n<td>UBO %</td>\n</tr>\n<tr>\n<td>votesPercentage</td>\n<td>decimal</td>\n<td>Votes %</td>\n</tr>\n<tr>\n<td>sharesPercentage</td>\n<td>decimal</td>\n<td>Shares %</td>\n</tr>\n<tr>\n<td>uboCalculationResult</td>\n<td>number</td>\n<td>No UBO = 0  <br />Direct rights to participation in capital = 10  <br />Direct rights to vote in capital = 11  <br />Indirect majority rights to participation in capital = 20  <br />Indirect majority rights to vote in capital = 21  <br />Indirect weighted rights to participation in capital = 30  <br />Indirect weighted rights toVoteInCapital = 31  <br />Direct control by other means = 40  <br />Indirect control by other means = 50  <br />Cross check rights to participation in capital = 60  <br />Cross check rights to vote in capital = 61  <br />Legal representative = 70</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"relation-link-company-owner-shareholder-partner-\">Relation link (company owner, shareholder, partner, ...)</h2>\n<p>A relation can be linked to another relation to form a certain relationship between the two relations. For example a company with one or more shareholders:<br />the company will have multiple <code>froms</code> where each element in the array of <code>froms</code> is an element with <code>linkType = 4</code> and the <code>uniqueIdentifier</code> of the <strong>other relation</strong>.</p>\n<p>This link is available in both directions, so the shareholder relation will have an element in the <code>tos</code> attribute and this uniqueIdentifier will be the identifier of the <strong>company.</strong></p>\n<p>Additional attributes are available depending on the link type. The shareholder link exposes attributes like <code>propertyRight</code>, <code>shareholderGroup</code>, <code>shareholderCategory</code>, <code>shares</code> and <code>votes</code>. These attributes will always be empty for other link types.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Info</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uniqueIdentifier</td>\n<td>number</td>\n<td>Unique identifier of the other relation</td>\n</tr>\n<tr>\n<td>linkType</td>\n<td>number</td>\n<td>Contacts (just a regular contact) = 1  <br />Beneficiaries (begunstigde) = 2  <br />Trustee (lasthebber) = 3  <br />Company owner / Director (bedrijfsleider) = 4  <br />Partner = 5  <br />Shareholder (aandeelhouder) = 6  <br />Auditor (bedrijfsrevisor, commisaris) = 7  <br />Control by other means (controle door andere middelen) = 8</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>date</td>\n<td>Format: <code>2019-09-17T00:00:00</code></td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>date</td>\n<td>Format: <code>2019-09-17T00:00:00</code></td>\n</tr>\n<tr>\n<td>removed</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>removedSince</td>\n<td>date</td>\n<td>Format: <code>2019-09-17T00:00:00</code></td>\n</tr>\n<tr>\n<td>propertyRight</td>\n<td>number</td>\n<td>Only available for link type <strong>shareholder</strong>  <br />Usufruct (vruchtgebruik) = 0  <br />Bare ownership (naakte, blote eigendom) = 1  <br />Full ownership (volle eigendom) = 2  <br />Joint ownership (onverdeeldheid) = 3</td>\n</tr>\n<tr>\n<td>shareholderGroup</td>\n<td>string</td>\n<td>Only available for link type <strong>shareholder</strong></td>\n</tr>\n<tr>\n<td>shareholderCategory</td>\n<td>string</td>\n<td>Only available for link type <strong>shareholder</strong></td>\n</tr>\n<tr>\n<td>shares</td>\n<td>number</td>\n<td>Only available for link type <strong>shareholder</strong></td>\n</tr>\n<tr>\n<td>votes</td>\n<td>number</td>\n<td>Only available for link type <strong>shareholder</strong></td>\n</tr>\n<tr>\n<td>position</td>\n<td>number</td>\n<td>Only available for link type <strong>company owner</strong>  <br />CEO = 0  <br />Manager = 1  <br />Director = 2  <br />Administrator = 3  <br />ExecutiveManager = 4  <br />Associate = 5  <br />ManagingDirector = 6  <br />DailyManagementNonProfit = 7  <br />ManagementNonProfit = 8  <br />Liquidator = 9  <br />Founder = 10  <br />Silent partner = 11  <br />Chairman of the Board of Directors = 12  <br />Permanent representative = 13  <br />Chairman of the General Board = 14  <br />Working partner = 15  <br />Helper = 16  <br />Mate = 17  <br />Second Category Manager = 18  <br />Secretary = 19</td>\n</tr>\n<tr>\n<td>marriageRegime</td>\n<td>number</td>\n<td>Only available for link type <strong>partner</strong>  <br />Legal regime = 0  <br />Communal estate = 1  <br />Separate estates = 2  <br />Other = 3  <br />Separate estates TIGV (toegevoegd intern gemeenschappelijk vermogen) = 4  <br />Limited community of goods (beperkte gemeenschap van goederen)= 5  <br />Matrimonial conditions (huwelijkse voorwaarden)= 6</td>\n</tr>\n<tr>\n<td>representedByUniqueIdentifier</td>\n<td>string</td>\n<td>Only available for link types <strong>shareholder, company owner, auditor</strong></td>\n</tr>\n<tr>\n<td>representedByRotationNumber</td>\n<td>string</td>\n<td>Only available for link type <strong>auditor</strong></td>\n</tr>\n<tr>\n<td>isStatutory</td>\n<td>boolean</td>\n<td>Only available for link type <strong>company owner</strong></td>\n</tr>\n<tr>\n<td>isCommissioner</td>\n<td>boolean</td>\n<td>Only available for link type <strong>auditor</strong></td>\n</tr>\n<tr>\n<td>affiliatedWithAuditorInstitute</td>\n<td>boolean</td>\n<td>Only available for link type <strong>auditor</strong></td>\n</tr>\n<tr>\n<td>rotationNumber</td>\n<td>string</td>\n<td>Only available for link type <strong>auditor</strong></td>\n</tr>\n<tr>\n<td>membershipNumber</td>\n<td>string</td>\n<td>Only available for link type <strong>auditor</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","APR00001|1ca045b2-fdfb-468c-a6ae-1f588cf0a42c"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c206c310-45fd-4d10-a0e9-683ad5216d0d","name":"by unique identifier","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/APR00001"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d8f63b11-ddd0-49f7-9978-668d28fb54ef\",\n    \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n    \"type\": 0,\n    \"lastSyncDate\": \"2023-05-09T06:11:27.467\",\n    \"startDate\": \"2019-08-07T00:00:00\",\n    \"foundingDate\": \"2010-10-15T00:00:00\",\n    \"publicationDate\": \"2010-11-02T00:00:00\",\n    \"publicationNr\": \"P321\",\n    \"lastFilingArticlesAssociation\": \"2021-09-01T00:00:00\",\n    \"nextGeneralMeetingDate\": \"2024-02-02T00:00:00\",\n    \"generalMeetingTime\": \"17:00:04\",\n    \"generalMeetingLocation\": \"Antwerpen\",\n    \"generalMeetingFormulaDay\": 0,\n    \"generalMeetingFormulaWeek\": 1,\n    \"generalMeetingFormulaMonth\": 2,\n    \"generalMeetingFormulaType\": 2,\n    \"generalMeetingFormulaFallback\": 0,\n    \"crmType\": 3,\n    \"code\": \"CON-151\",\n    \"uniqueIdentifier\": \"APR00151\",\n    \"name\": \"Visma holding\",\n    \"commercialName\": \"\",\n    \"languageCode\": \"nl\",\n    \"addressStreet\": \"Street\",\n    \"addressNumber\": \"10\",\n    \"addressBox\": \"B005\",\n    \"addressCity\": \"Gent\",\n    \"addressZipCode\": \"9000\",\n    \"addressCountryCode\": \"BE\",\n    \"addressCountry\": \"België\",\n    \"email\": \"sample-@sample.com\",\n    \"phone\": \"+32 3 755 55 55\",\n    \"mobile\": \"+32 479 99 91 51\",\n    \"legalForm\": \"BV\",\n    \"legalFormXbrl\": \"610\",\n    \"assistant\": \"Bill Newton\",\n    \"assistantEmail\": \"bill@visma.com\",\n    \"assistantBackup\": \"John Langlee\",\n    \"assistantBackupEmail\": \"john@visma.com\",\n    \"associate\": \"\",\n    \"associateEmail\": \"\",\n    \"responsible\": \"\",\n    \"responsibleEmail\": \"\",\n    \"vatNumber\": \"BE 0828.856.684\",\n    \"businessNumber\": \"0828.856.684\",\n    \"nationalityCountryCode\": \"BE\",\n    \"nationalityCountry\": \"België\",\n    \"totalRisk\": 1,\n    \"endFiscalYear\": \"2000-12-31T00:00:00\",\n    \"vatPeriodicity\": 2,\n    \"accountingSoftware\": 2,\n    \"accountingAccessCode\": \"123456-654987987987654513213\",\n    \"accountingDigitalMailbox\": \"connect@yukiworx.com\",\n    \"accountingRelationcode\": \"366\",\n    \"tags\": [\n        \"api\",\n        \"postman\"\n    ],\n    \"remark\": \"An optional remark for this relation\",\n    \"socialSecretariat\": 2,\n    \"socialSecurityFund\": 6,\n    \"jurisdictionCode\": \"3\",\n    \"jurisdiction\": \"Antwerpen, afdeling Antwerpen\",\n    \"vatStructuredCommunication\": \"082885668426\",\n    \"bankName\": \"Belfius\",\n    \"bankIBAN\": \"BE71096123456769\",\n    \"bankBIC\": \"GKCCBEBB\",\n    \"financialStatementSchema\": 3,\n    \"naceCodes\": [\"62.900\"],\n    \"relationGroupId\": \"9b0af579-b836-4ee3-925a-260066450ad4\",\n    \"relationGroupName\": \"Relation group A\",\n    \"teams\": {\n        \"teamId\": \"05389990-893f-4af2-a253-a8b2394c7f53\",\n        \"teamName\": \"Team A\"\n    },\n    \"otherSoftware\": [2,5,11],\n    \"sendInvoiceSoftware\": [10, 15],\n    \"receiveInvoiceSoftware\": 2,\n    \"sendInvoicePeppolReady\": true,\n    \"sendInvoiceStrategy\": 1,\n    \"ubo\": {\n        \"relationUboDetails\": [\n            {\n                \"uniqueIdentifier\": \"APR00356\",\n                \"name\": \"Visma HQ\",\n                \"uboPercentage\": 0.39024,\n                \"votesPercentage\": 1,\n                \"sharesPercentage\": 0.39024,\n                \"uboCalculationResult\": 10\n            }\n        ]\n    },\n    \"tos\": [\n        {\n            \"linkType\": 1,\n            \"uniqueIdentifier\": \"APR00357\"\n        }\n    ],\n    \"froms\": [\n        {\n            \"linkType\": 1,\n            \"uniqueIdentifier\": \"APR00127\"\n        },\n        {\n            \"linkType\": 4,\n            \"uniqueIdentifier\": \"APR01222\",\n            \"startDate\": \"2023-05-01T00:00:00\",\n            \"position\": 1,\n            \"representedByUniqueIdentifier\": \"APR00010\",\n            \"isStatutory\": true\n        },\n        {\n            \"linkType\": 6,\n            \"uniqueIdentifier\": \"APR00120\",\n            \"propertyRight\": 2,\n            \"shareholderGroup\": \"group-B\",\n            \"shareholderCategory\": \"category-A\",\n            \"shares\": 50,\n            \"votes\": 20\n        },\n        {\n            \"linkType\": 6,\n            \"uniqueIdentifier\": \"APR00356\",\n            \"propertyRight\": 2,\n            \"shares\": 32,\n            \"votes\": 35\n        },\n        {\n            \"linkType\": 7,\n            \"uniqueIdentifier\": \"APR00002\",\n            \"isCommissioner\": true,\n            \"affiliatedWithAuditorInstitute\": false\n        },\n        {\n            \"linkType\": 7,\n            \"uniqueIdentifier\": \"APR01507\",\n            \"isCommissioner\": false,\n            \"affiliatedWithAuditorInstitute\": false\n        }\n    ],\n    \"lastUboCalculationDate\": \"2021-01-22T09:33:20.067\",\n    \"paymentMethod\": 0\n}"}],"_postman_id":"a22ddbde-6290-4638-9eec-d4616d1a8ed8"},{"name":"list all relations","id":"cb4ae72c-9183-4f23-9a61-90777a38cceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations?page=0&pageSize=100&lastSyncTime=22102022&searchCriteria&crmType&type&types&includeInactive&withTags=tag1,tag2&withoutTags&phone&businessNumber&vatNumber&nationalIdNumber&rsinNumber&kvkNumber&loonheffingenNumber&omzetbelastingNumber&bsnNumber&selfbooker&includeLinkInformation=true&includeUboInformation=true&includeCommunicationInformation=false&includeEmployeeInformation=true","description":"<p>Required scope: <strong>relations.read</strong></p>\n<p>Returns an array of relations. For a detailed description of the relation's attributes, check the single relation API endpoint above. <a href=\"https://developer.adminpulse.be/#a22ddbde-6290-4638-9eec-d4616d1a8ed8\">https://developer.adminpulse.be/#a22ddbde-6290-4638-9eec-d4616d1a8ed8</a></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>When using paged request, pass in page number.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Number of results to return per page. Maximum 400</p>\n","type":"text/plain"},"key":"pageSize","value":"100"},{"description":{"content":"<p>Get changes newer than the given last sync time. This will allow partial updates. Format ddMMyyyy)</p>\n","type":"text/plain"},"key":"lastSyncTime","value":"22102022"},{"description":{"content":"<p>Search by name, code, unique identifier, telephone number, relation number (VAT/enterprise/...)</p>\n","type":"text/plain"},"key":"searchCriteria","value":null},{"description":{"content":"<p>Select relations of the given crmtype (customer, prospect, etc) only</p>\n","type":"text/plain"},"key":"crmType","value":null},{"description":{"content":"<p>Select relations of the given type (company, natural person, etc) only</p>\n","type":"text/plain"},"key":"type","value":null},{"description":{"content":"<p>Select relations of the given types (company, natural person, etc) only. Comma separated numbers, for example: 1,2</p>\n","type":"text/plain"},"key":"types","value":null},{"description":{"content":"<p>Relations that have an end date in the past, will be filtered out from the result by default. This parameter can be configured to include the inactive relations.</p>\n","type":"text/plain"},"key":"includeInactive","value":null},{"description":{"content":"<p>Select relations that have the configured tag(s). Comma delimited string.</p>\n","type":"text/plain"},"key":"withTags","value":"tag1,tag2"},{"description":{"content":"<p>Select relations that do not have the configured tag(s). Comma delimited string.</p>\n","type":"text/plain"},"key":"withoutTags","value":null},{"description":{"content":"<p>Search by telephone/mobile phone number</p>\n","type":"text/plain"},"key":"phone","value":null},{"description":{"content":"<p>Search by business number (ondernemingsnr)</p>\n","type":"text/plain"},"key":"businessNumber","value":null},{"description":{"content":"<p>Search by VAT number</p>\n","type":"text/plain"},"key":"vatNumber","value":null},{"description":{"content":"<p>Search by national ID number (rijksregisternr)</p>\n","type":"text/plain"},"key":"nationalIdNumber","value":null},{"description":{"content":"<p>Search by RSIN number</p>\n","type":"text/plain"},"key":"rsinNumber","value":null},{"description":{"content":"<p>Search by KVK number</p>\n","type":"text/plain"},"key":"kvkNumber","value":null},{"description":{"content":"<p>Search by loonheffingen number</p>\n","type":"text/plain"},"key":"loonheffingenNumber","value":null},{"description":{"content":"<p>Search by OB number</p>\n","type":"text/plain"},"key":"omzetbelastingNumber","value":null},{"description":{"content":"<p>Search by BSN number</p>\n","type":"text/plain"},"key":"bsnNumber","value":null},{"description":{"content":"<p>Search by selfbooker true or false</p>\n","type":"text/plain"},"key":"selfbooker","value":null},{"description":{"content":"<p>Include linked relations</p>\n","type":"text/plain"},"key":"includeLinkInformation","value":"true"},{"description":{"content":"<p>Include ubo information</p>\n","type":"text/plain"},"key":"includeUboInformation","value":"true"},{"description":{"content":"<p>Include communication items and settings</p>\n","type":"text/plain"},"key":"includeCommunicationInformation","value":"false"},{"description":{"content":"<p>Linked employees</p>\n","type":"text/plain"},"key":"includeEmployeeInformation","value":"true"}],"variable":[]}},"response":[{"id":"eb513d8a-bd77-4370-8f08-e647d032bbd1","name":"relations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/relations?page=0&pageSize=10&lastSyncTime=22102022&searchCriteria&crmType&type&includeInactive&withTags=tag1,tag2&withoutTags","host":["{{apiEndpointUrl}}"],"path":["relations"],"query":[{"key":"page","value":"0","description":"When using paged request, pass in page number."},{"key":"pageSize","value":"10","description":"Number of results to return per page."},{"key":"lastSyncTime","value":"22102022","description":"Get changes newer than the given last sync time. This will allow partial updates. Format ddMMyyyy`)"},{"key":"searchCriteria","value":null,"description":"Search by name, telephone number or VAT number"},{"key":"crmType","value":null,"description":"Select relations of the given crmtype (customer, prospect, etc) only"},{"key":"type","value":null,"description":"Select relations of the given type (company, natural peroson, etc) only"},{"key":"includeInactive","value":null,"description":"Relations that have an end date in the past, will be filtered out from the result by default. This parameter can be configured to include the inactive relations."},{"key":"withTags","value":"tag1,tag2","description":"Select relations that have the configured tag(s)"},{"key":"withoutTags","value":null,"description":"Select relations that do not have the configured tag(s)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"d8f63b11-ddd0-49f7-9978-668d28fb54ef\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"type\": 0,\n            \"lastSyncDate\": \"2023-05-09T06:11:27.467\",\n            \"startDate\": \"2019-08-07T00:00:00\",\n            \"foundingDate\": \"2010-10-15T00:00:00\",\n            \"publicationDate\": \"2010-11-02T00:00:00\",\n            \"publicationNr\": \"P321\",\n            \"lastFilingArticlesAssociation\": \"2021-09-01T00:00:00\",\n            \"nextGeneralMeetingDate\": \"2024-02-02T00:00:00\",\n            \"generalMeetingTime\": \"17:00:04\",\n            \"generalMeetingLocation\": \"Antwerpen\",\n            \"generalMeetingFormulaDay\": 0,\n            \"generalMeetingFormulaWeek\": 1,\n            \"generalMeetingFormulaMonth\": 2,\n            \"generalMeetingFormulaType\": 2,\n            \"generalMeetingFormulaFallback\": 0,\n            \"crmType\": 3,\n            \"code\": \"CON-151\",\n            \"uniqueIdentifier\": \"APR00151\",\n            \"name\": \"Visma holding\",\n            \"commercialName\": \"\",\n            \"languageCode\": \"nl\",\n            \"addressStreet\": \"Street\",\n            \"addressNumber\": \"10\",\n            \"addressBox\": \"B005\",\n            \"addressCity\": \"Gent\",\n            \"addressZipCode\": \"9000\",\n            \"addressCountryCode\": \"BE\",\n            \"addressCountry\": \"België\",\n            \"email\": \"sample-@sample.com\",\n            \"phone\": \"+32 3 755 55 55\",\n            \"mobile\": \"+32 479 99 91 51\",\n            \"legalForm\": \"BV\",\n            \"legalFormXbrl\": \"610\",\n            \"assistant\": \"Bill Newton\",\n            \"assistantEmail\": \"bill@visma.com\",\n            \"assistantBackup\": \"John Langlee\",\n            \"assistantBackupEmail\": \"john@visma.com\",\n            \"associate\": \"\",\n            \"associateEmail\": \"\",\n            \"responsible\": \"\",\n            \"responsibleEmail\": \"\",\n            \"vatNumber\": \"BE 0828.856.684\",\n            \"businessNumber\": \"0828.856.684\",\n            \"nationalityCountryCode\": \"BE\",\n            \"nationalityCountry\": \"België\",\n            \"totalRisk\": 1,\n            \"endFiscalYear\": \"2000-12-31T00:00:00\",\n            \"vatPeriodicity\": 2,\n            \"accountingSoftware\": 2,\n            \"accountingAccessCode\": \"123456-654987987987654513213\",\n            \"accountingDigitalMailbox\": \"connect@yukiworx.com\",\n            \"accountingRelationcode\": \"366\",\n            \"tags\": [\n                \"api\",\n                \"postman\"\n            ],\n            \"remark\": \"An optional remark for this relation\",\n            \"socialSecretariat\": 2,\n            \"socialSecurityFund\": 6,\n            \"jurisdictionCode\": \"3\",\n            \"jurisdiction\": \"Antwerpen, afdeling Antwerpen\",\n            \"vatStructuredCommunication\": \"082885668426\",\n            \"bankName\": \"Belfius\",\n            \"bankIBAN\": \"BE71096123456769\",\n            \"bankBIC\": \"GKCCBEBB\",\n            \"financialStatementSchema\": 3,\n            \"naceCodes\": [\n                \"62.900\"\n            ],\n            \"relationGroupId\": \"9b0af579-b836-4ee3-925a-260066450ad4\",\n            \"relationGroupName\": \"Relation group A\",\n            \"teams\": {\n                \"teamId\": \"05389990-893f-4af2-a253-a8b2394c7f53\",\n                \"teamName\": \"Team A\"\n            },\n            \"otherSoftware\": [\n                2,\n                5,\n                11\n            ],\n            \"sendInvoiceSoftware\": [\n                10,\n                15\n            ],\n            \"receiveInvoiceSoftware\": 2,\n            \"sendInvoicePeppolReady\": true,\n            \"sendInvoiceStrategy\": 1,\n            \"ubo\": {\n                \"relationUboDetails\": [\n                    {\n                        \"uniqueIdentifier\": \"APR00356\",\n                        \"name\": \"Visma HQ\",\n                        \"uboPercentage\": 0.39024,\n                        \"votesPercentage\": 1,\n                        \"sharesPercentage\": 0.39024,\n                        \"uboCalculationResult\": 10\n                    }\n                ]\n            },\n            \"tos\": [\n                {\n                    \"linkType\": 1,\n                    \"uniqueIdentifier\": \"APR00357\"\n                }\n            ],\n            \"froms\": [\n                {\n                    \"linkType\": 1,\n                    \"uniqueIdentifier\": \"APR00127\"\n                },\n                {\n                    \"linkType\": 4,\n                    \"uniqueIdentifier\": \"APR01222\",\n                    \"startDate\": \"2023-05-01T00:00:00\",\n                    \"position\": 1,\n                    \"representedByUniqueIdentifier\": \"APR00010\",\n                    \"isStatutory\": true\n                },\n                {\n                    \"linkType\": 6,\n                    \"uniqueIdentifier\": \"APR00120\",\n                    \"propertyRight\": 2,\n                    \"shareholderGroup\": \"group-B\",\n                    \"shareholderCategory\": \"category-A\",\n                    \"shares\": 50,\n                    \"votes\": 20\n                },\n                {\n                    \"linkType\": 6,\n                    \"uniqueIdentifier\": \"APR00356\",\n                    \"propertyRight\": 2,\n                    \"shares\": 32,\n                    \"votes\": 35\n                },\n                {\n                    \"linkType\": 7,\n                    \"uniqueIdentifier\": \"APR00002\",\n                    \"isCommissioner\": true,\n                    \"affiliatedWithAuditorInstitute\": false\n                },\n                {\n                    \"linkType\": 7,\n                    \"uniqueIdentifier\": \"APR01507\",\n                    \"isCommissioner\": false,\n                    \"affiliatedWithAuditorInstitute\": false\n                }\n            ],\n            \"lastUboCalculationDate\": \"2021-01-22T09:33:20.067\",\n            \"paymentMethod\": 0\n        }\n    ],\n    \"pageCount\": 2,\n    \"pageSize\": 5,\n    \"totalRowCount\": 7\n}"}],"_postman_id":"cb4ae72c-9183-4f23-9a61-90777a38cceb"},{"name":"list all relation contactinfo","id":"62be4abc-257f-49af-ba25-72a6d76263ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/contactinfo?page=0&pageSize=10&lastSyncTime=22102022&searchCriteria&crmType&type&includeInactive&withTags=tag1,tag2&withoutTags&phone","description":"<p>Required scope: <strong>relations.read</strong></p>\n<p>This endpoint provides a way to quickly search relations and return their contact information.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","contactinfo"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>When using paged request, pass in page number.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Number of results to return per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Get changes newer than the given last sync time. This will allow partial updates. Format ddMMyyyy)</p>\n","type":"text/plain"},"key":"lastSyncTime","value":"22102022"},{"description":{"content":"<p>Search by name, code, unique identifier, telephone number, relation number (VAT/enterprise/...)</p>\n","type":"text/plain"},"key":"searchCriteria","value":null},{"description":{"content":"<p>Select relations of the given crmtype (customer, prospect, etc) only</p>\n","type":"text/plain"},"key":"crmType","value":null},{"description":{"content":"<p>Select relations of the given type (company, natural person, etc) only</p>\n","type":"text/plain"},"key":"type","value":null},{"description":{"content":"<p>Relations that have an end date in the past, will be filtered out from the result by default. This parameter can be configured to include the inactive relations.</p>\n","type":"text/plain"},"key":"includeInactive","value":null},{"description":{"content":"<p>Select relations that have the configured tag(s). Comma delimited string.</p>\n","type":"text/plain"},"key":"withTags","value":"tag1,tag2"},{"description":{"content":"<p>Select relations that do not have the configured tag(s). Comma delimited string.</p>\n","type":"text/plain"},"key":"withoutTags","value":null},{"description":{"content":"<p>Search by telephone/mobile phone number</p>\n","type":"text/plain"},"key":"phone","value":null}],"variable":[]}},"response":[{"id":"b122070d-0a56-4536-8dc7-481eef8cd4aa","name":"relations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/relations/contactinfo?page=0&pageSize=10&lastSyncTime=22102022&searchCriteria&crmType&type&includeInactive&withTags=tag1,tag2&withoutTags","host":["{{apiEndpointUrl}}"],"path":["relations","contactinfo"],"query":[{"key":"page","value":"0","description":"When using paged request, pass in page number."},{"key":"pageSize","value":"10","description":"Number of results to return per page."},{"key":"lastSyncTime","value":"22102022","description":"Get changes newer than the given last sync time. This will allow partial updates. Format ddMMyyyy`)"},{"key":"searchCriteria","value":null,"description":"Search by name, telephone number or VAT number"},{"key":"crmType","value":null,"description":"Select relations of the given crmtype (customer, prospect, etc) only"},{"key":"type","value":null,"description":"Select relations of the given type (company, natural peroson, etc) only"},{"key":"includeInactive","value":null,"description":"Relations that have an end date in the past, will be filtered out from the result by default. This parameter can be configured to include the inactive relations."},{"key":"withTags","value":"tag1,tag2","description":"Select relations that have the configured tag(s)"},{"key":"withoutTags","value":null,"description":"Select relations that do not have the configured tag(s)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"lastSyncDate\": \"2019-07-16T11:19:58.2778128\",\n            \"uniqueIdentifier\": \"APR00084\",\n            \"name\": \"Muziek en Co\",\n            \"addressStreet\": \"De Regenboog\",\n            \"addressNumber\": \"11\",\n            \"addressCity\": \"Mechelen\",\n            \"addressZipCode\": \"2800\",\n            \"addressCountryCode\": \"BE\",\n            \"addressCountry\": \"Belgium\",\n            \"legalForm\": \"BV\",\n            \"email\": \"bill@microsoft.com\",\n            \"phone\": \"+32 3 755 55 55\",\n            \"mobile\": \"+32 479 99 99 99\",\n            \"assistant\": \"Bill Newton\",\n            \"assistantEmail\": \"bill@visma.com\",\n            \"assistantBackup\": \"John Langlee\",\n            \"assistantBackupEmail\": \"john@visma.com\",\n            \"associate\": null,\n            \"associateEmail\":null,\n            \"responsible\": null,\n            \"responsibleEmail\": null\n        }\n    ],\n    \"pageCount\": 2,\n    \"pageSize\": 5,\n    \"totalRowCount\": 7\n}"}],"_postman_id":"62be4abc-257f-49af-ba25-72a6d76263ce"},{"name":"list all relation names","event":[{"listen":"test","script":{"id":"41395b99-51c5-47d9-9ed3-f42d6ad74451","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c8996f54-6b7d-4726-8abe-20fc8292de41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/names?searchValue=APR00001&IncludeInactive=false&take=10","description":"<p>This endpoint supports searching relations based on various properties such as Name, FirstName, UniqueIdentifier, Code, Alias with partial matching</p>\n<p>Required scope: <strong>relations.read</strong></p>\n<h2 id=\"relation\"><strong>Relation</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>infix</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>initials</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>languageCode</td>\n<td>string</td>\n<td>2 letter country code</td>\n</tr>\n<tr>\n<td>type</td>\n<td>number</td>\n<td>Company = 0  <br />Sole proprietor = 1  <br />Person = 2</td>\n</tr>\n<tr>\n<td>crm</td>\n<td>number</td>\n<td>Other = 0  <br />Prospect = 2  <br />Customer = 3  <br />Own company = 4</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>isPerson</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>customerCode</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>alias</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","names"],"host":["{{apiEndpointUrl}}"],"query":[{"key":"searchValue","value":"APR00001"},{"key":"IncludeInactive","value":"false"},{"key":"take","value":"10"}],"variable":[]}},"response":[{"id":"96cea632-ccdf-4b93-967b-c5c3c8e77a62","name":"by search value","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/relations/names?searchValue=APR00&IncludeInactive=false&take=10","host":["{{apiEndpointUrl}}"],"path":["relations","names"],"query":[{"key":"searchValue","value":"APR00"},{"key":"IncludeInactive","value":"false"},{"key":"take","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[{\n    \"id\": \"d8f63b11-ddd0-49f7-9978-668d28fb54ef\",\n    \"uniqueIdentifier\": \"APR00151\",\n    \"name\": \"Visma holding\",\n    \"firstName\": \"\",\n    \"infix\": \"\",\n    \"initials\": \"\",\n    \"languageCode\": \"nl\",\n    \"type\": 0,\n    \"crm\": 3,\n    \"isActive\": true,\n    \"displayName\": \"Visma holding\",\n    \"isPerson\": true,\n    \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n    \"customerCode\": \"EXT001\",\n    \"alias\": \"\"\n}]"}],"_postman_id":"c8996f54-6b7d-4726-8abe-20fc8292de41"},{"name":"get relation address/email/phone","id":"e0b48ae3-9ddc-48fe-a559-435849814a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/communication/{{uniqueidentifier}}","description":"<p>Required scope: <strong>relations.read</strong></p>\n<p>Returns all communication addresses for given relation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>lastSyncDate</td>\n<td>date</td>\n<td>Format: <code>2019-09-17T00:00:00</code></td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>accountingRelationcode</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>array of addresses, see below</td>\n<td></td>\n</tr>\n<tr>\n<td>communicationSettings</td>\n<td>array of communcation settings, see below</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"address\">Address</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>medium</td>\n<td>number</td>\n<td>Physical address = 0  <br />Email = 1  <br />Phone = 2  <br />Social media = 3  <br />Mobile = 4  <br />Post box = 5</td>\n</tr>\n<tr>\n<td>addressData</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>string</td>\n<td>Only available if medium is physical address or post box</td>\n</tr>\n<tr>\n<td>street2</td>\n<td>string</td>\n<td>Only available if medium is physical address or post box</td>\n</tr>\n<tr>\n<td>box</td>\n<td>string</td>\n<td>Only available if medium is physical address or post box</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Only available if medium is physical address or post box</td>\n</tr>\n<tr>\n<td>zipCode</td>\n<td>string</td>\n<td>Only available if medium is physical address or post box</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>string</td>\n<td>Only available if medium is physical address or post box. 2 letter country code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"communication-setting\">Communication setting</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>addressId</td>\n<td>string</td>\n<td>Refers to the address (see above)</td>\n</tr>\n<tr>\n<td>purpose</td>\n<td>number</td>\n<td>A communication medium can be configured for a specific purpose, for example a specific e-mail address can be configured to be the e-mail on which the customer wants to receive the invoice e-mails.  <br />Possible <code>purpose</code> values:  <br />Other = 0  <br />Invoices and invoice reminders = 1  <br />Task management = 2  <br />Only invoices = 3</td>\n</tr>\n<tr>\n<td>emailType</td>\n<td>number</td>\n<td>An extra option can be configured if the address is of type Email, to indicate whether the specified email should be a to/CC/BCC address. This option is passed through the <code>emailType</code> of a communication setting.  <br />Possible emailType values:  <br />To = 0  <br />Cc = 1  <br />Bcc = 2</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","communication","{{uniqueidentifier}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3267d042-a6e0-4498-9f5b-28ca36da6ba4","name":"communications","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/communication/{{uniqueidentifier}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d8f63b11-ddd0-49f7-9978-668d28fb54ef\",\n    \"lastSyncDate\": \"2022-02-08T09:27:26.7333333\",\n    \"uniqueIdentifier\": \"APR00151\",\n    \"addresses\": [\n        {\n            \"id\": \"3af9f6ef-ba88-ec11-b820-00155d0f25d3\",\n            \"addressData\": \"sample+invoice@sample.com\",\n            \"medium\": 1\n        },\n        {\n            \"id\": \"419bd0c4-17a1-48dd-b4e9-3e28bc20fef7\",\n            \"addressData\": \"+32 479 99 91 51\",\n            \"medium\": 4\n        },\n        {\n            \"id\": \"35d8220e-3103-46a0-8366-8ec59b09b3a3\",\n            \"addressData\": \"+32 3 755 55 55\",\n            \"medium\": 2\n        },\n        {\n            \"id\": \"98d0b00a-3d1c-44d2-a7f0-b4f98951e8b7\",\n            \"addressData\": \"Street\",\n            \"number\": \"10\",\n            \"box\": \"B005\",\n            \"city\": \"Gent\",\n            \"zipCode\": \"9000\",\n            \"countryCode\": \"BE\"\n        }\n    ],\n    \"code\": \"CON-151\",\n    \"accountingRelationcode\": \"YUK123\",\n    \"communicationSettings\": [\n        {\n            \"addressId\": \"3af9f6ef-ba88-ec11-b820-00155d0f25d3\",\n            \"purpose\": 1\n        }\n    ]\n}"}],"_postman_id":"e0b48ae3-9ddc-48fe-a559-435849814a33"},{"name":"get relation bankaccounts","id":"2980b991-b319-4197-a54f-0ee6a8124e32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/bankaccounts","description":"<p>Required scope: <strong>relations.read</strong></p>\n<p>Returns a list of all bank accounts for given relation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bankAccountNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bic</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bankName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>bankAccountType</td>\n<td>number</td>\n<td>Type of bank account:  <br />Savings = 1  <br />Current = 2  <br />Private = 3  <br />Other = 4,</td>\n</tr>\n<tr>\n<td>dateOpened</td>\n<td>string</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>dateClosed</td>\n<td>string</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>dateCap</td>\n<td>string</td>\n<td>Format: <code>2023-03-31T00:00:00</code></td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>string</td>\n<td>2 letter country code</td>\n</tr>\n<tr>\n<td>directDebit</td>\n<td>boolean</td>\n<td>If true, this bank account is used on which the customer is invoiced by direct debit by the accountant.</td>\n</tr>\n<tr>\n<td>pitRefund</td>\n<td>boolean</td>\n<td>if true, this bank account is used by the government to deposit a possible refund after the personal income tax was completed.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueidentifier}}","bankaccounts"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9cf2ccd3-d2b1-4d0d-83ea-9a0e4647a115","name":"bankaccounts","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/bankaccounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"12d75ffa-00d0-eb11-ba5e-501ac5677770\",\n        \"bankAccountNumber\": \"BE71096123451234\",\n        \"bic\": \"GKCCBEBB\",\n        \"remark\": \"Sample account\",\n        \"bankName\": \"Belfius\",\n        \"countryCode\": \"BE\"\n    },\n    {\n        \"id\": \"1234f069-01d0-eb11-ba5e-501ac5684770\",\n        \"bankAccountNumber\": \"LU280019400612340000\",\n        \"countryCode\": \"LU\"\n    }\n]"}],"_postman_id":"2980b991-b319-4197-a54f-0ee6a8124e32"},{"name":"get relation authorizations","id":"276578a0-c33c-461b-aaa4-2070c569a289","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/authorizations","description":"<p>Required scope: <strong>relations.read</strong></p>\n<p>Returns a list of all authorizations for given relation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>relationId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>number</td>\n<td>0 = intervat  <br />1 = tax on web  <br />2 = MyMinFin fiscal record  <br />3 = biztax  <br />4 = social security portal  <br />5 = KBO private search  <br />6 = Social security insurance fund  <br />7 = disputes  <br />8 = finprof  <br />9 = UBO  <br />10 = Tax file accounting  <br />11 = BEPS13  <br />12 - E705  <br />13 = authorization letter  <br />14 = social secretariat  <br />15 = douane pro  <br />16 = accijnzen pro  <br />17 = eStox  <br />18 = bank receipts  <br />19 = bank execute payments  <br />20 = tax on web non-resident  <br />21 = e-DEPO  <br />22 = codabox  <br />23 = GDPR  <br />24 = NBB One Gate  <br />25 = tax residence  <br />26 = collective investment undertakings  <br />27 = Peppol  <br />28 = digipoort  <br />29 = Tax return TPP TNR  <br />30 = withholding tax</td>\n</tr>\n<tr>\n<td>type</td>\n<td>number</td>\n<td>0 = electronic  <br />1 = paper  <br />2 = both</td>\n</tr>\n<tr>\n<td>signedBy</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Date in format: yyyy-dd-MMTHH:mm:ss</td>\n</tr>\n<tr>\n<td>validUntil</td>\n<td>string</td>\n<td>Date in format: yyyy-dd-MMTHH:mm:ss</td>\n</tr>\n<tr>\n<td>awaitingSignature</td>\n<td>bool</td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>0 = to be created  <br />1 = awaiting signature  <br />2 = active  <br />3 = terminated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueidentifier}}","authorizations"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5b5a1213-6010-4277-9793-72e0ff356866","name":"authorizations","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/authorizations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"5aa33c43-5f90-4f0e-b16c-08dcc67a8fe7\",\n        \"relationId\": \"79f63396-0aee-4228-b16a-08dcc67a8fe7\",\n        \"name\": 0,\n        \"type\": 1,\n        \"signedBy\": null,\n        \"date\": \"2024-08-27T00:00:00\",\n        \"validUntil\": null,\n        \"awaitingSignature\": false,\n        \"status\": 2,\n        \"identificationNumber\": \"12345\",\n        \"identificationNumberOwner\": null\n    },\n    {\n        \"id\": \"0efbc811-7c14-41ac-b16d-08dcc67a8fe7\",\n        \"relationId\": \"79f63396-0aee-4228-b16a-08dcc67a8fe7\",\n        \"name\": 3,\n        \"type\": 0,\n        \"signedBy\": null,\n        \"date\": \"2024-08-27T00:00:00\",\n        \"validUntil\": null,\n        \"awaitingSignature\": false,\n        \"status\": 2,\n        \"identificationNumber\": \"12345\",\n        \"identificationNumberOwner\": null\n    }\n]"}],"_postman_id":"276578a0-c33c-461b-aaa4-2070c569a289"}],"id":"ff6c6246-9a7f-41b5-a255-e00744f925d8","_postman_id":"ff6c6246-9a7f-41b5-a255-e00744f925d8","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Add","item":[{"name":"add company","id":"d93219db-53ae-48a5-89a6-c440f9cffb13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"enterpriseNumber\": \"0728.606.123\",\n  \"name\": \"Enterprise name\",\n  \"country\": \"BE\",\n  \"crmType\": 2,\n  \"addressStreet\": \"Street\", \n  \"addressNumber\": \"4\",\n  \"addressZipCode\": \"2880\",\n  \"addressCity\": \"Bornem\",\n  \"addressCountryCode\": \"BE\",\n  \"language\": \"NL\",\n  \"website\": \"http://www.adminpulse.be\",\n  \"telephone\": \"+3237558888\",\n  \"mobile\": \"+32499999999\",\n  \"email\": \"info@adminpulse.be\",\n  \"remark\": \"Sample remark\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/company/add","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Creates a relation of type company.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>enterpriseNumber</td>\n<td>string</td>\n<td>X</td>\n<td>Enterprise / business number of the company</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>X</td>\n<td>2 letter country code, for example <code>BE</code></td>\n</tr>\n<tr>\n<td>crmType</td>\n<td>number</td>\n<td>X</td>\n<td>As defined in the CRM type list (see above)</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n<td>The ID of the company this relation should be added to. See /companies to get a list of companies with its ID.</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>array of string</td>\n<td></td>\n<td>The team ID or multiple team IDs that should be added to this relation. See /users/teams to get a list of teams with its ID.</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressNumber</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressStreet2</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressBox</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressZipCode</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressCountryCode</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td></td>\n<td>2 letter language code, for example <code>NL</code></td>\n</tr>\n<tr>\n<td>legalFormXbrlCode</td>\n<td>string</td>\n<td></td>\n<td>XBRL code of the legal form. Codes can be found at <a href=\"https://economie.fgov.be/nl/themas/ondernemingen/kruispuntbank-van/diensten-voor-administraties/codetabellen\">https://economie.fgov.be/nl/themas/ondernemingen/kruispuntbank-van/diensten-voor-administraties/codetabellen</a> (Juridische gegevens)</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>telephone</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","company","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d93219db-53ae-48a5-89a6-c440f9cffb13"},{"name":"add sole proprietor","id":"485a1c02-5beb-4873-a9e8-8cb1bbdd126a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"enterpriseNumber\": \"0728.606.123\",\n  \"name\": \"De Smet\",\n  \"firstName\": \"Cindy\",\n  \"country\": \"BE\",\n  \"crmType\": 2,\n  \"addressStreet\": \"Street\", \n  \"addressNumber\": \"4\",\n  \"addressZipCode\": \"2880\",\n  \"addressCity\": \"Bornem\",\n  \"addressCountryCode\": \"BE\",\n  \"nationalNumber\": \"84032002333\",\n  \"birthDate\": \"01012020\",\n  \"language\": \"NL\",\n  \"website\": \"http://www.adminpulse.be\",\n  \"telephone\": \"+3237558888\",\n  \"mobile\": \"+32499999999\",\n  \"email\": \"info@adminpulse.be\",\n  \"remark\": \"Sample remark\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/soleproprietor/add","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Creates a relation of type sole proprietor.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>enterpriseNumber</td>\n<td>string</td>\n<td>X</td>\n<td>Enterprise / business number of the sole proprietor</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>X</td>\n<td>2 letter country code, for example <code>BE</code></td>\n</tr>\n<tr>\n<td>crmType</td>\n<td>number</td>\n<td>X</td>\n<td>As defined in the CRM type list (see above)</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n<td>The ID of the company this relation should be added to. See /companies to get a list of companies with its ID.</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>array of string</td>\n<td></td>\n<td>The team ID or multiple team IDs that should be added to this relation. See /users/teams to get a list of teams with its ID.</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressNumber</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressStreet2</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressBox</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressZipCode</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressCountryCode</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td></td>\n<td>2 letter language code, for example <code>NL</code></td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>nationalNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>string</td>\n<td></td>\n<td>ddMMyyyy format, for example <code>01012020</code></td>\n</tr>\n<tr>\n<td>telephone</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","soleproprietor","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"485a1c02-5beb-4873-a9e8-8cb1bbdd126a"},{"name":"add person","id":"7f84cb6f-dafa-487e-ad66-92c1f4a0975e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"De Smet\",\n  \"firstName\": \"Cindy\",\n  \"country\": \"BE\",\n  \"crmType\": 2,\n  \"nationalNumber\": \"84032002333\",\n  \"birthDate\": \"01012020\",\n  \"language\": \"NL\",\n  \"addressStreet\": \"Street\", \n  \"addressNumber\": \"4\",\n  \"addressZipCode\": \"2880\",\n  \"addressCity\": \"Bornem\",\n  \"addressCountryCode\": \"BE\",\n  \"website\": \"http://www.adminpulse.be\",\n  \"telephone\": \"+3237558888\",\n  \"mobile\": \"+32499999999\",\n  \"email\": \"info@adminpulse.be\",\n  \"remark\": \"Sample remark\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/person/add","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Creates a relation of type person.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>X</td>\n<td>2 letter country code, for example <code>BE</code></td>\n</tr>\n<tr>\n<td>crmType</td>\n<td>number</td>\n<td>X</td>\n<td>As defined in the CRM type list (see above)</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n<td>The ID of the company this relation should be added to. See /companies to get a list of companies with its ID.</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>array of string</td>\n<td></td>\n<td>The team ID or multiple team IDs that should be added to this relation. See /users/teams to get a list of teams with its ID.</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressNumber</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressStreet2</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressBox</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressZipCode</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>addressCountryCode</td>\n<td>string</td>\n<td></td>\n<td>If one of the address fields is filled out, all of them are required.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td></td>\n<td>2 letter language code, for example <code>NL</code></td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>nationalNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>string</td>\n<td></td>\n<td>ddMMyyyy format, for example <code>01012020</code></td>\n</tr>\n<tr>\n<td>telephone</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","person","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f84cb6f-dafa-487e-ad66-92c1f4a0975e"},{"name":"add or update person using eID","id":"9ace95f5-fca6-4636-bfb6-3ad64b8c0656","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null},{"key":"fileName","value":"","type":"text"},{"key":"eidPhoto","type":"file","value":null},{"key":"eidPhotoFilename","value":"","type":"text"},{"key":"firstName","value":"","type":"text"},{"key":"lastName","value":"","type":"text"},{"key":"gender","value":"","type":"text"},{"key":"nationality","value":"","type":"text"},{"key":"gender","value":"","type":"text"},{"key":"placeOfBirth","value":"","type":"text"},{"key":"dateOfBirth","value":"","type":"text"},{"key":"cardExpiryDate","value":"","type":"text"},{"key":"placeOfIssuingIdCard","value":"","type":"text"},{"key":"street","value":"","type":"text"},{"key":"zip","value":"","type":"text"},{"key":"city","value":"","type":"text"},{"key":"streetNumber","value":"","type":"text"},{"key":"language","value":"","type":"text"}]},"url":"{{apiEndpointUrl}}/relations/eid","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Adds or updates a person using eID file or data. The content-type of this request should be form-data. <strong>Not JSON.</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>useDocumentRecognition</td>\n<td>boolean</td>\n<td>X</td>\n<td>If true, AdminPulse will attempt to recognize the eID file that was passed via the file attribute. If the recognition succeeded and eID data was extracted, the relation will be created or updated.</td>\n</tr>\n<tr>\n<td>file</td>\n<td>file: PDF or XML</td>\n<td>Required if useDocumentRecognition is <strong>true</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>fileName</td>\n<td>string</td>\n<td>Required if useDocumentRecognition is <strong>true</strong></td>\n<td>Name of the eID file</td>\n</tr>\n<tr>\n<td>eidPhoto</td>\n<td>file</td>\n<td></td>\n<td>Only used when useDocumentRecognition is <strong>false</strong></td>\n</tr>\n<tr>\n<td>eidPhotoFilename</td>\n<td>string</td>\n<td></td>\n<td>Only used when useDocumentRecognition is <strong>false</strong>. Name of the eID photo.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td>Required if useDocumentRecognition is <strong>false</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>string</td>\n<td>Required if useDocumentRecognition is <strong>false</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>nationalNumber</td>\n<td>string</td>\n<td>Required if useDocumentRecognition is <strong>false</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>cardNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>nationality</td>\n<td>string</td>\n<td></td>\n<td>2 letter country code, for example <code>BE</code></td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td></td>\n<td>M for male  <br />F for female  <br />N for non-binary</td>\n</tr>\n<tr>\n<td>placeOfBirth</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>string</td>\n<td></td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>cardExpiryDate</td>\n<td>string</td>\n<td></td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>placeOfIssuingIdCard</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>street</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>streetNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td></td>\n<td>2 letter language code, for example <code>NL</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","eid"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ace95f5-fca6-4636-bfb6-3ad64b8c0656"},{"name":"add relation address","id":"916154bc-7b42-47d9-b81d-ca075c5708e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"street\": \"Sample street\",\n  \"number\": \"10\",\n  \"box\": \"``\",\n  \"zip\": \"9100\",\n  \"city\": \"Sint-Niklaas\",\n  \"country\": \"BE\",\n  \"isMain\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/APR00001/addresses","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>street</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>number</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>box</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>string</td>\n<td>X</td>\n<td>2 letter country code: <code>BE</code></td>\n</tr>\n<tr>\n<td>isMain</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the new address will be added as the main address of the relation</td>\n</tr>\n</tbody>\n</table>\n</div><p>Required scope: <strong>relations.write</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","APR00001","addresses"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"916154bc-7b42-47d9-b81d-ca075c5708e2"}],"id":"a881d766-57ed-4dbf-8731-a2f96014ad42","_postman_id":"a881d766-57ed-4dbf-8731-a2f96014ad42","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Update","item":[{"name":"update relation","id":"c777bcdf-c843-4852-8fff-907d2edf5358","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Syneton\",\n  \"commercialname\": \"XYZ\",\n  \"website\": \"http://www.syneton.be\",\n  \"phone\": \"+3237555555\",\n  \"mobile\": \"+324799999\",\n  \"email\": \"info@syneton.be\",\n  \"vatPeriodicity\": 2,\n  \"endFiscalYear\": \"31122023\",\n  \"socialSecretariat\": 8,\n  \"socialSecurityFund\": 3,\n  \"gmFormulaType\": 1,\n  \"gmFormulaDay\": 4,\n  \"gmFormulaFallback\": 5,\n  \"gmFormulaWeek\": 3,\n  \"gmFormulaMonth\": 12,\n  \"gmDate\": \"01122023\",\n  \"gmSaturdayWorkday\": true,\n  \"lastUboOnlineSinceDate\": \"01102023\",\n  \"naceCodes\": [\"01.1\",\"01.110\"] \n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Update a relation. Only fields that are not empty will be set on the relation. It is currently not possible to make a specific attribute of a relation empty.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>commercialName</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressStreet</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>AddressNumber</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>AddressStreet2</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>AddressBox</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>AddressCity</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>AddressZipCode</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>AddressCountryCode</td>\n<td>string</td>\n<td></td>\n<td>Updates the main address of the relation</td>\n</tr>\n<tr>\n<td>vatPeriodicity</td>\n<td>number</td>\n<td></td>\n<td>Unknown = 0  <br />Monthly = 1  <br />Quarterly = 2  <br />ExemptionSmallEnterprise = 3  <br />ExemptionAgriculture = 4  <br />Yearly = 5  <br />ExemptionArticle44 = 6  <br />NotSubjectToVAT = 7</td>\n</tr>\n<tr>\n<td>endFiscalYear</td>\n<td>string</td>\n<td></td>\n<td>Date in format ddMMyyyy</td>\n</tr>\n<tr>\n<td>socialSecretariat</td>\n<td>number</td>\n<td></td>\n<td>Other = 1,  <br />Attentia = 2,  <br />Securex = 3,  <br />Acerta = 4,  <br />Partena = 5,  <br />Alia = 6,  <br />Sodalis = 7,  <br />Randstad = 8,  <br />SDWorx = 9,  <br />Sofidi = 10,  <br />Accuria = 11,  <br />Caritas = 12,  <br />Sodiwe = 13,  <br />Xerius = 14,  <br />Liantis = 15,  <br />Avixi = 16,  <br />Salar = 17,  <br />Sodibe = 18,  <br />HDI = 19,  <br />UCM = 20,  <br />GroupS = 21,  <br />NatPat = 22,  <br />LWB = 23,  <br />Besox = 24,  <br />Ping = 25,  <br />Horecaplus = 26,  <br />VDA = 27,  <br />CLB = 28,  <br />WeHelp = 29,  <br />SSE = 30,  <br />UwPayroll = 31,  <br />ORBISS = 32,  <br />Papperas = 33,  <br />Paycover = 34,  <br />OwnCompany = 253,  <br />Unknown = 254,  <br />None = 255,</td>\n</tr>\n<tr>\n<td>socialSecurityFund</td>\n<td>number</td>\n<td></td>\n<td>Other = 1,  <br />GroupS = 2,  <br />Xerius = 3,  <br />Liantis = 4,  <br />Partena = 5,  <br />Acerta = 6,  <br />Securex = 7,  <br />Avixi = 8,  <br />Entraide = 10,  <br />Ucm = 11,  <br />NationalFund = 12,  <br />Nisse = 13,  <br />Unknown = 254,  <br />None = 255</td>\n</tr>\n<tr>\n<td>gmFormulaType</td>\n<td>number</td>\n<td></td>\n<td>None = 0,  <br />FixedDate = 1,  <br />Formula = 2,  <br />FreeDate = 3</td>\n</tr>\n<tr>\n<td>gmFormulaDay</td>\n<td>number</td>\n<td></td>\n<td>WorkDay = 0,  <br />Monday = 1,  <br />Tuesday = 2,  <br />Wednesday = 3,  <br />Thursday = 4,  <br />Friday = 5,  <br />Saturday = 6,  <br />Sunday = 7</td>\n</tr>\n<tr>\n<td>gmFormulaFallback</td>\n<td>number</td>\n<td></td>\n<td>SameDay = 0  <br />NextWorkDay = 1  <br />PreviousWorkDay = 2  <br />NextMonday = 3  <br />NextTuesday = 4  <br />NextWednesday = 5  <br />NextThursday = 6  <br />NextFriday = 7  <br />NextSaturday = 8  <br />NextSunday = 9</td>\n</tr>\n<tr>\n<td>gmFormulaWeek</td>\n<td>number</td>\n<td></td>\n<td>First = 0  <br />Second = 1  <br />Third = 2  <br />Fourth = 3  <br />Penultimate = 4  <br />Last = 5</td>\n</tr>\n<tr>\n<td>gmFormulaMonth</td>\n<td>number</td>\n<td></td>\n<td>January = 1  <br />February = 2  <br />March = 3  <br />April = 4  <br />May = 5  <br />June = 6  <br />July = 7  <br />August = 8  <br />September = 9  <br />October = 10  <br />November = 11  <br />December = 12</td>\n</tr>\n<tr>\n<td>gmDate</td>\n<td>string</td>\n<td></td>\n<td>Date in format ddMMyyyy</td>\n</tr>\n<tr>\n<td>gmSaturdayWorkday</td>\n<td>boolean</td>\n<td></td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>lastUboOnlineSinceDate</td>\n<td>string</td>\n<td></td>\n<td>Date in format ddMMyyyy</td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td></td>\n<td>Customer code</td>\n</tr>\n<tr>\n<td>numberOfEmployees</td>\n<td>number</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>registeredOfficeAddressId</td>\n<td>GUID</td>\n<td></td>\n<td>The address must already exist for the given relation</td>\n</tr>\n<tr>\n<td>accountingRelationcode</td>\n<td>string</td>\n<td></td>\n<td>Accounting number/reference</td>\n</tr>\n<tr>\n<td>jurisdiction</td>\n<td>number</td>\n<td></td>\n<td>Brussels (French) = 1  <br />Brussels (Dutch) = 2  <br />Antwerp, division Antwerp = 3  <br />Antwerp, division Hasselt = 4  <br />Antwerp, division Mechelen = 5  <br />Antwerp, division Tongeren = 6  <br />Antwerp, division Turnhout = 7  <br />Hainaut, division Mons = 8  <br />Hainaut, division Charleroi = 9  <br />Hainaut, division Tournai = 10  <br />Eupen = 11  <br />Ghent, division Bruges = 12  <br />Ghent, division Dendermonde = 13  <br />Ghent, division Ghent = 14  <br />Ghent, division Ypres = 15  <br />Ghent, division Kortrijk = 16  <br />Ghent, division Ostende = 17  <br />Ghent, division Oudenaarde = 18  <br />Ghent, division Veurne = 19  <br />Louvain = 20  <br />Liege, division Arlon = 21  <br />Liege, division Dinant = 22  <br />Liege, division Huy = 23  <br />Liege, division Liege = 24  <br />Liege, division Marche-en-Famenne = 25  <br />Liege, division Namur = 26  <br />Liege, division Neufchâteau = 27  <br />Liege, division Verviers = 28  <br />Brabant wallon = 29  <br />Diekirch = 30  <br />Esch-sur-Alzette = 31  <br />Luxembourg = 32</td>\n</tr>\n<tr>\n<td>sector</td>\n<td>number</td>\n<td></td>\n<td>Agriculture = 1  <br />Mining = 2  <br />Manufacturing = 3  <br />Electricity = 4  <br />Water supply = 5  <br />Construction = 6  <br />Wholesale = 7  <br />Transportation and storage = 8  <br />Accommodation and food service activities = 9  <br />Information and communication = 10  <br />Financial and insurance activities = 11  <br />Real estate activities = 12  <br />Professional scientific = 13  <br />Administrative and supportService = 14  <br />Public administration and defence = 15  <br />Education = 16  <br />Human health = 17  <br />Arts eentertainment and recreation = 18  <br />Other service activities = 19  <br />Activities of households = 20  <br />Activities of extraterritorial = 21  <br />Unknown = 255</td>\n</tr>\n<tr>\n<td>rszNumber</td>\n<td>string</td>\n<td></td>\n<td>RSZ number of the relation</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>number</td>\n<td></td>\n<td>Manual = 0  <br />Direct debit = 1</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>string</td>\n<td></td>\n<td>ddMMyyyy</td>\n</tr>\n<tr>\n<td>foundationDate</td>\n<td>string</td>\n<td></td>\n<td>ddMMyyyy</td>\n</tr>\n<tr>\n<td>lastUboOnlineSinceDate</td>\n<td>string</td>\n<td></td>\n<td>ddMMyyyy</td>\n</tr>\n<tr>\n<td>foundationDeed</td>\n<td>number</td>\n<td></td>\n<td>Private (onderhands) = 1  <br />Notarial (authentiek) = 2</td>\n</tr>\n<tr>\n<td>naceCodes</td>\n<td>array</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueidentifier}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c777bcdf-c843-4852-8fff-907d2edf5358"},{"name":"activate relation","id":"24b98a9e-e1f9-4a2d-bc85-17f42fa21ecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/relations/APR00001/activate","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Activating a relation will remove the end date of a relation, if present.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","APR00001","activate"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"24b98a9e-e1f9-4a2d-bc85-17f42fa21ecb"},{"name":"deactivate relation","id":"35f52d87-3cda-4748-aed4-7bad1df66994","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"endDate\": \"01012020\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/APR00001/deactivate","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Deactivating a relation will make the relation inactive. If no end date is passed, the current date will be used. After this date, the relation will no longer be available to create new registrations, invoices, tasks, ... but will still remain available for reading purposes.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td></td>\n<td>ddMMyyyy format, for example 01012020 for January 1st, 2020.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","APR00001","deactivate"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35f52d87-3cda-4748-aed4-7bad1df66994"},{"name":"add tag","id":"d4de0ce2-3394-4d16-ad7f-08a5956482c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/relations/APR00001/tags/{tagName}","description":"<p>Required scope: <strong>relations.write</strong></p>\n<p>Adds given tag to the relation. A new tag will be created if it does not yet exist.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","APR00001","tags","{tagName}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4de0ce2-3394-4d16-ad7f-08a5956482c4"},{"name":"delete tag","id":"6ee30ab4-1098-48bd-8529-93d3f6f68cc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/relations/APR00001/tags/{tagname}","description":"<p>Required scope: <strong>relations.write</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","APR00001","tags","{tagname}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ee30ab4-1098-48bd-8529-93d3f6f68cc3"}],"id":"b5edcbd3-457b-4813-9f35-f978a265789a","_postman_id":"b5edcbd3-457b-4813-9f35-f978a265789a","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Links","item":[{"name":"Create link","id":"44a24a97-1c5a-4905-b07e-ec8f8d7cee61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"linkType\": 6,\n    \"remark\": \"My remark\",\n    \"toRelationId\": \"59e50965-e9ed-eb11-ba5e-00155d4abfda\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/links","description":"<p>Required scope: relations.write</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th><strong>Required</strong></th>\n<th>Info</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>Unique identifier of the other relation. This can be either the ID (guid) or the APRxxx code</td>\n</tr>\n<tr>\n<td>linkType</td>\n<td>number</td>\n<td>X</td>\n<td>Contacts (just a regular contact) = 1  <br />Beneficiaries (begunstigde) = 2  <br />Trustee (lasthebber) = 3  <br />Company owner (bedrijfsleider) = 4  <br />Partner = 5  <br />Shareholder (aandeelhouder) = 6  <br />Auditor (bedrijfsrevisor, commisaris) = 7  <br />Control by other means (controle door andere middelen) = 8  <br />Child = 9  <br />Other = 10  <br />Notary = 100  <br />Insurer = 101  <br />Bank = 102  <br />Lawyer = 103  <br />Accountant = 104</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td>The remark on the link.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Depending on the type of link being added, extra attributes can be specified.</p>\n<h3 id=\"trustee\">Trustee</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Required</th>\n<th>Info</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>externalRepresentation</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"company-owner\">Company owner</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Required</th>\n<th>Info</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>externalRepresentation</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mandateStartDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>mandateStartDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>reappointmentDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>reappointmentExpiryDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>reappointmentExpiryDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>publicationNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>positition</td>\n<td>number</td>\n<td></td>\n<td>CEO = 0  <br />Manager = 1  <br />Director = 2  <br />Administrator = 3  <br />Executive manager = 4  <br />Associé = 5  <br />Managing director = 6  <br />Daily management nonprofit = 7  <br />Management nonprofit = 8  <br />Liquidator = 9  <br />Founder = 10  <br />Silent partner = 11  <br />Chairman of the Board of Directors = 12  <br />Permanent representative = 13  <br />Chairman of the General Board = 14</td>\n</tr>\n<tr>\n<td>representedByUniqueIdentifier</td>\n<td>string</td>\n<td></td>\n<td>The ID (guid) or unique identifier of the represented by relation</td>\n</tr>\n<tr>\n<td>isStatutory</td>\n<td>boolean</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"partner\">Partner</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>partnershipType</td>\n<td>number</td>\n<td></td>\n<td>De facto family = 0  <br />Legal cohabitation = 1  <br />Married = 2  <br />Registered Partnership = 3  <br />Divorced = 4</td>\n</tr>\n<tr>\n<td>date</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>divorceDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>place</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>dependent</td>\n<td>boolean</td>\n<td>X</td>\n<td>Ten laste</td>\n</tr>\n<tr>\n<td>marriageRegime</td>\n<td>number</td>\n<td></td>\n<td>Legal regime = 0  <br />Communal estate = 1  <br />Separate estates = 2  <br />Other = 3  <br />Separate Estates TIGV = 4  <br />Limited Community Of Goods = 5  <br />Matrimonial Conditions = 6</td>\n</tr>\n<tr>\n<td>lastChangeMarriageStatus</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"shareholder\">Shareholder</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>startDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>propertyRight</td>\n<td>number</td>\n<td></td>\n<td>Usufruct = 0  <br />Bare ownership = 1  <br />Full ownership = 2  <br />Joint ownership = 3</td>\n</tr>\n<tr>\n<td>shares</td>\n<td>number</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>votes</td>\n<td>number</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>shareholderGroup</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>representedByUniqueIdentifier</td>\n<td>string</td>\n<td></td>\n<td>The ID (guid) or unique identifier of the represented by relation</td>\n</tr>\n<tr>\n<td>category</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"auditor\">Auditor</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>representedByUniqueIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The ID (guid) or unique identifier of the represented by relation</td>\n</tr>\n<tr>\n<td>mandateStartDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>mandateEndDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>appointmentDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>reappointmentDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>affiliatedWithAuditorInstitute</td>\n<td>boolean</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>isCommissioner</td>\n<td>boolean</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>membershipNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>rotationNumber</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"control-by-other-means\">Control by other means</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mandateStartDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>mandateEndDate</td>\n<td>date</td>\n<td></td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>controlByOtherMeansPosition</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"child\">Child</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dependent</td>\n<td>boolean</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>jointCustody</td>\n<td>boolean</td>\n<td>X</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueidentifier}}","links"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5d4c29b6-ab7d-4563-beab-ab2538dfd56f","name":"Create shareholder","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"linkType\": 6,\n    \"remark\": \"Sample remark\",\n    \"shares\": 100,\n    \"votes\": 100,\n    \"uniqueIdentifier\": \"APR01465\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/links"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aa774984-1f0f-4c18-5bde-08dce15d0ff1\",\n    \"removed\": false,\n    \"removedSince\": null,\n    \"uniqueIdentifier\": \"APR01465\",\n    \"linkType\": 6,\n    \"remark\": \"Sample remark\",\n    \"externalRepresentation\": null,\n    \"partnershipType\": null,\n    \"date\": null,\n    \"divorceDate\": null,\n    \"place\": null,\n    \"dependent\": null,\n    \"jointCustody\": null,\n    \"marriageRegime\": null,\n    \"lastChangeMarriageStatus\": null,\n    \"representedByUniqueIdentifier\": null,\n    \"mandateStartDate\": null,\n    \"mandateEndDate\": null,\n    \"appointmentDate\": null,\n    \"reappointmentDate\": null,\n    \"reappointmentExpiryDate\": null,\n    \"publicationDate\": null,\n    \"position\": null,\n    \"publicationNumber\": null,\n    \"isStatutory\": null,\n    \"controlByOtherMeansPosition\": null,\n    \"startDate\": null,\n    \"endDate\": null,\n    \"propertyRight\": null,\n    \"shares\": 100,\n    \"votes\": 100,\n    \"shareholderGroup\": null,\n    \"shareholderCategory\": null,\n    \"vvprBis\": false,\n    \"affiliatedWithAuditorInstitute\": null,\n    \"isCommissioner\": null,\n    \"membershipNumber\": null,\n    \"rotationNumber\": null,\n    \"representedByRotationNumber\": null\n}"},{"id":"4ec294c6-8ad5-4de8-91bf-98437273ac44","name":"Create company owner","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"linkType\": 4,\n    \"remark\": \"sample remark\",\n    \"mandateStartDate\": \"2020-01-01\",\n    \"mandateEndDate\": \"2050-12-31\",\n    \"publicationDAte\": \"2020-01-03\",\n    \"position\": 2,\n    \"uniqueIdentifier\": \"APR01465\",\n    \"representedByUniqueIdentifier\": \"APR01087\",\n    \"isStatutory\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/links"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"f8443dcb-44bf-4434-5bdf-08dce15d0ff1\",\n    \"removed\": false,\n    \"removedSince\": null,\n    \"uniqueIdentifier\": \"APR01465\",\n    \"linkType\": 4,\n    \"remark\": \"sample remark\",\n    \"externalRepresentation\": null,\n    \"partnershipType\": null,\n    \"date\": null,\n    \"divorceDate\": null,\n    \"place\": null,\n    \"dependent\": null,\n    \"jointCustody\": null,\n    \"marriageRegime\": null,\n    \"lastChangeMarriageStatus\": null,\n    \"representedByUniqueIdentifier\": \"APR01087\",\n    \"mandateStartDate\": \"2020-01-01T00:00:00\",\n    \"mandateEndDate\": \"2050-12-31T00:00:00\",\n    \"appointmentDate\": null,\n    \"reappointmentDate\": null,\n    \"reappointmentExpiryDate\": null,\n    \"publicationDate\": \"2020-01-03T00:00:00\",\n    \"position\": 2,\n    \"publicationNumber\": null,\n    \"isStatutory\": true,\n    \"controlByOtherMeansPosition\": null,\n    \"startDate\": \"2020-01-01T00:00:00\",\n    \"endDate\": \"2050-12-31T00:00:00\",\n    \"propertyRight\": null,\n    \"shares\": null,\n    \"votes\": null,\n    \"shareholderGroup\": null,\n    \"shareholderCategory\": null,\n    \"vvprBis\": false,\n    \"affiliatedWithAuditorInstitute\": null,\n    \"isCommissioner\": null,\n    \"membershipNumber\": null,\n    \"rotationNumber\": null,\n    \"representedByRotationNumber\": null\n}"}],"_postman_id":"44a24a97-1c5a-4905-b07e-ec8f8d7cee61"},{"name":"Delete link","id":"8135eb97-57ad-4c04-83a5-b4ceaa1d22dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"linkType\": 6,\n    \"remark\": \"My remark\",\n    \"toRelationId\": \"59e50965-e9ed-eb11-ba5e-00155d4abfda\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/links","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Info</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>toRelationId</td>\n<td>GUID</td>\n<td>Unique identifier of the other relation</td>\n</tr>\n<tr>\n<td>linkType</td>\n<td>number</td>\n<td>Contacts (just a regular contact) = 1  <br />Beneficiaries (begunstigde) = 2  <br />Trustee (lasthebber) = 3  <br />Company owner (bedrijfsleider) = 4  <br />Partner = 5  <br />Shareholder (aandeelhouder) = 6  <br />Auditor (bedrijfsrevisor, commisaris) = 7  <br />Control by other means (controle door andere middelen) = 8</td>\n</tr>\n</tbody>\n</table>\n</div><p>Required scope: <strong>relations.write</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueidentifier}}","links"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8135eb97-57ad-4c04-83a5-b4ceaa1d22dd"}],"id":"24a4b01a-1c39-47dd-be97-a6f33420a797","_postman_id":"24a4b01a-1c39-47dd-be97-a6f33420a797","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Addresses","item":[{"name":"list addresses","id":"9e80a040-ceda-4f47-9be9-45f209472cf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses","description":"<p>Required scope: <strong>relations.read</strong></p>\n<p>Returns an array of addresses for given relation. An address can be a physical address, an e-mail address, a mobile or telephone number.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>addressData</td>\n<td>string</td>\n<td>The street in case of a physical address, the actual email address in case of an email, the phone number in case of mobile/phone number.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>string</td>\n<td>Only available for medium type 0 or 5</td>\n</tr>\n<tr>\n<td>street2</td>\n<td>string</td>\n<td>Only available for medium type 0 or 5</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Only available for medium type 0 or 5</td>\n</tr>\n<tr>\n<td>zipCode</td>\n<td>number</td>\n<td>Only available for medium type 0 or 5</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>string</td>\n<td>Only available for medium type 0 or 5. Two letter country code</td>\n</tr>\n<tr>\n<td>medium</td>\n<td>string</td>\n<td>Physical address = 0  <br />Email = 1  <br />Phone = 2  <br />Social media = 3  <br />Mobile = 4  <br />Post box = 5</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","addresses"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4cebf71f-fa62-4d7c-bc0e-29e06ff28c04","name":"list addresses","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1e920940-b8be-eb11-ba5e-00155d0eeb6e\",\n        \"addressData\": \"Sample street\",\n        \"number\": \"10\",\n        \"city\": \"Nieuwkerken-Waas\",\n        \"zipCode\": \"9100\",\n        \"countryCode\": \"BE\"\n    },\n    {\n        \"id\": \"044b4132-babe-eb11-ba5e-00155d0eeb6e\",\n        \"addressData\": \"sample@sample.com\",\n        \"medium\": 1\n    },\n    {\n        \"id\": \"054b4132-babe-eb11-ba5e-00155d0eeb6e\",\n        \"addressData\": \"+32 3 755 55 55\",\n        \"medium\": 2\n    },\n    {\n        \"id\": \"28c76039-babe-eb11-ba5e-00155d0eeb6e\",\n        \"addressData\": \"+32 479 99 99 99\",\n        \"medium\": 4\n    }\n]"}],"_postman_id":"9e80a040-ceda-4f47-9be9-45f209472cf6"},{"name":"create physical address","id":"7549e6aa-e405-49f5-9e23-54d77bc506e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"street\": \"Sample street\",\n  \"number\": \"10\",\n  \"zip\": \"9100\",\n  \"city\": \"Sint-Niklaas\",\n  \"country\": \"BE\",\n  \"isMain\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses","description":"<p>Required scope: <strong>relations.write</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>street</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>number</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>box</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>string</td>\n<td>X</td>\n<td>2 letter country code: <code>BE</code></td>\n</tr>\n<tr>\n<td>isMain</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the new address will be added as the main address of the relation</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","addresses"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7549e6aa-e405-49f5-9e23-54d77bc506e9"},{"name":"update physical address","id":"fefa3fd4-9e1e-485f-8f27-b8990a0cd683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"addressData\": \"sample street\",\r\n    \"number\": \"10\",\r\n    \"zipCode\": \"9100\",\r\n    \"city\": \"Sint-Niklaas\",\r\n    \"countryCode\": \"be\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses/{{addressId}}","description":"<p>Required scope: <strong>relations.write</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>addressData</td>\n<td>string</td>\n<td>X</td>\n<td>Street in case of physical address, e-mail or phone number in other cases.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>string</td>\n<td>required for physical addresses</td>\n<td></td>\n</tr>\n<tr>\n<td>street2</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>box</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>zipCode</td>\n<td>string</td>\n<td>required for physical addresses</td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>required for physical addresses</td>\n<td></td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>string</td>\n<td>required for physical addresses</td>\n<td>2 letter country code: <code>BE</code></td>\n</tr>\n<tr>\n<td>isMain</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the address will be set as the main address (main e-mail in case of e-mail)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","addresses","{{addressId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fefa3fd4-9e1e-485f-8f27-b8990a0cd683"},{"name":"create web address","id":"57d3450c-92b0-4364-9dcd-96c0ad463526","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"street\": \"Sample street\",\n  \"number\": \"10\",\n  \"zip\": \"9100\",\n  \"city\": \"Sint-Niklaas\",\n  \"country\": \"BE\",\n  \"isMain\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses","description":"<p>Required scope: <strong>relations.write</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>medium</td>\n<td>number</td>\n<td>X</td>\n<td>Website = 3  <br />SharePoint = 6  <br />GoogleDrive = 7  <br />Odoo = 8  <br />BusinessCentral = 9  <br />PowerBi = 10  <br />Teams = 11  <br />OneDrive = 12</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","addresses"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57d3450c-92b0-4364-9dcd-96c0ad463526"},{"name":"delete address","id":"13d5be13-179f-4922-be77-887a58c27980","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses/{{addressId}}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","addresses","{{addressId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13d5be13-179f-4922-be77-887a58c27980"}],"id":"69120d53-9ad3-4254-842e-426ac0782c9c","_postman_id":"69120d53-9ad3-4254-842e-426ac0782c9c","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Email addresses","item":[{"name":"create email address","id":"7aa46e8e-292c-4fd2-9b01-0aca3e7d1392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"email\": \"invoices@adminpulse.eu\",\n  \"remark\": \"To be used when sending the invoice\",\n  \"isMain\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/emailaddresses","description":"<p>Required scope: <strong>relations.write</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>isMain</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the email address will be set as the main email address of the relation</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","emailaddresses"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bbfbbe17-25ec-48e1-8540-a9e712eb3336","name":"create email address","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"email\": \"invoices@adminpulse.eu\",\n  \"remark\": \"To be used when sending the invoice\",\n  \"isMain\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/emailaddresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\"7370d74c-8c0a-45c0-a0f7-cf6b0939afad\""}],"_postman_id":"7aa46e8e-292c-4fd2-9b01-0aca3e7d1392"},{"name":"update email address","id":"8f3fbc94-f380-4fee-b14e-c70e870b07a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"administration@adminpulse.eu\",\r\n  \"remark\": \"To be used when sending the invoice\",\r\n  \"isMain\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/emailaddresses/{{emailAddressId}}","description":"<p>Required scope: <strong>relations.write</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>isMain</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the email address will be set as the main email address of the relation</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","emailaddresses","{{emailAddressId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"039644c1-9009-4c7b-982e-20bdd1b14da2","name":"update email address","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"administration@adminpulse.eu\",\r\n  \"remark\": \"To be used when sending the invoice\",\r\n  \"isMain\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses/{{addressId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8f3fbc94-f380-4fee-b14e-c70e870b07a7"},{"name":"delete email address","id":"a8786b9f-2539-460b-926b-044db279e62a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses/{{emailAddressId}}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueIdentifier}}","addresses","{{emailAddressId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"746d21d3-63ee-4e95-8a06-424654e64e35","name":"delete email address","originalRequest":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueIdentifier}}/addresses/{{emailAddressId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a8786b9f-2539-460b-926b-044db279e62a"}],"id":"77958587-b721-41a3-9b09-b2b7b38252ae","_postman_id":"77958587-b721-41a3-9b09-b2b7b38252ae","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Invoice schedules","item":[{"name":"list invoice schedules","id":"cce6c97f-a9c5-4f90-a596-b9f343437e2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/invoiceschedules?page=0&pageSize=100&lastSyncTime=22102022&searchCriteria&type&types&includeInactive&includeAssignmentsWithoutSchedules=true&withTags=tag1,tag2&withoutTags&phone&businessNumber&vatNumber&nationalIdNumber&rsinNumber&kvkNumber&loonheffingenNumber&omzetbelastingNumber&bsnNumber&selfbooker","description":"<p>Required scope: <strong>invoices.read</strong></p>\n<p>Returns all invoice schedules</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>nextInvoiceDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Format: ddmmyyyy</td>\n</tr>\n<tr>\n<td>scheduleName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>amountOfLinesPerYear</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>invoicingType</td>\n<td>number</td>\n<td>Registration based = 0  <br />FixedAmount (forfait) = 1  <br />AdvanceSettlement = 2</td>\n</tr>\n<tr>\n<td>assignmentName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>assignmentId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>assignmentTemplateId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td>Id of the own company used for this schedule</td>\n</tr>\n<tr>\n<td>budgets</td>\n<td>array of budget (see below)</td>\n<td></td>\n</tr>\n<tr>\n<td>assistant</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>assistantEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>assistantBackup</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>assistantBackupEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>associate</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>associateEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>responsible</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>responsibleEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>billingUser</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>billingUserEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>seniorUser</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>seniorUserEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>discount</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>priceGrid</td>\n<td>string</td>\n<td>Name of the price table</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td>Format: ddmmyyyy</td>\n</tr>\n</tbody>\n</table>\n</div><p>Budget</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>year</td>\n<td>int</td>\n<td>Calendar year to which this budget applies</td>\n</tr>\n<tr>\n<td>budgetAmount</td>\n<td>number (optional)</td>\n<td>Budget amount for this year</td>\n</tr>\n<tr>\n<td>budgetHours</td>\n<td>number (optional)</td>\n<td>Budget hours for this year</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","invoiceschedules"],"host":["{{apiEndpointUrl}}"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"100"},{"key":"lastSyncTime","value":"22102022"},{"key":"searchCriteria","value":null},{"key":"type","value":null},{"key":"types","value":null},{"key":"includeInactive","value":null},{"description":{"content":"<p>Include assignments without an invoice schedule</p>\n","type":"text/plain"},"key":"includeAssignmentsWithoutSchedules","value":"true"},{"key":"withTags","value":"tag1,tag2"},{"key":"withoutTags","value":null},{"key":"phone","value":null},{"key":"businessNumber","value":null},{"key":"vatNumber","value":null},{"key":"nationalIdNumber","value":null},{"key":"rsinNumber","value":null},{"key":"kvkNumber","value":null},{"key":"loonheffingenNumber","value":null},{"key":"omzetbelastingNumber","value":null},{"key":"bsnNumber","value":null},{"key":"selfbooker","value":null}],"variable":[]}},"response":[{"id":"e3f9fba3-c7c8-4840-ad48-7e17fdc0611e","name":"list invoice schedules","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/invoiceschedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"3e74a7c3-21f9-ec11-b5cf-0003ff2025f9\",\n            \"relationIdentifier\": \"APR01854\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"29012024\",\n            \"scheduleName\": \"Advance – 12/year + Settlement 12/31\",\n            \"amountOfLinesPerYear\": 13,\n            \"invoicingType\": 2,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"25e328fb-e714-ed11-b5cf-0003ff2025fd\",\n            \"relationIdentifier\": \"APR01856\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": null,\n            \"amount\": 1500.00000,\n            \"startDate\": \"27022025\",\n            \"scheduleName\": \"Forfait - 1x jaar\",\n            \"amountOfLinesPerYear\": 1,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2022,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": 50.00\n                },\n                {\n                    \"year\": 2019,\n                    \"budgetAmount\": 2019.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2025,\n                    \"budgetAmount\": 1500.00,\n                    \"budgetHours\": 10.00\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"8738d4c4-ed45-ec11-a3ee-0003ff2054d4\",\n            \"relationIdentifier\": \"APR01786\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"15112021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"4bd305e9-0346-ec11-a3ee-0003ff2054d4\",\n            \"relationIdentifier\": \"APR01787\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 300.00000,\n            \"startDate\": \"15112021\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"1476af02-8110-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01507\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1400.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Jos Kantoor\",\n            \"assistantEmail\": \"jos@kantoor.be\",\n            \"assistantBackup\": \"Power User\",\n            \"assistantBackupEmail\": \"synetonpulse+dev+poweruser@gmail.com\",\n            \"associate\": \"Bart De Keersmaeker\",\n            \"associateEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"responsible\": \"Cindy De Importer\",\n            \"responsibleEmail\": \"cindy@invalid.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"91a2b597-4d15-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01514\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1400.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"5ce244ea-4e15-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01515\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"2400e11b-5015-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01516\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"5088dcd4-5215-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01517\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 1000.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 12000.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"50454f0f-5515-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01518\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 4000.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 48000.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"9f07c1e6-5615-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01519\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"e50a1fdf-5915-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01520\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"b231ac2a-6315-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01521\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 1000.00000,\n            \"startDate\": \"14092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 12000.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"5cc25e6a-fc15-ec11-b76a-0003ff20567c\",\n            \"relationIdentifier\": \"APR01524\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 1000.00000,\n            \"startDate\": \"15092021\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2023,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": null\n                },\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 12000.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"24ed9524-e7ed-eb11-ba5e-00155d4ac8c7\",\n            \"relationIdentifier\": \"APR01071\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 400.00000,\n            \"startDate\": \"05102021\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1600.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"5f8386ab-3310-ee11-a81c-0022488ac8b7\",\n            \"relationIdentifier\": \"APR01874\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"21062023\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"ac0bf425-d064-4ad5-bef8-017085d654c7\",\n            \"relationIdentifier\": \"APR00051\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"06012020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Senior Smet\",\n            \"assistantEmail\": \"invalid@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": \"integration invoice - Limited\",\n            \"billingUserEmail\": \"synetonpulse+dev+integration+limited@gmail.com\",\n            \"seniorUser\": \"Senior Smet\",\n            \"seniorUserEmail\": \"invalid@invalid.com\",\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"8d3b2884-34be-45fa-a7b6-0853128ae89e\",\n            \"relationIdentifier\": \"APR00093\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"04122019\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 4200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"c57fa3e2-65bf-4be8-392b-08dc1d005c1e\",\n            \"relationIdentifier\": \"APR01878\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-06-21T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"25012024\",\n            \"scheduleName\": \"Forfait - Dagelijks\",\n            \"amountOfLinesPerYear\": 366,\n            \"invoicingType\": 1,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"2443ab01-bdf7-42ec-b206-08dc1d9c60cf\",\n            \"relationIdentifier\": \"APR01879\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-06-21T00:00:00\",\n            \"amount\": null,\n            \"startDate\": \"25012024\",\n            \"scheduleName\": \"Regie - Dagelijks*\",\n            \"amountOfLinesPerYear\": 366,\n            \"invoicingType\": 0,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"b6a4f316-f9ba-4b78-8f18-08dd0ed3c2c6\",\n            \"relationIdentifier\": \"APR01897\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"28112024\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"7adf6a80-779c-435f-1990-08dd8487c69c\",\n            \"relationIdentifier\": \"APR01902\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-12-31T00:00:00\",\n            \"amount\": 1500.00000,\n            \"startDate\": \"28042025\",\n            \"scheduleName\": \"Forfait - 1x jaar\",\n            \"amountOfLinesPerYear\": 1,\n            \"invoicingType\": 1,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.05000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"00d2ee98-150b-4694-8eeb-08dda50e1688\",\n            \"relationIdentifier\": \"APR01905\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"06062025\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2025,\n                    \"budgetAmount\": 5000.00,\n                    \"budgetHours\": 100.00\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"128822a2-3afc-454d-88d9-09a0533249bb\",\n            \"relationIdentifier\": \"APR00259\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"13022020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"a12cf432-6674-4405-9291-0c2ccf472bc5\",\n            \"relationIdentifier\": \"APR01904\",\n            \"assignmentIdentifier\": \"BF\",\n            \"nextInvoiceDate\": \"2025-12-31T00:00:00\",\n            \"amount\": 1500.00000,\n            \"startDate\": \"06062025\",\n            \"scheduleName\": \"Forfait - 1x jaar\",\n            \"amountOfLinesPerYear\": 1,\n            \"invoicingType\": 1,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": \"70845483-c013-4cb8-1a74-08dda4deb22c\",\n            \"assignmentTemplateId\": \"b64dda76-f3e0-4b7e-1a71-08dda4deb22c\",\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"c646f679-eb72-4db8-a3fb-11014626518c\",\n            \"relationIdentifier\": \"APR01905\",\n            \"assignmentIdentifier\": \"AD\",\n            \"nextInvoiceDate\": \"2025-06-21T00:00:00\",\n            \"amount\": null,\n            \"startDate\": \"06062025\",\n            \"scheduleName\": \"Regie - Dagelijks*\",\n            \"amountOfLinesPerYear\": 366,\n            \"invoicingType\": 0,\n            \"budgets\": [\n                {\n                    \"year\": 2025,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": 50.00\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": \"29764a88-5aa5-4925-8ef8-08dda50e1688\",\n            \"assignmentTemplateId\": \"df29e5ad-c146-4504-5dd1-08dce75ea9d2\",\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"2cacef72-94e8-49e5-ad0a-1bab51203e17\",\n            \"relationIdentifier\": \"APR00026\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"10092020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Bart De Keersmaeker\",\n            \"assistantEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"a761e26f-3b86-4e29-9627-1edc930656fd\",\n            \"relationIdentifier\": \"APR00156\",\n            \"assignmentIdentifier\": \"SA\",\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"28092021\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1400.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": \"9ddf5c53-3320-ec11-b76a-0003ff20567c\",\n            \"assignmentTemplateId\": \"ba8d7bc4-ae5c-eb11-8fed-00155d0ece5f\",\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"656e14a6-0c90-49d0-abc1-20b40e489c73\",\n            \"relationIdentifier\": \"APR00010\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"01062019\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"e58ec542-3ed9-4a10-9253-21e6d54bd4b5\",\n            \"relationIdentifier\": \"APR00159\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"07022020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Glenn Cambré\",\n            \"responsibleEmail\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"0cdc6e1d-8d5d-4201-9ac2-22eea9735872\",\n            \"relationIdentifier\": \"APR00286\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 130.00000,\n            \"startDate\": \"14122020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1560.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Expensive\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"99d85673-29f3-4fbd-a302-234e04c74240\",\n            \"relationIdentifier\": \"APR00002\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 155.00000,\n            \"startDate\": \"22102019\",\n            \"scheduleName\": \"Fixed amount - 6/year\",\n            \"amountOfLinesPerYear\": 6,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 930.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Bart De Keersmaeker\",\n            \"assistantEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"assistantBackup\": \"Cindy De Importer\",\n            \"assistantBackupEmail\": \"cindy@invalid.com\",\n            \"associate\": \"Jos Kantoor\",\n            \"associateEmail\": \"jos@kantoor.be\",\n            \"responsible\": \"Senior Smet\",\n            \"responsibleEmail\": \"invalid@invalid.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.01000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"ca309ef9-66f4-4b27-9236-23f2941fc95a\",\n            \"relationIdentifier\": \"APR00146\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": null,\n            \"startDate\": \"29072019\",\n            \"scheduleName\": \"Registration based - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 0,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"3142d4a1-e455-4125-abb7-2816b3ab37a1\",\n            \"relationIdentifier\": \"APR00119\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"03062024\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"ab7d7e47-f8c1-49c9-91de-35807640f30f\",\n            \"relationIdentifier\": \"APR00071\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"07022020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"4c95228f-f20f-4011-9b51-38114f312a2b\",\n            \"relationIdentifier\": \"APR00151\",\n            \"assignmentIdentifier\": \"AD\",\n            \"nextInvoiceDate\": \"2025-12-31T00:00:00\",\n            \"amount\": 500.00000,\n            \"startDate\": \"10012025\",\n            \"scheduleName\": \"Forfait - 1x jaar\",\n            \"amountOfLinesPerYear\": 1,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1000.00,\n                    \"budgetHours\": 20.00\n                },\n                {\n                    \"year\": 2025,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": 30.00\n                }\n            ],\n            \"companyId\": \"d0f5387c-3f5d-4708-958d-92e0af011fd2\",\n            \"assignmentName\": null,\n            \"assignmentId\": \"4fdcb3e3-e190-4dc8-f306-08dd318683cd\",\n            \"assignmentTemplateId\": \"df29e5ad-c146-4504-5dd1-08dce75ea9d2\",\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": \"Bart De Keersmaeker\",\n            \"assistantBackupEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"associate\": \"Cindy De Importer\",\n            \"associateEmail\": \"cindy@invalid.com\",\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": \"Senior Smet\",\n            \"billingUserEmail\": \"invalid@invalid.com\",\n            \"seniorUser\": \"Jos Kantoor\",\n            \"seniorUserEmail\": \"jos@kantoor.be\",\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"83aa6aab-117e-47c8-804a-39ab020e52d2\",\n            \"relationIdentifier\": \"APR00165\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"01102019\",\n            \"scheduleName\": \"Advance – 12/year + Settlement 12/31\",\n            \"amountOfLinesPerYear\": 13,\n            \"invoicingType\": 2,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"42efffc0-2b40-4a14-a254-3d7ccf6f93cb\",\n            \"relationIdentifier\": \"APR00255\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 250.00000,\n            \"startDate\": \"21062021\",\n            \"scheduleName\": \"Fixed amount - 6/year\",\n            \"amountOfLinesPerYear\": 6,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1500.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"b952b27b-d1d3-4306-bd22-3eb1a8524d4f\",\n            \"relationIdentifier\": \"APR00218\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"18112019\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 4200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": \"Bart De Keersmaeker\",\n            \"associateEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"82107a67-cad4-4fda-b666-40b21e418318\",\n            \"relationIdentifier\": \"APR00126\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"29102019\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"100644d9-8617-47d1-bc00-4143a9e18aa8\",\n            \"relationIdentifier\": \"APR00260\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"18022020\",\n            \"scheduleName\": \"Advance – 12/year + Settlement 12/31\",\n            \"amountOfLinesPerYear\": 13,\n            \"invoicingType\": 2,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Bart De Keersmaeker\",\n            \"assistantEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": \"Glenn Cambré\",\n            \"associateEmail\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"responsible\": \"Cindy De Importer\",\n            \"responsibleEmail\": \"cindy@invalid.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"b90aaf83-9bed-456b-b29c-41ae1d55e22a\",\n            \"relationIdentifier\": \"APR00615\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 100.00000,\n            \"startDate\": \"13012022\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Jos Kantoor\",\n            \"assistantEmail\": \"jos@kantoor.be\",\n            \"assistantBackup\": \"Relation User\",\n            \"assistantBackupEmail\": \"relatiebeheerderintegratie@hotmail.com\",\n            \"associate\": \"Marc Vennoot\",\n            \"associateEmail\": \"synetonpulse+dev+vennoot@gmail.com\",\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": \"Senior Smet\",\n            \"billingUserEmail\": \"invalid@invalid.com\",\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"ae38c976-c626-40a5-a8ad-42478d2d245f\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"01072020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"2ad157b4-411d-4284-b980-47205a7b12f4\",\n            \"relationIdentifier\": \"APR00303\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"30092020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Expensive\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"0e2e4194-9489-43d6-8ac6-4d2c1904bdc6\",\n            \"relationIdentifier\": \"APR00423\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-08-05T00:00:00\",\n            \"amount\": 750.00000,\n            \"startDate\": \"14122020\",\n            \"scheduleName\": \"Fixed amount - 4/year\",\n            \"amountOfLinesPerYear\": 4,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 3000.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"cbd22d62-d050-4ee8-bec6-4e283ec580ed\",\n            \"relationIdentifier\": \"APR00032\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 350.00000,\n            \"startDate\": \"24072019\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 4200.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"39d10f03-9fa9-4ded-87da-5bfb6af40dc4\",\n            \"relationIdentifier\": \"APR00268\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 1.00000,\n            \"startDate\": \"24082022\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 12.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": \"Jos Kantoor\",\n            \"assistantEmail\": \"jos@kantoor.be\",\n            \"assistantBackup\": \"Senior Smet\",\n            \"assistantBackupEmail\": \"invalid@invalid.com\",\n            \"associate\": \"Cindy De Importer\",\n            \"associateEmail\": \"cindy@invalid.com\",\n            \"responsible\": \"Admin Readonly\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+adminreadonly@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"1b57b357-05bd-4810-bdd0-5c4e52abf391\",\n            \"relationIdentifier\": \"APR00343\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 150.00000,\n            \"startDate\": \"31072020\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 1800.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"b0eae216-f5b8-4779-ae39-5dff5a6ab68b\",\n            \"relationIdentifier\": \"APR00030\",\n            \"assignmentIdentifier\": null,\n            \"nextInvoiceDate\": \"2025-07-05T00:00:00\",\n            \"amount\": 320.00000,\n            \"startDate\": \"29102019\",\n            \"scheduleName\": \"Fixed amount - 12/year\",\n            \"amountOfLinesPerYear\": 12,\n            \"invoicingType\": 1,\n            \"budgets\": [\n                {\n                    \"year\": 2024,\n                    \"budgetAmount\": 3840.00,\n                    \"budgetHours\": null\n                }\n            ],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Default\",\n            \"endDate\": null\n        },\n        {\n            \"id\": \"866bf23b-803b-4812-8daf-6103128a501a\",\n            \"relationIdentifier\": \"APR00359\",\n            \"assignmentIdentifier\": \"AD\",\n            \"nextInvoiceDate\": \"2026-12-31T00:00:00\",\n            \"amount\": 10.00000,\n            \"startDate\": \"14012025\",\n            \"scheduleName\": \"Forfait - 1x jaar\",\n            \"amountOfLinesPerYear\": 1,\n            \"invoicingType\": 1,\n            \"budgets\": [],\n            \"companyId\": null,\n            \"assignmentName\": null,\n            \"assignmentId\": \"33bf0e79-06aa-42fb-5dd2-08dce75ea9d2\",\n            \"assignmentTemplateId\": \"df29e5ad-c146-4504-5dd1-08dce75ea9d2\",\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": \"Senior Smet\",\n            \"billingUserEmail\": \"invalid@invalid.com\",\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"discount\": 0.00000,\n            \"priceGrid\": \"Cheap\",\n            \"endDate\": null\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 2,\n    \"pageSize\": 50,\n    \"totalRowCount\": 85\n}"}],"_postman_id":"cce6c97f-a9c5-4f90-a596-b9f343437e2f"},{"name":"list invoice schedules for specific relation","id":"473b5991-8983-4687-9e8b-3546df4e4a41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/invoiceschedules","description":"<p>Required scope: <strong>invoices.read</strong></p>\n<p>Returns all active invoice schedules for given relation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>nextInvoiceDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Format: ddmmyyyy</td>\n</tr>\n<tr>\n<td>scheduleName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>amountOfLinesPerYear</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>invoicingType</td>\n<td>number</td>\n<td>Registration based = 0  <br />FixedAmount (forfait) = 1  <br />AdvanceSettlement = 2</td>\n</tr>\n<tr>\n<td>assignmentName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>assignmentId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>assignmentTemplateId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td>Id of the own company used for this schedule</td>\n</tr>\n<tr>\n<td>budgets</td>\n<td>array of budget (see below)</td>\n<td></td>\n</tr>\n<tr>\n<td>assistant</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>assistantEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>assistantBackup</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>assistantBackupEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>associate</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>associateEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>responsible</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>responsibleEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>billingUser</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>billingUserEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n<tr>\n<td>seniorUser</td>\n<td>string</td>\n<td>Name of the person</td>\n</tr>\n<tr>\n<td>seniorUserEmail</td>\n<td>string</td>\n<td>Email of the person</td>\n</tr>\n</tbody>\n</table>\n</div><p>Budget</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>year</td>\n<td>int</td>\n<td>Calendar year to which this budget applies</td>\n</tr>\n<tr>\n<td>budgetAmount</td>\n<td>number (optional)</td>\n<td>Budget amount for this year</td>\n</tr>\n<tr>\n<td>budgetHours</td>\n<td>number (optional)</td>\n<td>Budget hours for this year</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","{{uniqueidentifier}}","invoiceschedules"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fb4d36f9-c40f-44e5-bf62-242b021e7b44","name":"list invoice schedules for specific relation","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/relations/{{uniqueidentifier}}/invoiceschedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"44b0e8ee-57fa-4dee-b6e0-cc816643bd7b\",\n        \"nextInvoiceDate\": \"2023-01-01T00:00:00\",\n        \"amount\": \"10\",\n        \"startDate\": \"20012025\",\n        \"scheduleName\": \"Fixed amount - 6/year\",\n        \"amountOfLinesPerYear\": 6,\n        \"invoicingType\": 1,\n        \"assistant\": \"User One\",\n        \"assistantEmail\": null,\n        \"assistantBackup\": \"User Two\",\n        \"assistantBackupEmail\": null,\n        \"associate\": null,\n        \"associateEmail\": null,\n        \"responsible\": null,\n        \"responsibleEmail\": null,\n        \"billingUser\": null,\n        \"billingUserEmail\": null,\n        \"seniorUser\": null,\n        \"seniorUserEmail\": null\n    }\n]"}],"_postman_id":"473b5991-8983-4687-9e8b-3546df4e4a41"},{"name":"add invoice schedule to relation","id":"b53e4968-adac-4dc0-b0b6-6a5219ded044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationId\": \"44b0e8ee-57fa-4dee-b6e0-cc816643bd7b\",\n  \"invoicingType\": \"RegistrationBased|FixedAmount|AdvanceSettlement\",\n  \"numberOfInvoicesPerYear\": 12,\n  \"amount\": 150,\n  \"ledger\": \"Ledger account\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/invoiceschedule/add","description":"<p>Required scope: invoices.write</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relationId</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td></td>\n<td>Optionally provide the start date of the invoice schedule. Format is ddMMyyyy.  <br />Be careful, because creating an invoice schedule with date in the past might create draft invoices for the dates that have passed since the start date!</td>\n</tr>\n<tr>\n<td>invoiceScheduleId</td>\n<td>string</td>\n<td></td>\n<td>The invoice schedule ID to use. To retrieve all possible invoice schedules and their ID, the <em><strong>/settings/invoiceschedules</strong></em> endpoint can be used</td>\n</tr>\n<tr>\n<td>invoicingType</td>\n<td>string</td>\n<td>Required if invoiceScheduleId is empty. The schedule will be selected based on the invoicing type and number of invoices per year.</td>\n<td>One of 3 possible values:  <br />RegistrationBased  <br />FixedAmount  <br />AdvanceSettlement</td>\n</tr>\n<tr>\n<td>numberOfInvoicesPerYear</td>\n<td>number</td>\n<td>Required if invoiceScheduleId is empty. The schedule will be selected based on the invoicing type and number of invoices per year.</td>\n<td>If fixed amount or advance settlement: the amount of invoices per year.</td>\n</tr>\n<tr>\n<td>ledger</td>\n<td>string</td>\n<td></td>\n<td>Ledger account</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Required if invoicingType is FixedAmount or AdvanceSettlement</td>\n<td>The invoice amount for a single invoice.</td>\n</tr>\n<tr>\n<td>override</td>\n<td>boolean</td>\n<td></td>\n<td>If the relation already has an invoice schedule, and you want to override it by for example setting a new amount, set the override option to true to set a new amount.</td>\n</tr>\n<tr>\n<td>assignmentTemplateCode</td>\n<td>string</td>\n<td></td>\n<td>The code of the assignment template. Use this option if you want to add an invoice schedule on a specific assignment.  <br />To retrieve the code of an assignment template, you can use the /settings/assignmenttemplates endpoint.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required when passing an assignmentTemplateCode and the assignment template has its \"allow multiple per relation\" setting set to true.</td>\n<td>The name of the assignment that will be used when adding the invoice schedule.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","invoiceschedule","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9a3b3085-4791-4853-b7a1-a2d42f5b5412","name":"add invoice schedule to relation","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationId\": \"44b0e8ee-57fa-4dee-b6e0-cc816643bd7b\",\n  \"invoicingType\": \"RegistrationBased|FixedAmount|AdvanceSettlement\",\n  \"numberOfInvoicesPerYear\": 12,\n  \"amount\": 150,\n  \"ledger\": \"Ledger account\",\n  \"override\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/relations/invoiceschedule/add"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b53e4968-adac-4dc0-b0b6-6a5219ded044"}],"id":"9110b197-8d6c-4a3f-b68c-3a17a31d8b57","description":"<h4 id=\"invoicing-types\">Invoicing types</h4>\n<ul>\n<li>Registration based = 0</li>\n<li>Fixed amount (forfait) = 1</li>\n<li>Advance settlement = 2</li>\n</ul>\n","_postman_id":"9110b197-8d6c-4a3f-b68c-3a17a31d8b57","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"create QR code","id":"6fab24ba-efa8-48cf-ad46-d8dcb1351de9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/relations/qrcode/generate","description":"<p>This API endpoint can be used to create a QR code that can be placed on a document which will allow AdminPulse to recognize the QR code and link it to the correct relation later on when it was re-uploaded to AdminPulse.</p>\n<p>The call accepts an object containing the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td>The unique identifier of the relation</td>\n</tr>\n<tr>\n<td>documentType</td>\n<td>number</td>\n<td>See list of document types under section Documents: <a href=\"https://developer.adminpulse.be/#7bd434ac-187c-4e9e-a1d5-ce7de0e4cb7b\">https://developer.adminpulse.be/#7bd434ac-187c-4e9e-a1d5-ce7de0e4cb7b</a></td>\n</tr>\n<tr>\n<td>documentDate</td>\n<td>string</td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n</tbody>\n</table>\n</div><p>The response of this call will be a <strong>file response</strong> (image/png)</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["relations","qrcode","generate"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6fab24ba-efa8-48cf-ad46-d8dcb1351de9"}],"id":"d7841c71-cb77-4420-b436-9ddf8088211b","description":"<h4 id=\"crmtype\">CrmType</h4>\n<ul>\n<li><p>Other = 0</p>\n</li>\n<li><p>Prospect = 2</p>\n</li>\n<li><p>Customer = 3</p>\n</li>\n<li><p>OwnCompany = 4</p>\n</li>\n</ul>\n<h4 id=\"type\">Type</h4>\n<ul>\n<li><p>Company = 0</p>\n</li>\n<li><p>SoleProprietor = 1</p>\n</li>\n<li><p>Person = 2</p>\n</li>\n</ul>\n","_postman_id":"d7841c71-cb77-4420-b436-9ddf8088211b","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Registrations","item":[{"name":"Add","item":[{"name":"add time registration","id":"c6c25a6c-ee18-4842-ad04-88b09ebf6dde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"resourceType\": 0,\r\n  \"registrationDate\": \"2015-12-30\",\r\n  \"relationIdentifier\": \"APR00001\",\r\n  \"userIdentifier\": \"\",\r\n  \"priceListItemCode\": \"\",\r\n  \"timeFrom\": \"11:00\",\r\n  \"timeTo\": \"12:00\",\r\n  \"billable\": false,\r\n  \"inFixedAmount\": false,\r\n  \"remarkInternal\": \"\",\r\n  \"remarkInvoice\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/registrations/add","description":"<p>Required scope: <strong>registrations.write</strong></p>\n<p>A registration can be added and should be linked to a given relation using the relation unique identifier. In order to link the registration to the correct pricelist item, pass in the pricelist item code.</p>\n<p>More information about our pricelist can be found here: <a href=\"https://syneton.zendesk.com/hc/articles/360023721014AttributeTypeRequiredInforesourceTypenumberXSet\">https://syneton.zendesk.com/hc/articles/360023721014</a></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>resourceType</td>\n<td>number</td>\n<td>X</td>\n<td>Set to 0 for a time registration</td>\n</tr>\n<tr>\n<td>registrationDate</td>\n<td>string</td>\n<td>X</td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The unique identifier of the relation for which the registration will be created</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The e-mail address of the user for which the registration will be created</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td>X</td>\n<td>The code of the pricelist item for which the registration will be created as defined in <a href=\"https://app.adminpulse.be/#/registrations/priceListassignmentCodestringIf\">https://app.adminpulse.be/#/registrations/priceList</a></td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the relation for which the registration will be created has multiple assignments, the assignment code can be passed to specify for which assignment the registration will be created. The assignment code has to be filled out at <a href=\"https://app.adminpulse.be/#/settings/AssignmentTemplates\">https://app.adminpulse.be/#/settings/AssignmentTemplates</a></td>\n</tr>\n<tr>\n<td>timeFrom</td>\n<td>string</td>\n<td>X</td>\n<td>Format: HH:mm</td>\n</tr>\n<tr>\n<td>timeTo</td>\n<td>string</td>\n<td>X</td>\n<td>Format: HH:mm</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as billable or not billable. If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as in fixed amount or not in fixed amount (forfait). If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>decimal</td>\n<td></td>\n<td>If passed, the unit price of the pricelist will be ignored and the given unit price will be used</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td></td>\n<td>The internal remark (not exposed to end customer)</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td></td>\n<td>The invoiceremark (exposed to end customer)</td>\n</tr>\n<tr>\n<td>plannedTaskId</td>\n<td>string</td>\n<td></td>\n<td>The ID of the task that should be linked to this registration (can be either a main task or a sub task)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6c25a6c-ee18-4842-ad04-88b09ebf6dde"},{"name":"add cost registration","id":"f010f695-cb74-488e-9600-d96af5a7e083","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"resourceType\": 1,\r\n  \"registrationDate\": \"2015-12-30\",\r\n  \"relationIdentifier\": \"APR00001\",\r\n  \"userIdentifier\": \"\",\r\n  \"priceListItemCode\": \"\",\r\n  \"quantity\": 0,\r\n  \"remarkInternal\": \"\",\r\n  \"remarkInvoice\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/registrations/add","description":"<p>Required scope: <strong>registrations.write</strong></p>\n<p>A registration can be added and should be linked to a given relation using the relation unique identifier. In order to link the registration to the correct pricelist item, pass in the pricelist item code.</p>\n<p>More information about our pricelist can be found here: <a href=\"https://syneton.zendesk.com/hc/articles/360023721014AttributeTypeRequiredInforesourceTypenumberXSet\">https://syneton.zendesk.com/hc/articles/360023721014</a></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>resourceType</td>\n<td>number</td>\n<td>X</td>\n<td>Set to 1 for a cost registration</td>\n</tr>\n<tr>\n<td>registrationDate</td>\n<td>string</td>\n<td>X</td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The unique identifier of the relation for which the registration will be created</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The e-mail address of the user for which the registration will be created</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td>X</td>\n<td>The code of the pricelist item for which the registration will be created as defined in <a href=\"https://app.adminpulse.be/#/registrations/priceList\">https://app.adminpulse.be/#/registrations/priceList</a> . This field also accepts a pricelist item guid.</td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the relation for which the registration will be created has multiple assignments, the assignment code can be passed to specify for which assignment the registration will be created. The assignment code has to be filled out at <a href=\"https://app.adminpulse.be/#/settings/AssignmentTemplatesquanitynumberXThe\">https://app.adminpulse.be/#/settings/AssignmentTemplates</a></td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>number</td>\n<td>X</td>\n<td>The quantity of the registration</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as billable or not billable. If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as in fixed amount or not in fixed amount (forfait). If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>decimal</td>\n<td></td>\n<td>If passed, the unit price of the pricelist will be ignored and the given unit price will be used</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td></td>\n<td>The internal remark (not exposed to end customer)</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td></td>\n<td>The invoiceremark (exposed to end customer)</td>\n</tr>\n<tr>\n<td>plannedTaskId</td>\n<td>string</td>\n<td></td>\n<td>The ID of the task that should be linked to this registration (can be either a main task or a sub task)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f010f695-cb74-488e-9600-d96af5a7e083"},{"name":"add travel registration","id":"5eb19fa0-d108-469d-94c9-aadc93ee4de4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"resourceType\": 2,\r\n  \"registrationDate\": \"2015-12-30\",\r\n  \"relationIdentifier\": \"APR00001\",\r\n  \"userIdentifier\": \"\",\r\n  \"resourceIdentifier\": \"\",\r\n  \"quantity\": 0,\r\n  \"remarkInternal\": \"\",\r\n  \"remarkInvoice\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/registrations/add","description":"<p>Required scope: <strong>registrations.write</strong></p>\n<p>A registration can be added and should be linked to a given relation using the relation unique identifier. In order to link the registration to the correct pricelist item, pass in the pricelist item code.</p>\n<p>More information about our pricelist can be found here: <a href=\"https://syneton.zendesk.com/hc/articles/360023721014AttributeTypeRequiredInforesourceTypenumberXSet\">https://syneton.zendesk.com/hc/articles/360023721014</a></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>resourceType</td>\n<td>number</td>\n<td>X</td>\n<td>Set to 2 for a travel registration</td>\n</tr>\n<tr>\n<td>registrationDate</td>\n<td>string</td>\n<td>X</td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The unique identifier of the relation for which the registration will be created</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The e-mail address of the user for which the registration will be created</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td>X</td>\n<td>The code of the pricelist item for which the registration will be created as defined in <a href=\"https://app.adminpulse.be/#/registrations/priceListassignmentCodestringIf\">https://app.adminpulse.be/#/registrations/priceList</a></td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the relation for which the registration will be created has multiple assignments, the assignment code can be passed to specify for which assignment the registration will be created. The assignment code has to be filled out at <a href=\"https://app.adminpulse.be/#/settings/AssignmentTemplatesquanitynumberXThe\">https://app.adminpulse.be/#/settings/AssignmentTemplates</a></td>\n</tr>\n<tr>\n<td>quanity</td>\n<td>number</td>\n<td>X</td>\n<td>The quantity of the registration</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as billable or not billable. If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as in fixed amount or not in fixed amount (forfait). If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>decimal</td>\n<td></td>\n<td>If passed, the unit price of the pricelist will be ignored and the given unit price will be used</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td></td>\n<td>The internal remark (not exposed to end customer)</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td></td>\n<td>The invoiceremark (exposed to end customer)</td>\n</tr>\n<tr>\n<td>plannedTaskId</td>\n<td>string</td>\n<td></td>\n<td>The ID of the task that should be linked to this registration (can be either a main task or a sub task)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5eb19fa0-d108-469d-94c9-aadc93ee4de4"},{"name":"add absence registration","id":"fcaeae7f-1a14-4673-84ce-53b81f6cca6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"resourceType\": 3,\r\n  \"registrationDate\": \"2015-12-30\",\r\n  \"relationIdentifier\": \"APR00001\",\r\n  \"userIdentifier\": \"\",\r\n  \"priceListItemCode\": \"\",\r\n  \"timeFrom\": \"11:00\",\r\n  \"timeTo\": \"12:00\",\r\n  \"billable\": false,\r\n  \"inFixedAmount\": false,\r\n  \"remarkInternal\": \"\",\r\n  \"remarkInvoice\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/registrations/add","description":"<p>Required scope: <strong>registrations.write</strong></p>\n<p>A registration can be added and should be linked to a given relation using the relation unique identifier. In order to link the registration to the correct pricelist item, pass in the pricelist item code.</p>\n<p>More information about our pricelist can be found here: <a href=\"https://syneton.zendesk.com/hc/articles/360023721014AttributeTypeRequiredInforesourceTypenumberXSet\">https://syneton.zendesk.com/hc/articles/360023721014</a></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>resourceType</td>\n<td>number</td>\n<td>X</td>\n<td>Set to 3 for an absence registration</td>\n</tr>\n<tr>\n<td>registrationDate</td>\n<td>string</td>\n<td>X</td>\n<td>Format: yyyy-MM-dd</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The unique identifier of the relation for which the registration will be created</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The e-mail address of the user for which the registration will be created</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td>X</td>\n<td>The code of the pricelist item for which the registration will be created as defined in <a href=\"https://app.adminpulse.be/#/registrations/priceListassignmentCodestringIf\">https://app.adminpulse.be/#/registrations/priceList</a></td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the relation for which the registration will be created has multiple assignments, the assignment code can be passed to specify for which assignment the registration will be created. The assignment code has to be filled out at <a href=\"https://app.adminpulse.be/#/settings/AssignmentTemplates\">https://app.adminpulse.be/#/settings/AssignmentTemplates</a></td>\n</tr>\n<tr>\n<td>timeFrom</td>\n<td>string</td>\n<td>X</td>\n<td>Format: HH:mm</td>\n</tr>\n<tr>\n<td>timeTo</td>\n<td>string</td>\n<td>X</td>\n<td>Format: HH:mm</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as billable or not billable. If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td></td>\n<td>If passed, the registration will be marked as in fixed amount or not in fixed amount (forfait). If not passed, the default of the pricelist item will be used.</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td></td>\n<td>The internal remark (not exposed to end customer)</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td></td>\n<td>The invoiceremark (exposed to end customer)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fcaeae7f-1a14-4673-84ce-53b81f6cca6e"}],"id":"158c9044-127c-4c1e-8f2c-b9472195e907","_postman_id":"158c9044-127c-4c1e-8f2c-b9472195e907","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Planned registrations","item":[{"name":"list planned registrations","id":"15931f8e-e33f-4b81-9d31-ab76ca617aa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations?page=10&pageSize=10&relationIdentifier=APR00001&type=1&includeInactive=false&priceListItemCode=ABC","description":"<p>Returns a list of all planned registrations for all relations.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedRegistrations"],"host":["{{apiEndpointUrl}}"],"query":[{"key":"page","value":"10"},{"key":"pageSize","value":"10"},{"key":"relationIdentifier","value":"APR00001"},{"key":"type","value":"1"},{"key":"includeInactive","value":"false"},{"key":"priceListItemCode","value":"ABC"}],"variable":[]}},"response":[{"id":"fe363973-c81a-4a74-a9c5-90ac9afb0677","name":"planned registrations","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"9e678bef-9eb8-eb11-89ee-00155d4ac8d6\",\n            \"relationIdentifier\": \"APR00070\",\n            \"relationLastName\": \"De Smet\",\n            \"relationFirstName\": \"Jos\",\n            \"relationName\": null,\n            \"startDate\": \"19052021\",\n            \"endDate\": null,\n            \"nextPlanningDate\": \"01012025\",\n            \"day\": 1,\n            \"month\": 1,\n            \"schedule\": \"Yearly\",\n            \"companyId\": \"6bb7bbb4-cce2-4e4c-9f3e-94d796c76276\",\n            \"companyName\": \"Xyz\",\n            \"quantity\": 1,\n            \"durationMinutes\": null,\n            \"unitPrice\": 15,\n            \"totalAmount\": 15,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"assignment\": null,\n            \"priceListItemId\": \"d7154050-6bf2-4ebd-b85a-c54762490c54\",\n            \"priceListItem\": {\n                \"id\": \"d7154050-6bf2-4ebd-b85a-c54762490c54\",\n                \"code\": \"COM\",\n                \"name\": \"Companyweb - NL\",\n                \"type\": 1,\n                \"billable\": true,\n                \"inFixedAmount\": false,\n                \"purchasePrice\": 0\n            },\n            \"scheduleLines\": [\n                {\n                    \"date\": \"0101\"\n                }\n            ]\n        },\n        {\n            \"id\": \"8c829255-5112-ed11-b5cf-0003ff2025fd\",\n            \"relationIdentifier\": \"APR03587\",\n            \"startDate\": \"02082022\",\n            \"endDate\": null,\n            \"nextPlanningDate\": \"01082024\",\n            \"day\": 1,\n            \"month\": null,\n            \"schedule\": \"Monthly\",\n            \"companyId\": \"2d6134eb-604b-4bd8-96ac-9beddd9049bd\",\n            \"companyName\": \"Dev load test\",\n            \"quantity\": 1,\n            \"durationMinutes\": null,\n            \"unitPrice\": 15,\n            \"totalAmount\": 15,\n            \"billable\": true,\n            \"inFixedAmount\": false,\n            \"assignment\": \"Doorgerekende kosten\",\n            \"priceListItemId\": \"9d29c5c9-ebc1-43af-a77e-bf45b0befe8b\",\n            \"priceListItem\": {\n                \"id\": \"9d29c5c9-ebc1-43af-a77e-bf45b0befe8b\",\n                \"code\": \"CB\",\n                \"name\": \"Codabox\",\n                \"type\": 1,\n                \"billable\": true,\n                \"inFixedAmount\": false,\n                \"purchasePrice\": 10\n            },\n            \"scheduleLines\": [\n                {\n                    \"date\": \"0101\"\n                },\n                {\n                    \"date\": \"0102\"\n                },\n                {\n                    \"date\": \"0103\"\n                },\n                {\n                    \"date\": \"0104\"\n                },\n                {\n                    \"date\": \"0105\"\n                },\n                {\n                    \"date\": \"0106\"\n                },\n                {\n                    \"date\": \"0107\"\n                },\n                {\n                    \"date\": \"0108\"\n                },\n                {\n                    \"date\": \"0109\"\n                },\n                {\n                    \"date\": \"0110\"\n                },\n                {\n                    \"date\": \"0111\"\n                },\n                {\n                    \"date\": \"0112\"\n                }\n            ]\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 1,\n    \"pageSize\": 50,\n    \"totalRowCount\": 2\n}"}],"_postman_id":"15931f8e-e33f-4b81-9d31-ab76ca617aa8"},{"name":"list planned registration schedules","id":"26ddd182-a44b-471c-9f21-efa17bc147d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedregistrationschedules","description":"<p>Retrieves the available schedules that can be used when creating a planned registration.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedregistrationschedules"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6394ba41-08a2-44ed-b03b-4628ea6ae793","name":"list planned registration schedules","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedregistrationschedules"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\r\n    {\r\n        \"id\": \"7a7cd6d9-3628-4cd1-8190-06ee2b6c6a93\",\r\n        \"name\": \"Quarterly - second month\"\r\n    },\r\n    {\r\n        \"id\": \"d2b186df-ff02-40b2-9188-58969ff07257\",\r\n        \"name\": \"Yearly\"\r\n    },\r\n    {\r\n        \"id\": \"b59c990c-d175-4162-ae99-5f2dde395019\",\r\n        \"name\": \"Bimonthly even months\"\r\n    },\r\n    {\r\n        \"id\": \"468066ec-a1bd-490d-b2bf-6fdffd70bcaa\",\r\n        \"name\": \"Bimonthly odd months\"\r\n    },\r\n    {\r\n        \"id\": \"997b9803-03fe-4529-873f-70198bb0ec5c\",\r\n        \"name\": \"Monthly\"\r\n    },\r\n    {\r\n        \"id\": \"0a646b7f-33f6-4948-ae50-976e443adb8a\",\r\n        \"name\": \"Quarterly - first month\"\r\n    },\r\n    {\r\n        \"id\": \"1f664e79-7de1-45f7-b4b8-fe214f2993ae\",\r\n        \"name\": \"Quarterly - third month\"\r\n    }\r\n]"}],"_postman_id":"26ddd182-a44b-471c-9f21-efa17bc147d4"},{"name":"create planned registration - cost","id":"40f09369-9946-4f2a-88d9-2db111b3cbc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations","description":"<p>This API call will create a cost planned registration for relation APR01900, where the registration will be created every year on the first of february.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the relation</td>\n</tr>\n<tr>\n<td>scheduleId</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the schedule. Depending on which schedule is passed, the registration will be created every day / month / quarter / year. Use the planned registration schedules endpoint to retrieve the available schedules.</td>\n</tr>\n<tr>\n<td>resourceIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the pricelist item</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the user for which the registration should be made. The registration can also be made without a specific user, so it will not be shown in rentability reports for that user. In that case, pass \"systemuser\" as userIdentifier</td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the planned registration should be created for a specific assignment, pass the code of the assignment template here.</td>\n</tr>\n<tr>\n<td>day</td>\n<td>number</td>\n<td></td>\n<td>The day on which the registration will be created. Depending on the schedule, this attribute is required. For example a monhtly registration on the first of the month, should have the day set to 1.</td>\n</tr>\n<tr>\n<td>month</td>\n<td>number</td>\n<td></td>\n<td>The month on which the registration will be created. Depending on the schedule, this attribute is required. For example a yearly registration on the first of June, should have the month set to 6.</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>X</td>\n<td>The start date of the planned registration. After this date, the planned registration will be active and registrations will be created on the scheduled date. Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>string</td>\n<td>X</td>\n<td>The quantity of the registration. This is a cost registration, so if set to 2, a registration with the quantity of 2 will be created.</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td>X</td>\n<td>The invoice remark</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td>X</td>\n<td>The internal remark</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedRegistrations"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f48f65df-2b9b-49d3-a29f-1a66728a63c8","name":"create planned registration - cost","originalRequest":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"relationIdentifier\": \"APR01900\",\r\n    \"scheduleId\": \"d2b186df-ff02-40b2-9188-58969ff07257\",\r\n    \"resourceIdentifier\": \"512b48b7-794a-445c-856e-e7087efee504\",\r\n    \"userIdentifier\": \"systemuser\",\r\n    \"assignmentCode\": \"SA\",\r\n    \"day\": 1,\r\n    \"month\": 2,\r\n    \"startDate\": \"01012025\",\r\n    \"quantity\": 10,\r\n    \"remarkInvoice\": \"REM\",\r\n    \"remarkInternal\": \"IREM\"\r\n}"}],"_postman_id":"40f09369-9946-4f2a-88d9-2db111b3cbc4"},{"name":"update planned registration - cost","id":"1464cf08-70d4-45f5-9375-77d4a214045e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations/{plannedRegistrationId}","description":"<p>This API call will update a cost planned registration.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the relation</td>\n</tr>\n<tr>\n<td>scheduleId</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the schedule. Depending on which schedule is passed, the registration will be created every day / month / quarter / year. Use the planned registration schedules endpoint to retrieve the available schedules.</td>\n</tr>\n<tr>\n<td>resourceIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the pricelist item</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the user for which the registration should be made. The registration can also be made without a specific user, so it will not be shown in rentability reports for that user. In that case, pass \"systemuser\" as userIdentifier</td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the planned registration should be created for a specific assignment, pass the code of the assignment template here.</td>\n</tr>\n<tr>\n<td>day</td>\n<td>number</td>\n<td></td>\n<td>The day on which the registration will be created. Depending on the schedule, this attribute is required. For example a monhtly registration on the first of the month, should have the day set to 1.</td>\n</tr>\n<tr>\n<td>month</td>\n<td>number</td>\n<td></td>\n<td>The month on which the registration will be created. Depending on the schedule, this attribute is required. For example a yearly registration on the first of June, should have the month set to 6.</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>X</td>\n<td>The start date of the planned registration. After this date, the planned registration will be active and registrations will be created on the scheduled date. Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>string</td>\n<td>X</td>\n<td>The quantity of the registration. This is a cost registration, so if set to 2, a registration with the quantity of 2 will be created.</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td>X</td>\n<td>The invoice remark</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td>X</td>\n<td>The internal remark</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedRegistrations","{plannedRegistrationId}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ba69d26f-26f2-45cf-8c22-db6d0801fc09","name":"update planned registration - cost","originalRequest":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations/{plannedRegistrationId}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"relationIdentifier\": \"APR01900\",\r\n    \"scheduleId\": \"d2b186df-ff02-40b2-9188-58969ff07257\",\r\n    \"resourceIdentifier\": \"512b48b7-794a-445c-856e-e7087efee504\",\r\n    \"userIdentifier\": \"systemuser\",\r\n    \"assignmentCode\": \"SA\",\r\n    \"day\": 5,\r\n    \"month\": 2,\r\n    \"startDate\": \"01012025\",\r\n    \"quantity\": 10,\r\n    \"remarkInvoice\": \"REM\",\r\n    \"remarkInternal\": \"IREM\"\r\n}"}],"_postman_id":"1464cf08-70d4-45f5-9375-77d4a214045e"},{"name":"create planned registration - time","id":"1c27eae8-dfb5-4582-8ab4-10fe8b41b89d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations","description":"<p>This API call will create a time planned registration for relation APR01900, where the registration will be created every year on the first of february.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the relation</td>\n</tr>\n<tr>\n<td>scheduleId</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the schedule. Depending on which schedule is passed, the registration will be created every day / month / quarter / year. Use the planned registration schedules endpoint to retrieve the available schedules.</td>\n</tr>\n<tr>\n<td>resourceIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the pricelist item</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the user for which the registration should be made. The registration can also be made without a specific user, so it will not be shown in rentability reports for that user. In that case, pass \"systemuser\" as userIdentifier</td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the planned registration should be created for a specific assignment, pass the code of the assignment template here.</td>\n</tr>\n<tr>\n<td>day</td>\n<td>number</td>\n<td></td>\n<td>The day on which the registration will be created. Depending on the schedule, this attribute is required. For example a monhtly registration on the first of the month, should have the day set to 1.</td>\n</tr>\n<tr>\n<td>month</td>\n<td>number</td>\n<td></td>\n<td>The month on which the registration will be created. Depending on the schedule, this attribute is required. For example a yearly registration on the first of June, should have the month set to 6.</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>X</td>\n<td>The start date of the planned registration. After this date, the planned registration will be active and registrations will be created on the scheduled date. Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>durationMinutes</td>\n<td>string</td>\n<td>X</td>\n<td>The duration of the registration. This is a time registration, so if set to \"60\" (in string), a registration of 1 hour will be created.</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td>X</td>\n<td>The invoice remark</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td>X</td>\n<td>The internal remark</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedRegistrations"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"01c8f8e7-d8a0-49a1-b178-8e52220c408d","name":"create planned registration - time","originalRequest":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"relationIdentifier\": \"APR01900\",\r\n    \"scheduleId\": \"d2b186df-ff02-40b2-9188-58969ff07257\",\r\n    \"resourceIdentifier\": \"ACTION\",\r\n    \"userIdentifier\": \"systemuser\",\r\n    \"assignmentCode\": \"SA\",\r\n    \"day\": 1,\r\n    \"month\": 2,\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"durationMinutes\": \"160\",\r\n    \"remarkInvoice\": \"REM\",\r\n    \"remarkInternal\": \"IREM\"\r\n}"}],"_postman_id":"1c27eae8-dfb5-4582-8ab4-10fe8b41b89d"},{"name":"update planned registration - time","id":"9c569229-7943-4093-81b9-6b4c5757da3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations/{plannedRegistrationId}","description":"<p>This API call will update a time planned registration.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the relation</td>\n</tr>\n<tr>\n<td>scheduleId</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the schedule. Depending on which schedule is passed, the registration will be created every day / month / quarter / year. Use the planned registration schedules endpoint to retrieve the available schedules.</td>\n</tr>\n<tr>\n<td>resourceIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the pricelist item</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td>The identifier of the user for which the registration should be made. The registration can also be made without a specific user, so it will not be shown in rentability reports for that user. In that case, pass \"systemuser\" as userIdentifier</td>\n</tr>\n<tr>\n<td>assignmentCode</td>\n<td>string</td>\n<td></td>\n<td>If the planned registration should be created for a specific assignment, pass the code of the assignment template here.</td>\n</tr>\n<tr>\n<td>day</td>\n<td>number</td>\n<td></td>\n<td>The day on which the registration will be created. Depending on the schedule, this attribute is required. For example a monhtly registration on the first of the month, should have the day set to 1.</td>\n</tr>\n<tr>\n<td>month</td>\n<td>number</td>\n<td></td>\n<td>The month on which the registration will be created. Depending on the schedule, this attribute is required. For example a yearly registration on the first of June, should have the month set to 6.</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>X</td>\n<td>The start date of the planned registration. After this date, the planned registration will be active and registrations will be created on the scheduled date. Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>durationMinutes</td>\n<td>string</td>\n<td>X</td>\n<td>The duration of the registration. This is a time registration, so if set to \"60\" (string), a registration of 1 hour will be created.</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td>X</td>\n<td>The invoice remark</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td>X</td>\n<td>The internal remark</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedRegistrations","{plannedRegistrationId}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b366b75d-ccbf-4d6d-ac58-a0b1f8c31c07","name":"update planned registration - time","originalRequest":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations/{plannedRegistrationId}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"relationIdentifier\": \"APR01900\",\r\n    \"scheduleId\": \"d2b186df-ff02-40b2-9188-58969ff07257\",\r\n    \"resourceIdentifier\": \"512b48b7-794a-445c-856e-e7087efee504\",\r\n    \"userIdentifier\": \"systemuser\",\r\n    \"assignmentCode\": \"SA\",\r\n    \"day\": 5,\r\n    \"month\": 2,\r\n    \"startDate\": \"01012025\",\r\n    \"durationMinutes\": \"60\",\r\n    \"remarkInvoice\": \"REM\",\r\n    \"remarkInternal\": \"IREM\"\r\n}"}],"_postman_id":"9c569229-7943-4093-81b9-6b4c5757da3e"},{"name":"delete planned registration","id":"7c589124-e8a9-4411-a54f-e1578a174001","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations/{plannedRegistrationId}","description":"<p>This API call will delete a planned registration.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","plannedRegistrations","{plannedRegistrationId}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0d91f991-30bb-46f2-9f31-3f8a0a0d5d82","name":"delete planned registration","originalRequest":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/registrations/plannedRegistrations/{plannedRegistrationId}"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"7c589124-e8a9-4411-a54f-e1578a174001"}],"id":"2867f80c-ddc6-456c-abb0-d67413c24aa0","description":"<p>Planned registrations are recurring registrations that are created automatically on a set date, depending on the configured schedule.</p>\n","_postman_id":"2867f80c-ddc6-456c-abb0-d67413c24aa0","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"get single registration","id":"6270f588-9ca3-4e04-a248-b593a2570a25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/{{id}}","description":"<p>Required scope: <strong>registrations.read.</strong> To see the amount of a registration, the <strong>invoices.read</strong> scope is required.</p>\n<p>Returns a single registration that matches the ID with the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The identifier of the registration</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>The unique identifier (APR-code) of the relation</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>The e-mail address of the user</td>\n</tr>\n<tr>\n<td>resourceType</td>\n<td>number</td>\n<td>Work = 0  <br />Cost = 1  <br />Travel = 2  <br />Absence = 3  <br />Recuperation = 4</td>\n</tr>\n<tr>\n<td>registrationDate</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>creationDate</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td>Code of the pricelist item</td>\n</tr>\n<tr>\n<td>priceListItemIdentifier</td>\n<td>string</td>\n<td>ID of the pricelist item</td>\n</tr>\n<tr>\n<td>timeFrom</td>\n<td>string</td>\n<td>Only available for time registrations. Format: hh:mm</td>\n</tr>\n<tr>\n<td>tiimeTo</td>\n<td>string</td>\n<td>Only available for time registrations. Format: hh:mm</td>\n</tr>\n<tr>\n<td>duration</td>\n<td>number</td>\n<td>Only available for time registrations. The duration in minutes.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>number</td>\n<td>Only available for cost registrations.</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration is billable and thus invoiced to the customer.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td>If true this registration is included in the fixed amount (forfait) of the relation.</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td>Internal remark (not exposed to customer)</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td>Invoice remark (exposed to customer)</td>\n</tr>\n<tr>\n<td>invoiced</td>\n<td>boolean</td>\n<td>If true the registration is linked to a finalized invoice.</td>\n</tr>\n<tr>\n<td>invoiceDate</td>\n<td>string</td>\n<td>The date of the invoice</td>\n</tr>\n<tr>\n<td>invoiceNumber</td>\n<td>string</td>\n<td>The invoice number</td>\n</tr>\n<tr>\n<td>originalUnitPrice</td>\n<td>decimal</td>\n<td>The original unit price of the registration. Required scope: <strong>invoices.read</strong></td>\n</tr>\n<tr>\n<td>invoicedUnitPrice</td>\n<td></td>\n<td>The invoiced unit price of the registration (could have been changed during invoicing process). Required scope: invoices.read</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>The total amount of the registration that will be invoiced. Required scope: <strong>invoices.read</strong></td>\n</tr>\n<tr>\n<td>invoiceId</td>\n<td>string</td>\n<td>The corresponding invoice ID if this registration was invoiced</td>\n</tr>\n<tr>\n<td>invoiceLineId</td>\n<td>string</td>\n<td>The corresponding invoice line ID if this registration was invoiced</td>\n</tr>\n<tr>\n<td>internalPrice</td>\n<td>decimal</td>\n<td>The internal price of the registration. For a cost registration, this will be the purchase price of the price list item. For a time registration, this will be the internal price of the employee.</td>\n</tr>\n<tr>\n<td>isFixedPrice</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration has a fixed price (vast tarief).</td>\n</tr>\n<tr>\n<td>neverInvoice</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration was marked as 'never invoice this registration'.</td>\n</tr>\n<tr>\n<td>neverInvoiceModifiedDate</td>\n<td>string</td>\n<td>The date when the 'never invoice this registration' property was last set</td>\n</tr>\n<tr>\n<td>isRemoved</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration was removed.</td>\n</tr>\n<tr>\n<td>plannedTaskId</td>\n<td>string</td>\n<td>The ID of the task if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>plannedTaskName</td>\n<td>string</td>\n<td>The name of the task if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>plannedTaskTemplateId</td>\n<td>string</td>\n<td>The id of the task template if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>mainTaskTemplateId</td>\n<td>string</td>\n<td>The id of the main/parent task template if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>mainTaskName</td>\n<td>string</td>\n<td>The name of the main/parent task if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>referenceYear</td>\n<td>number</td>\n<td>The reference year of the registration</td>\n</tr>\n<tr>\n<td>priceProfileId</td>\n<td>string</td>\n<td>The ID of the price profile linked to this registration</td>\n</tr>\n<tr>\n<td>priceTableId</td>\n<td>string</td>\n<td>The ID of the pricetable linked to this registration</td>\n</tr>\n<tr>\n<td>assignmentName</td>\n<td>string</td>\n<td>The name of the assignment if this registration was made on a specific assignment</td>\n</tr>\n<tr>\n<td>assignmentTemplateName</td>\n<td>string</td>\n<td>The name of the assignment template, can be different if the name of the assignment was changed for this specific relation</td>\n</tr>\n<tr>\n<td>assignmentId</td>\n<td>string</td>\n<td>The ID of the assignment</td>\n</tr>\n<tr>\n<td>assignmentTemplateId</td>\n<td>string</td>\n<td>The ID of the assignment template</td>\n</tr>\n<tr>\n<td>invoiceStatus</td>\n<td>number</td>\n<td>Never Invoice = -1  <br />Not invoiced = 0  <br />Draft Invoice = 1  <br />Invoiced = 2  <br />Locked Draft Invoice = 3  <br />Written Off Internally = 4</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"49a4303f-88e7-4d30-960a-5ce2b437c5d2","name":"get single registration","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3B6D1850-A2C4-4380-132F-08DE05621237\",\n    \"relationIdentifier\": \"APR01826\",\n    \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n    \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n    \"resourceType\": 0,\n    \"registrationDate\": \"08102025\",\n    \"creationDate\": \"08102025\",\n    \"priceListItemCode\": \"100\",\n    \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n    \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n    \"timeFrom\": \"11:00\",\n    \"timeTo\": \"14:00\",\n    \"duration\": 180,\n    \"invoicedDuration\": 180,\n    \"quantity\": null,\n    \"invoicedQuantity\": null,\n    \"billable\": true,\n    \"inFixedAmount\": null,\n    \"remarkInternal\": null,\n    \"remarkInvoice\": null,\n    \"invoiced\": false,\n    \"invoiceDate\": null,\n    \"invoiceNumber\": null,\n    \"invoiceStatus\": 2,\n    \"invoiceId\": null,\n    \"invoiceLineId\": null,\n    \"originalUnitPrice\": 300.00000,\n    \"unitPrice\": 300.00000,\n    \"invoicedUnitPrice\": 300.00000,\n    \"amount\": 900.00000,\n    \"internalPrice\": 0.00000,\n    \"isFixedPrice\": false,\n    \"neverInvoice\": false,\n    \"neverInvoiceModifiedDate\": null,\n    \"isRemoved\": false,\n    \"plannedTaskId\": null,\n    \"plannedTaskName\": null,\n    \"plannedTaskTemplateId\": null,\n    \"mainTaskTemplateId\": null,\n    \"mainTaskName\": null,\n    \"referenceYear\": null,\n    \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n    \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n    \"assignmentName\": null,\n    \"assignmentTemplateName\": null,\n    \"assignmentId\": null,\n    \"assignmentTemplateId\": null\n}"}],"_postman_id":"6270f588-9ca3-4e04-a248-b593a2570a25"},{"name":"list registrations","id":"29123a16-5e2d-430b-9528-0969f85a11e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations?page=0&pageSize=100&lastSyncTime=01012020&relationIdentifier=APR00001&userIdentifier=user@office.com&resourceType=0&priceListItemCode=WRK&invoiced=false&createDateFrom=&createDateUntil=&registrationDateFrom=&registrationDateUntil=&invoiceDateFrom=&invoiceDateUntil=&includeRemoved=false","description":"<p>Required scope: <strong>registrations.read.</strong> To see the amount of a registration, the <strong>invoices.read</strong> scope is required.</p>\n<p>Returns a list of registrations with the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The identifier of the registration</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>The unique identifier (APR-code) of the relation</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>The e-mail address of the user</td>\n</tr>\n<tr>\n<td>resourceType</td>\n<td>number</td>\n<td>Work = 0  <br />Cost = 1  <br />Travel = 2  <br />Absence = 3  <br />Recuperation = 4</td>\n</tr>\n<tr>\n<td>registrationDate</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>creationDate</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td>Code of the pricelist item</td>\n</tr>\n<tr>\n<td>priceListItemIdentifier</td>\n<td>string</td>\n<td>ID of the pricelist item</td>\n</tr>\n<tr>\n<td>timeFrom</td>\n<td>string</td>\n<td>Only available for time registrations. Format: hh:mm</td>\n</tr>\n<tr>\n<td>timeTo</td>\n<td>string</td>\n<td>Only available for time registrations. Format: hh:mm</td>\n</tr>\n<tr>\n<td>duration</td>\n<td>number</td>\n<td>Only available for time registrations. The duration in minutes.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>number</td>\n<td>Only available for cost registrations.</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration is billable and thus invoiced to the customer.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td>If true this registration is included in the fixed amount (forfait) of the relation.</td>\n</tr>\n<tr>\n<td>remarkInternal</td>\n<td>string</td>\n<td>Internal remark (not exposed to customer)</td>\n</tr>\n<tr>\n<td>remarkInvoice</td>\n<td>string</td>\n<td>Invoice remark (exposed to customer)</td>\n</tr>\n<tr>\n<td>invoiced</td>\n<td>boolean</td>\n<td>If true the registration is linked to a finalized invoice.</td>\n</tr>\n<tr>\n<td>invoiceDate</td>\n<td>string</td>\n<td>The date of the invoice</td>\n</tr>\n<tr>\n<td>invoiceNumber</td>\n<td>string</td>\n<td>The invoice number</td>\n</tr>\n<tr>\n<td>originalUnitPrice</td>\n<td>decimal</td>\n<td>The original unit price of the registration. Required scope: <strong>invoices.read</strong></td>\n</tr>\n<tr>\n<td>invoicedUnitPrice</td>\n<td></td>\n<td>The invoiced unit price of the registration (could have been changed during invoicing process). Required scope: invoices.read</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>The total amount of the registration that will be invoiced. Required scope: <strong>invoices.read</strong></td>\n</tr>\n<tr>\n<td>invoiceId</td>\n<td>string</td>\n<td>The corresponding invoice ID if this registration was invoiced</td>\n</tr>\n<tr>\n<td>invoiceLineId</td>\n<td>string</td>\n<td>The corresponding invoice line ID if this registration was invoiced</td>\n</tr>\n<tr>\n<td>internalPrice</td>\n<td>decimal</td>\n<td>The internal price of the registration. For a cost registration, this will be the purchase price of the price list item. For a time registration, this will be the internal price of the employee.</td>\n</tr>\n<tr>\n<td>isFixedPrice</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration has a fixed price (vast tarief).</td>\n</tr>\n<tr>\n<td>neverInvoice</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration was marked as 'never invoice this registration'.</td>\n</tr>\n<tr>\n<td>neverInvoiceModifiedDate</td>\n<td>string</td>\n<td>The date when the 'never invoice this registration' property was last set</td>\n</tr>\n<tr>\n<td>isRemoved</td>\n<td>boolean</td>\n<td>Indicates whether or not the registration was removed.</td>\n</tr>\n<tr>\n<td>plannedTaskId</td>\n<td>string</td>\n<td>The ID of the task if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>plannedTaskName</td>\n<td>string</td>\n<td>The name of the task if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>plannedTaskTemplateId</td>\n<td>string</td>\n<td>The id of the task template if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>mainTaskTemplateId</td>\n<td>string</td>\n<td>The id of the main/parent task template if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>mainTaskName</td>\n<td>string</td>\n<td>The name of the main/parent task if the registration was linked to a task.</td>\n</tr>\n<tr>\n<td>referenceYear</td>\n<td>number</td>\n<td>The reference year of the registration</td>\n</tr>\n<tr>\n<td>invoiceStatus</td>\n<td>number</td>\n<td>Never Invoice = -1  <br />Not invoiced = 0  <br />Draft Invoice = 1  <br />Invoiced = 2  <br />Locked Draft Invoice = 3  <br />Written Off Internally = 4</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>Current page</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Number of results per page. Maximum 400</p>\n","type":"text/plain"},"key":"pageSize","value":"100"},{"description":{"content":"<p>If passed only registrations added or modified after this date will be returned. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"lastSyncTime","value":"01012020"},{"description":{"content":"<p>If passed only registrations for this relation will be returned</p>\n","type":"text/plain"},"key":"relationIdentifier","value":"APR00001"},{"description":{"content":"<p>If passed only registrations created for this user will be returned</p>\n","type":"text/plain"},"key":"userIdentifier","value":"user@office.com"},{"description":{"content":"<p>If passed only registrations of this specific type will be returned.\nTime = 0\nCost = 1\nTravel = 2\nAbsence = 3\nRecuperation = 4</p>\n","type":"text/plain"},"key":"resourceType","value":"0"},{"description":{"content":"<p>If passed only registrations made for this pricelist item will be returned</p>\n","type":"text/plain"},"key":"priceListItemCode","value":"WRK"},{"description":{"content":"<p>If true only invoiced registrations will be returned. If false only not-invoiced registrations will be returned. Leave empty to return all.</p>\n","type":"text/plain"},"key":"invoiced","value":"false"},{"description":{"content":"<p>Can be used to filter registrations based on create date (can be different from registration date). Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"createDateFrom","value":""},{"description":{"content":"<p>Can be used to filter registrations based on create date (can be different from registration date). Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"createDateUntil","value":""},{"description":{"content":"<p>Can be used to filter registrations based on registration date. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"registrationDateFrom","value":""},{"description":{"content":"<p>Can be used to filter registrations based on registration date. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"registrationDateUntil","value":""},{"description":{"content":"<p>Can be used to filter registrations based on invoice date. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"invoiceDateFrom","value":""},{"description":{"content":"<p>Can be used to filter registrations based on invoice date. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"invoiceDateUntil","value":""},{"description":{"content":"<p>Include removed registrations</p>\n","type":"text/plain"},"key":"includeRemoved","value":"false"}],"variable":[]}},"response":[{"id":"52a2c2b3-1299-4d86-baa5-41ccfed4de0f","name":"list registrations","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"BFD98CC3-2C18-4B69-AFF6-08DE07259B39\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"746CF8CF-B068-459D-AFF3-08DE07259B39\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"409435C4-851B-49F9-AFF2-08DE07259B39\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"635FDDEB-9E54-461C-AFF1-08DE07259B39\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"8B2CAC33-BD97-45BD-AFF0-08DE07259B39\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"6DC48F38-1904-4CAB-AFEF-08DE07259B39\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"085FD5C4-6873-47F9-AFE6-08DE07259B39\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"F41390AF-3776-485C-AFE5-08DE07259B39\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"D1E2B9B3-E73C-4DAF-AFE2-08DE07259B39\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"492BA258-5E46-4D03-AFE1-08DE07259B39\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"18592B1A-8600-46AA-AFE0-08DE07259B39\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"A5B9BFDB-E956-45A1-AFDF-08DE07259B39\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"A1E24392-F2F7-4573-AFDE-08DE07259B39\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"A977FF91-8733-4F9A-AFD5-08DE07259B39\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"D092E1A9-AC60-49EE-F6DE-08DE06870861\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"CD5B294B-8772-491F-F6DB-08DE06870861\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"AC940629-AF6F-4198-F6DA-08DE06870861\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"4FFD8B57-33F2-4A20-F6D9-08DE06870861\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"FCBA631D-5433-4FB7-F6D8-08DE06870861\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"38A3686C-775F-4162-F6D7-08DE06870861\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"52705EF4-64A8-41D8-F6CE-08DE06870861\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"7AC0F5FD-1440-4FAF-FEC5-08DE06D79203\",\n            \"relationIdentifier\": \"APR00068\",\n            \"userId\": \"1f8de372-3df0-4e16-9f98-80bdcd4294db\",\n            \"userIdentifier\": \"synetonpulse+dev+integration@gmail.com\",\n            \"resourceType\": 1,\n            \"registrationDate\": \"09102025\",\n            \"creationDate\": \"09102025\",\n            \"priceListItemCode\": null,\n            \"priceListItemIdentifier\": \"512b48b7-794a-445c-856e-e7087efee504\",\n            \"priceListItemCategoryIdentifier\": \"512b48b7-794a-445c-856e-e7087efee504\",\n            \"timeFrom\": null,\n            \"timeTo\": null,\n            \"duration\": null,\n            \"invoicedDuration\": null,\n            \"quantity\": 1,\n            \"invoicedQuantity\": 1,\n            \"billable\": true,\n            \"inFixedAmount\": false,\n            \"remarkInternal\": \"\",\n            \"remarkInvoice\": \"\",\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 10.00000,\n            \"unitPrice\": 10.00000,\n            \"invoicedUnitPrice\": 10.00000,\n            \"amount\": 10.00000,\n            \"internalPrice\": 10.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"392A8F66-7FD5-43E3-F6CD-08DE06870861\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"A1C4215B-59CA-4D4F-F6CA-08DE06870861\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"D984965B-6D80-4646-F6C9-08DE06870861\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"5D1E693F-787C-4D1C-F6C8-08DE06870861\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"4EF91442-2C36-4761-F6C7-08DE06870861\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"E80BBBD0-BF9F-4958-F6C6-08DE06870861\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"91A41538-375B-4962-F6BD-08DE06870861\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"F8939A8E-C8C8-49BB-5450-08DE06440105\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"1C534120-9809-4369-544D-08DE06440105\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"2BAD7F39-8586-40F0-544C-08DE06440105\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"9DD69EA4-66D9-485D-544B-08DE06440105\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"7463FC7F-383A-4034-544A-08DE06440105\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"E023DFC1-C96F-4619-5449-08DE06440105\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"21B6B3C4-F2B5-4857-5440-08DE06440105\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"0A0FCCB7-5FFE-454E-543F-08DE06440105\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"88B1ED87-B69A-4DE6-543C-08DE06440105\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"93D12F73-7E0F-4526-543B-08DE06440105\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"649A9814-EC22-494D-543A-08DE06440105\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"804D2803-F77E-408F-5439-08DE06440105\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"EBFD49B6-63C0-4CDD-5438-08DE06440105\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"F9BB3AA2-1A92-4FCD-542F-08DE06440105\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"3A11D7BC-9540-4A35-133F-08DE05621237\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"ec2211a4-8c9b-4420-881d-e5d0f1ee8516\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+relation+only@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 35.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"33455533-6E5F-4343-133C-08DE05621237\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": false,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"F56AD749-E5F7-44EE-133B-08DE05621237\",\n            \"relationIdentifier\": \"APR00947\",\n            \"userId\": \"01bd1839-fbdc-4644-8fcb-a0c722921d6c\",\n            \"userIdentifier\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 50.00000,\n            \"unitPrice\": 50.00000,\n            \"invoicedUnitPrice\": 50.00000,\n            \"amount\": 150.00000,\n            \"internalPrice\": 50.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"C0628D59-C0C6-48D5-133A-08DE05621237\",\n            \"relationIdentifier\": \"APR00238\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"5E421C82-2F3E-417B-1339-08DE05621237\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"API001\",\n            \"priceListItemIdentifier\": \"4731fb56-569b-48e1-1b69-08dd65f1e372\",\n            \"priceListItemCategoryIdentifier\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 48.00000,\n            \"unitPrice\": 48.00000,\n            \"invoicedUnitPrice\": 48.00000,\n            \"amount\": 144.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"EA0FD07D-32CC-499E-1338-08DE05621237\",\n            \"relationIdentifier\": \"APR00172\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        },\n        {\n            \"id\": \"3B6D1850-A2C4-4380-132F-08DE05621237\",\n            \"relationIdentifier\": \"APR01826\",\n            \"userId\": \"0518eaac-62b4-430e-b748-ba34c8cbd6c1\",\n            \"userIdentifier\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"resourceType\": 0,\n            \"registrationDate\": \"08102025\",\n            \"creationDate\": \"08102025\",\n            \"priceListItemCode\": \"100\",\n            \"priceListItemIdentifier\": \"7a22bd6b-873c-45b8-a0ca-fa83ebff7adf\",\n            \"priceListItemCategoryIdentifier\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n            \"timeFrom\": \"11:00\",\n            \"timeTo\": \"14:00\",\n            \"duration\": 180,\n            \"invoicedDuration\": 180,\n            \"quantity\": null,\n            \"invoicedQuantity\": null,\n            \"billable\": true,\n            \"inFixedAmount\": null,\n            \"remarkInternal\": null,\n            \"remarkInvoice\": null,\n            \"invoiced\": false,\n            \"invoiceDate\": null,\n            \"invoiceNumber\": null,\n            \"invoiceId\": null,\n            \"invoiceLineId\": null,\n            \"originalUnitPrice\": 300.00000,\n            \"unitPrice\": 300.00000,\n            \"invoicedUnitPrice\": 300.00000,\n            \"amount\": 900.00000,\n            \"internalPrice\": 0.00000,\n            \"isFixedPrice\": false,\n            \"neverInvoice\": false,\n            \"neverInvoiceModifiedDate\": null,\n            \"isRemoved\": false,\n            \"plannedTaskId\": null,\n            \"plannedTaskName\": null,\n            \"plannedTaskTemplateId\": null,\n            \"mainTaskTemplateId\": null,\n            \"mainTaskName\": null,\n            \"referenceYear\": null,\n            \"priceProfileId\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n            \"priceTableId\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n            \"assignmentName\": null,\n            \"assignmentTemplateName\": null,\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 1750,\n    \"pageSize\": 50,\n    \"totalRowCount\": 87456\n}"}],"_postman_id":"29123a16-5e2d-430b-9528-0969f85a11e2"},{"name":"delete registration","id":"05b52a45-4368-4592-8ed1-3a5514145195","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/registrations/{{id}}","description":"<p>Required scope: <strong>registrations.write</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ad3479e0-4b59-4974-a037-34cc7875b5b0","name":"delete registration","originalRequest":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/registrations/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"05b52a45-4368-4592-8ed1-3a5514145195"},{"name":"list pricelist items","id":"bb2136f6-d97b-4e27-9fea-83cd33692385","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/pricelistitems?includeInactive=true","description":"<p>Required scope: <strong>registrations.read or pricelistitems.read</strong></p>\n<p>Returns a list of all available pricelist items, without hierarchy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>isRemoved</td>\n<td>boolean</td>\n<td>Indicates whether or not the pricelist item was removed and no longer available for new registrations</td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>number</td>\n<td>Work = 0  <br />Cost = 1  <br />Travel = 2  <br />Absence = 3  <br />Recuperation = 4</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td>If true, registrations created for this pricelist item are billable by default.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td>If true, registrations created for this pricelist item are included in the fixed amount (forfait) by default.</td>\n</tr>\n<tr>\n<td>purchasePrice</td>\n<td>decimal</td>\n<td>The purchase price of the item. Only available for items of type cost.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","pricelistitems"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>If true, pricelist items that were deleted will still be included in the result</p>\n","type":"text/plain"},"key":"includeInactive","value":"true"}],"variable":[]}},"response":[{"id":"e656cf9e-ea73-4bcb-89e9-45bcb18aab7a","name":"pricelistitems","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/registrations/pricelistitems?includeInactive=true","host":["{{apiEndpointUrl}}"],"path":["registrations","pricelistitems"],"query":[{"key":"includeInactive","value":"true","description":"If true, pricelist items that were deleted will still be included in the result"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"0a42c584-5104-4e28-9a73-854fadf01f95\",\n        \"code\": \"A200\",\n        \"name\": \"Afwezigheden\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"28c1d97e-424e-48c8-9cc2-f093e23b4857\",\n        \"name\": \"Afwezigheden: Educatief verlof\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"c00019e0-4463-414f-b8c4-b72110cb5f14\",\n        \"name\": \"Afwezigheden: Kort verzuim\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"841196c2-f73c-4f3b-a453-58d1d418c450\",\n        \"name\": \"Afwezigheden: Ouderschapsverlof\",\n        \"type\": 3,\n        \"billable\": false\n    },\n    {\n        \"id\": \"8de24d93-5b71-4119-87b4-d6146c99c837\",\n        \"name\": \"Afwezigheden: Vakantie\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"d01d769a-bc2e-43fa-ae78-abbb679e10fd\",\n        \"name\": \"Afwezigheden: Verlof om dwingende reden\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"c2255495-c11b-4125-8329-6da6f9e749aa\",\n        \"name\": \"Afwezigheden: Ziekte\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"72032bcd-ed87-476a-9e24-b1286131a4b3\",\n        \"name\": \"Afwezigheden: Zwangerschapsverlof\",\n        \"type\": 3,\n        \"billable\": false,\n        \"isRemoved\": false\n    },\n    {\n        \"id\": \"0c86991d-4193-4d63-a240-6fdf73341fff\",\n        \"code\": \"YK\",\n        \"name\": \"Yuki\",\n        \"type\": 1,\n        \"billable\": true,\n        \"isRemoved\": false\n    }\n]"}],"_postman_id":"bb2136f6-d97b-4e27-9fea-83cd33692385"},{"name":"list pricelist items (hierarchy)","id":"26e32cf8-b600-4f74-9f71-25052cc2fbe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/pricelistitems/tree","description":"<p>Required scope: <strong>registrations.read or pricelistitems.read</strong></p>\n<p>Returns a list of all available pricelist items, in a hierarchical structure where some pricelist items can have multiple sub-items.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>number</td>\n<td>Work = 0  <br />Cost = 1  <br />Travel = 2  <br />Absence = 3  <br />Recuperation = 4</td>\n</tr>\n<tr>\n<td>billable</td>\n<td>boolean</td>\n<td>If true, registrations created for this pricelist item are billable by default.</td>\n</tr>\n<tr>\n<td>inFixedAmount</td>\n<td>boolean</td>\n<td>If true, registrations created for this pricelist item are included in the fixed amount (forfait) by default.</td>\n</tr>\n<tr>\n<td>purchasePrice</td>\n<td>decimal</td>\n<td>The purchase price of the item. Only available for items of type cost.</td>\n</tr>\n<tr>\n<td>items</td>\n<td>list of pricelist items</td>\n<td>The list of pricelist items have the same attributes as above</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","pricelistitems","tree"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e631196-b37b-471e-a57a-91fa2442671f","name":"pricelistitems tree","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/pricelistitems/tree"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"630de493-6e79-43ba-8d89-f3991494a9e7\",\n        \"code\": \"A200\",\n        \"name\": \"Holiday\",\n        \"type\": 3,\n        \"billable\": false,\n        \"items\": [\n            {\n                \"id\": \"35aa9aba-916d-4894-b57a-375b887ff7d5\",\n                \"name\": \"Illness\",\n                \"type\": 3,\n                \"billable\": false\n            },\n            {\n                \"id\": \"98737a80-80b2-4597-95e2-3f66d11aa0b2\",\n                \"name\": \"Short holiday\",\n                \"type\": 3,\n                \"billable\": false\n            }\n        ]\n    },\n    {\n        \"id\": \"d369e4a4-8fdf-4c92-a259-a0928e36295a\",\n        \"code\": \"100\",\n        \"name\": \"Work\",\n        \"type\": 0,\n        \"billable\": true,\n        \"items\": []\n    }\n]"}],"_postman_id":"26e32cf8-b600-4f74-9f71-25052cc2fbe0"},{"name":"list pricetables","id":"fa8303ca-1851-468d-a6b6-c6e60ccbdc9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/pricetables","description":"<p>Required scope: <strong>pricelistitems.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["registrations","pricetables"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9a537eef-ded3-4d51-94c1-204147c799ed","name":"pricetables","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/registrations/pricetables"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"fb6bffd2-6470-4141-93fa-0b97f2e175e9\",\n        \"name\": \"Cheap\",\n        \"isDefault\": false,\n        \"profiles\": [\n            {\n                \"id\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n                \"name\": \"Senior\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 110.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n                \"name\": \"Default\",\n                \"isDefault\": true,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 120.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 40.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 55.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 20.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"2913bb0d-e84c-486b-bfcb-74027b011f87\",\n                \"name\": \"Bedrijfsleider\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 31.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"d77b51ef-660e-4b38-bd42-7e9dfc6d01b1\",\n                \"name\": \"Junior\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 90.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0a61ba99-b2d7-40cf-a31d-8d270f3645ba\",\n                \"name\": \"Vennoot\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 145.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"7d3a2c72-25c1-4c06-a4b2-baeb25409d12\",\n                \"name\": \"Test\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 120.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 40.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 20.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            }\n        ]\n    },\n    {\n        \"id\": \"61c0437a-3319-479c-aa4e-2480cfa6fdef\",\n        \"name\": \"Default\",\n        \"isDefault\": true,\n        \"profiles\": [\n            {\n                \"id\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n                \"name\": \"Senior\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 110.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n                \"name\": \"Default\",\n                \"isDefault\": true,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 120.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 40.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 55.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 20.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"2913bb0d-e84c-486b-bfcb-74027b011f87\",\n                \"name\": \"Bedrijfsleider\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 31.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"d77b51ef-660e-4b38-bd42-7e9dfc6d01b1\",\n                \"name\": \"Junior\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 90.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0a61ba99-b2d7-40cf-a31d-8d270f3645ba\",\n                \"name\": \"Vennoot\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 145.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"7d3a2c72-25c1-4c06-a4b2-baeb25409d12\",\n                \"name\": \"Test\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 120.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 40.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 20.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            }\n        ]\n    },\n    {\n        \"id\": \"c5697da6-b305-4f54-9950-2be05f81a3c3\",\n        \"name\": \"Expensive\",\n        \"isDefault\": false,\n        \"profiles\": [\n            {\n                \"id\": \"b0b4ae75-30c0-4c15-b32f-1dc6cadce458\",\n                \"name\": \"Senior\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 110.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"1819e507-df71-4b53-9e54-57743f4f3c6e\",\n                \"name\": \"Default\",\n                \"isDefault\": true,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 120.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 40.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 55.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 20.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"2913bb0d-e84c-486b-bfcb-74027b011f87\",\n                \"name\": \"Bedrijfsleider\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 31.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"d77b51ef-660e-4b38-bd42-7e9dfc6d01b1\",\n                \"name\": \"Junior\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 90.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0a61ba99-b2d7-40cf-a31d-8d270f3645ba\",\n                \"name\": \"Vennoot\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 145.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"7d3a2c72-25c1-4c06-a4b2-baeb25409d12\",\n                \"name\": \"Test\",\n                \"isDefault\": false,\n                \"pricelistItems\": [\n                    {\n                        \"id\": \"7a4caaf0-dc3a-eb11-8fed-0003ff20399c\",\n                        \"code\": \"BP-premium\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Branding pack (Premium)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"36867a25-114d-ec11-a3ee-0003ff2054d4\",\n                        \"code\": \"BP-basic\",\n                        \"amount\": 100.00000,\n                        \"name\": \"Branding pack (Basic)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"efde21b7-e025-ec11-b76a-0003ff20567c\",\n                        \"code\": \"PM\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Postman item\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c56b7d61-3846-ee11-a81c-000d3aa97f2f\",\n                        \"code\": \"\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Dupe\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cd87003d-429c-eb11-89ee-00155d0eeb6e\",\n                        \"code\": \"PC1\",\n                        \"amount\": 350.00000,\n                        \"name\": \"Silver pack\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2461a5cb-bbbe-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"BTWA\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5a629162-4fc4-eb11-ba5e-00155d0eeb6e\",\n                        \"code\": \"RC\",\n                        \"amount\": null,\n                        \"name\": \"Recup\",\n                        \"type\": 4\n                    },\n                    {\n                        \"id\": \"ae90cb5f-fc16-4312-9b92-07a8a4407b77\",\n                        \"code\": \"NF\",\n                        \"amount\": 75.00000,\n                        \"name\": \"No invoice\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"3ad1d73a-9265-4f35-abba-08dc9ff62a15\",\n                        \"code\": \"YUKI_Medium\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Yuki - Medium\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e26c9aa0-dcf2-41aa-abbc-08dc9ff62a15\",\n                        \"code\": \"YK\",\n                        \"amount\": 5.00000,\n                        \"name\": \"User\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"c97d8f6e-374d-44b8-abcf-08dc9ff62a15\",\n                        \"code\": \"YUKI_Minimal\",\n                        \"amount\": 7.00000,\n                        \"name\": \"Yuki - Minimal\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e5ae2fa4-fc76-4703-abd1-08dc9ff62a15\",\n                        \"code\": \"YK - LK\",\n                        \"amount\": 3.00000,\n                        \"name\": \"Yuki - Licentiekosten (custom mapping)\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9bf7c039-64c5-44a0-38df-08dd5a5781fe\",\n                        \"code\": \"CO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Customer Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"55983366-2929-4e0a-9a34-08dd5c9a8d90\",\n                        \"code\": \"PO\",\n                        \"amount\": 150.00000,\n                        \"name\": \"Prospect Only\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"cc3834fa-9f53-4fce-1b68-08dd65f1e372\",\n                        \"code\": \"API001\",\n                        \"amount\": 48.00000,\n                        \"name\": \"API - Time registration\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"b934c840-0c40-4f60-aad4-118262c2bc41\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"67dc08ae-b978-4aea-921b-1d9554cff58f\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of filing annual account\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"fbf294b1-a96a-4948-a54e-21f09e0bac35\",\n                        \"code\": \"BTWB\",\n                        \"amount\": 50.00000,\n                        \"name\": \"BTW Aangifte\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"ec175aa2-f5e0-48fc-9e4d-2825943ade0f\",\n                        \"code\": \"COMP\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Companyweb Opzoeking - en\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"09a6c685-af03-4dd8-bc02-2d37cd281f67\",\n                        \"code\": \"PB\",\n                        \"amount\": 10.00000,\n                        \"name\": \"PB\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"e9a06c8b-a357-4f1d-822e-361e42a481a1\",\n                        \"code\": \"1003\",\n                        \"amount\": 120.00000,\n                        \"name\": \"Fees\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"0096c226-60ed-40e2-8f15-41cd784e332e\",\n                        \"code\": \"IC\",\n                        \"amount\": 30.00000,\n                        \"name\": \"IC Kost\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"e61afd82-b420-4e4a-b2f9-610e0904aa39\",\n                        \"code\": \"Action\",\n                        \"amount\": 40.00000,\n                        \"name\": \"Action\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"86a470a3-5704-4f8e-91ac-6467a1ba3c40\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Enterprise counter costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9a5310eb-646c-4087-a202-6cb4975dca56\",\n                        \"code\": \"T-WERK\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Work\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"66cda1f8-8c44-4e38-8a7a-7139ae819959\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"d5775242-a91a-41cc-a008-765b2d8bdbaf\",\n                        \"code\": \"300\",\n                        \"amount\": 10.00000,\n                        \"name\": \"Taak\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"2ddfb535-701b-42a0-84d9-782a3378e66c\",\n                        \"code\": \"A200\",\n                        \"amount\": null,\n                        \"name\": \"Absences\",\n                        \"type\": 3\n                    },\n                    {\n                        \"id\": \"18d83f4e-6ac7-4328-b416-7b250ababb0a\",\n                        \"code\": \"100\",\n                        \"amount\": 50.00000,\n                        \"name\": \"Boekhouding\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"94a15d16-28a2-4cbb-9999-878282ed70b1\",\n                        \"code\": \"Sample\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Sample\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"8dc6cdbc-3e5d-4919-b6ec-9af1e284216b\",\n                        \"code\": \"PRD01\",\n                        \"amount\": 20.00000,\n                        \"name\": \"Product 1\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"9fe58264-dc2a-47ae-bcc1-b5042930a806\",\n                        \"code\": \"YK\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Yuki\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"64591d52-8249-4d46-8459-bdc459f3f9d9\",\n                        \"code\": null,\n                        \"amount\": 0.00000,\n                        \"name\": \"Other\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"096a98a7-4352-4e60-a496-cb6217617145\",\n                        \"code\": \"200\",\n                        \"amount\": 15.00000,\n                        \"name\": \"Facturen boeken\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"1450b164-7802-47a0-bcdf-d5b468a20991\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of lodging at the registry\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"afa68b15-d60b-4965-8a74-dce687ca496f\",\n                        \"code\": \"1\",\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs of publication in the Belgian Official Gazette\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"5d80f289-db72-4dac-8d82-e5b6df4202f4\",\n                        \"code\": \"New\",\n                        \"amount\": 60.00000,\n                        \"name\": \"New\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"512b48b7-794a-445c-856e-e7087efee504\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Costs\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"3ba06a1b-b174-48c2-9ccb-e8ab6b8645d1\",\n                        \"code\": \"CODE CM\",\n                        \"amount\": 12.00000,\n                        \"name\": \"Sample company web\",\n                        \"type\": 1\n                    },\n                    {\n                        \"id\": \"2765e07c-cc03-4d76-b9de-ee7a3f669985\",\n                        \"code\": \"BTWNF\",\n                        \"amount\": 60.00000,\n                        \"name\": \"BTW Aangifte - Niet factureerbaar\",\n                        \"type\": 0\n                    },\n                    {\n                        \"id\": \"c932ae5b-0267-4679-a26b-f2fef95bb2c1\",\n                        \"code\": null,\n                        \"amount\": 1.00000,\n                        \"name\": \"Km\",\n                        \"type\": 2\n                    },\n                    {\n                        \"id\": \"fc137b0c-c3c3-4498-87ec-f59fa18f810e\",\n                        \"code\": \"400\",\n                        \"amount\": 30.00000,\n                        \"name\": \"Met codes\",\n                        \"type\": 0\n                    }\n                ]\n            }\n        ]\n    }\n]"}],"_postman_id":"fa8303ca-1851-468d-a6b6-c6e60ccbdc9a"}],"id":"176ea897-4632-4fc1-b3e6-5b96a176477c","description":"<h4 id=\"resource-type\">Resource type</h4>\n<ul>\n<li>Work = 0</li>\n<li>Cost = 1</li>\n<li>Travel = 2</li>\n<li>Absence = 3</li>\n</ul>\n","_postman_id":"176ea897-4632-4fc1-b3e6-5b96a176477c","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Documents","item":[{"name":"list all documents","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript"}}],"id":"678d70b3-26ef-4b90-b69f-52178394edd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/documents?page&pageSize&relationIdentifier&createDateFrom&createDateUntil&documentDateFrom&documentDateUntil&documentType&signingStatus&tagNames&linkedToRelation","description":"<p>Required scope: <strong>documents.read</strong></p>\n<p>List all documents, based on the given query parameters. By default, documents will not be public on our API. Make sure they are marked as \"Public to API\" by the user.</p>\n<p>More information can be found here : <a href=\"https://adminpulse.zendesk.com/hc/articles/5434709791122\">https://adminpulse.zendesk.com/hc/articles/5434709791122</a></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["documents"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>Page number, defaults to 0 and starts at 0.</p>\n","type":"text/plain"},"key":"page","value":null},{"description":{"content":"<p>Number of results to return per page. Max 50</p>\n","type":"text/plain"},"key":"pageSize","value":null},{"description":{"content":"<p>Unique identifier of the relation</p>\n","type":"text/plain"},"key":"relationIdentifier","value":null},{"description":{"content":"<p>Documents created from. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"createDateFrom","value":null},{"description":{"content":"<p>Documents created until. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"createDateUntil","value":null},{"description":{"content":"<p>Document date from (based on the content of the document, this could differ from the creation date). Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"documentDateFrom","value":null},{"description":{"content":"<p>Document date from (based on the content of the document, this could differ from the creation date). Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"documentDateUntil","value":null},{"description":{"content":"<p>The type of the document</p>\n","type":"text/plain"},"key":"documentType","value":null},{"description":{"content":"<p>The signing status of the document (pending, signed, etc)</p>\n","type":"text/plain"},"key":"signingStatus","value":null},{"description":{"content":"<p>; delimited list of tags</p>\n","type":"text/plain"},"key":"tagNames","value":null},{"description":{"content":"<p>true/false. If true, the result set will only contain documents that are linked to 1 or more relations. If false, the result set will only contain documents not linked to any relations.</p>\n","type":"text/plain"},"key":"linkedToRelation","value":null}],"variable":[]}},"response":[{"id":"94031219-1764-4d44-9c2c-53670eaa1320","name":"documents","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/documents?page&pageSize&relationIdentifier&createDateFrom&createDateUntil&documentDateFrom&documentDateUntil&documentType&signingStatus&tagNames","host":["{{apiEndpointUrl}}"],"path":["documents"],"query":[{"key":"page","value":null,"description":"When using paged request, pass in page number."},{"key":"pageSize","value":null,"description":"Number of results to return per page."},{"key":"relationIdentifier","value":null,"description":"Unique identifier of the relation"},{"key":"createDateFrom","value":null,"description":"Documents created from"},{"key":"createDateUntil","value":null,"description":"Documents created until"},{"key":"documentDateFrom","value":null,"description":"Document date from (based on the content of the document, this could differ from the creation date)"},{"key":"documentDateUntil","value":null,"description":"Document date from (based on the content of the document, this could differ from the creation date)"},{"key":"documentType","value":null,"description":"The type of the document"},{"key":"signingStatus","value":null,"description":"The signingStatus of the document (Signature pending, signed, etc)"},{"key":"tagNames","value":null,"description":"; delimited list of tags"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n    \"results\": [\n        {\n            \"id\": \"4f492334-fdab-eb11-89ee-00155d0ee999\",\n            \"name\": \"AdminPulse-sample.docx\",\n            \"documentDate\": \"2021-05-03T10:49:16.962Z\",\n            \"documentType\": 13,\n            \"createDate\": \"2021-05-03T10:49:16.9620547Z\",\n            \"updateDate\": \"2021-05-03T11:02:23.1802061Z\",\n            \"signingStatus\": 1,\n            \"documentUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-99/other-documents/4f492334-fdab-eb11-89ee-00155d0eeb6e?sv=2018-03-28&sr=b&sig=01Tn1U3l9Vt47iItfY5pPhNaFsCZfND7%2BaGG1TPUp2c%3D&se=2021-09-22T08%3A25%3A59Z&sp=r&rsct=application%2Fvnd.openxmlformats-officedocument.wordprocessingml.document&rscd=attachment%3B filename%3D\\\"DO%2520NOT%2520DELETE%2520-%2520AdminPulse-invoice-template-fields%2520%2810%29.docx\\\"\",\n            \"mimeType\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\",\n            \"tags\": [\n                {\n                    \"name\": \"Permanent Dossier\"\n                }\n            ],\n            \"relationIdentifiers\": [\n                \"APR00575\"\n            ]\n        ],\n    \"currentPage\": 0,\n    \"pageCount\": 2,\n    \"pageSize\": 5,\n    \"totalRowCount\": 7\n    }\n]"}],"_postman_id":"678d70b3-26ef-4b90-b69f-52178394edd7"},{"name":"get document","id":"5f9b2e2b-44b7-427c-9773-045754210c33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/documents/{{id}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>createDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>documentDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updateDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>documentType</td>\n<td>number</td>\n<td>See list of document types above: <a href=\"https://developer.adminpulse.be/#7bd434ac-187c-4e9e-a1d5-ce7de0e4cb7b\">https://developer.adminpulse.be/#7bd434ac-187c-4e9e-a1d5-ce7de0e4cb7b</a></td>\n</tr>\n<tr>\n<td>signingStatus</td>\n<td>number</td>\n<td>Not signed = 1  <br />Signature needed = 2  <br />Signature revoked = 3  <br />Signature expired = 4  <br />Pending signature = 10  <br />Signature failed = 11  <br />Signature rejected= 12  <br />Signed = 20</td>\n</tr>\n<tr>\n<td>signingDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>mimeType</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array of tags. EAch tag has two attributes: id and name</td>\n<td>Tags linked to the document</td>\n</tr>\n<tr>\n<td>relationIdentifiers</td>\n<td>array of strings</td>\n<td>Relation identifiers linked to the document</td>\n</tr>\n<tr>\n<td>documentUrl</td>\n<td>string</td>\n<td>Can be used to download the document</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["documents","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f9b2e2b-44b7-427c-9773-045754210c33"},{"name":"list document tags","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript"}}],"id":"7ae4235f-a998-4277-87e2-eed59ee17240","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/documents/tags","description":"<p>Required scope: <strong>documents.read</strong></p>\n<p>The list of tags can be used to push documents to the correct folder.<br />More information about tag/label usage can be found here <a href=\"https://syneton.zendesk.com/hc/articles/360023788514\">https://syneton.zendesk.com/hc/articles/360023788514</a></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["documents","tags"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e191997-96be-48ba-8f32-dc5c0a906580","name":"documents/tags","originalRequest":{"method":"GET","header":[],"url":"https://api.adminpulse.be/documents/tags"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"name\": \"Akten\"\r\n    },\r\n    {\r\n        \"name\": \"Briefwisseling / advies\"\r\n    },\r\n    {\r\n        \"name\": \"BTW\"\r\n    }\r\n]"}],"_postman_id":"7ae4235f-a998-4277-87e2-eed59ee17240"},{"name":"list document tags (hierarchy)","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript"}}],"id":"9fc27106-dbe4-4b57-94a3-ae5e610a3846","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/documents/folders","description":"<p>Required scope: <strong>documents.read</strong></p>\n<p>The list of tags can be used to push documents to the correct folder.<br />More information about tag/label usage can be found here <a href=\"https://syneton.zendesk.com/hc/articles/360023788514\">https://syneton.zendesk.com/hc/articles/360023788514</a></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["documents","folders"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"50c8f619-dd85-46a8-a8b7-b97671ffcba7","name":"documents/folders","originalRequest":{"method":"GET","header":[],"url":"https://api.adminpulse.be/documents/tags"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"name\": \"Team\",\r\n        \"tagId\": \"364a426f-0509-4199-ae27-9349c0217f9b\",\r\n        \"children\": [\r\n            {\r\n                \"name\": \"Waasland\",\r\n                \"tagId\": \"71fda83f-8aef-4b29-884d-e20a2c37ff73\",\r\n                \"children\": [],\r\n                \"tagIds\": [\r\n                    \"364a426f-0509-4199-ae27-9349c0217f9b\",\r\n                    \"71fda83f-8aef-4b29-884d-e20a2c37ff73\"\r\n                ],\r\n                \"treeTagNames\": \"Team\\\\Waasland\\\\\"\r\n            },\r\n            {\r\n                \"name\": \"NoAccess\",\r\n                \"tagId\": \"184afd39-7313-eb11-8441-0003ff20453f\",\r\n                \"children\": [],\r\n                \"tagIds\": [\r\n                    \"364a426f-0509-4199-ae27-9349c0217f9b\",\r\n                    \"184afd39-7313-eb11-8441-0003ff20453f\"\r\n                ],\r\n                \"treeTagNames\": \"Team\\\\NoAccess\\\\\"\r\n            }\r\n        ],\r\n        \"tagIds\": [\r\n            \"364a426f-0509-4199-ae27-9349c0217f9b\"\r\n        ],\r\n        \"treeTagNames\": \"Team\\\\\"\r\n    },\r\n    {\r\n        \"name\": \"Jaarrekening\",\r\n        \"tagId\": \"0dae4054-a6bc-427d-a1b7-40c08a125c35\",\r\n        \"children\": [],\r\n        \"tagIds\": [\r\n            \"0dae4054-a6bc-427d-a1b7-40c08a125c35\"\r\n        ],\r\n        \"treeTagNames\": \"Jaarrekening\\\\\"\r\n    },\r\n    {\r\n        \"name\": \"BTW\",\r\n        \"tagId\": \"9f83bcdc-6ab6-4b75-96fb-f3b45c339f68\",\r\n        \"children\": [],\r\n        \"tagIds\": [\r\n            \"9f83bcdc-6ab6-4b75-96fb-f3b45c339f68\"\r\n        ],\r\n        \"treeTagNames\": \"BTW\\\\\"\r\n    }\r\n]"}],"_postman_id":"9fc27106-dbe4-4b57-94a3-ae5e610a3846"},{"name":"add document","event":[{"listen":"test","script":{"id":"b4887928-f48b-48f0-ac8b-7533d838002e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6257645c-f373-4083-9132-038ff61cc499","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null},{"key":"fileName","value":"rekening.pdf","type":"text"},{"key":"relationIdentifier","value":"APR00004","type":"text"},{"key":"tagNames","value":"BTW","type":"text"},{"key":"documentType","value":"-1","type":"text"},{"key":"signed","value":"true","description":"<p>optional - if set to true, the document will be marked as signed</p>\n","type":"text","uuid":"558746bf-22d7-44b4-a3e2-a255c5168073"}]},"url":"{{apiEndpointUrl}}/documents/add","description":"<p>Required scope: <strong>documents.write</strong></p>\n<p>Documents can be added and linked to a correct folder (using the correct tags), and linked to the correct relation (using the UniqueIdentifier of a relation)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>File or link to URL</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>fileName</td>\n<td>string</td>\n<td>Required if the file attribute is the actual file, not the URL of the file</td>\n<td></td>\n</tr>\n<tr>\n<td>tagNames</td>\n<td>string</td>\n<td></td>\n<td>; delimited string of tag names  <br />  <br />Note : In case the tag does not yet exists, it will be created automatically during <em>add</em> this call.</td>\n</tr>\n<tr>\n<td>documentDate</td>\n<td>string</td>\n<td></td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>creationDate</td>\n<td>string</td>\n<td></td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td></td>\n<td>; delimited string of relation identifiers</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td>string</td>\n<td></td>\n<td>If used, the document will be linked to given task.</td>\n</tr>\n<tr>\n<td>documentType</td>\n<td>number</td>\n<td></td>\n<td>If not passed or -1 is used, AdminPulse will make an attempt to recognize the document.  <br />  <br />In case <strong>no recognition is required</strong>, please send documentType <strong>13</strong> (other)</td>\n</tr>\n<tr>\n<td>recognizeQrCode</td>\n<td>bool</td>\n<td></td>\n<td>true or false. By default, documents that are passed with document type -1 will not be scanned for QR codes. Only set this parameter to true if you suspect or know that a QR code is present and should be recognized.</td>\n</tr>\n<tr>\n<td>signed</td>\n<td>bool</td>\n<td></td>\n<td>true or false. By default, we will try to detect a digital signature on the document if it is a PDF. You can also pass this parameter to mark the document as signed.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["documents","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6257645c-f373-4083-9132-038ff61cc499"}],"id":"7bd434ac-187c-4e9e-a1d5-ce7de0e4cb7b","description":"<h4 id=\"document-types\">Document types</h4>\n<ul>\n<li>Unknown = -1 (document recognition will be used for these documents)</li>\n<li>Registration list (adminpulse registration xlsx) = 1000,<br />  3 = CODA - CODA - CODA<br />  10 = eID - eID - eID<br />  11 = Opdrachtbrief - Lettre de mission - Assignment letter<br />  12 = Volmachtbrief - Lettre des mandat - Authorization letter<br />  13 = Overig - Autre - Other<br />  14 = Briefsjabloon - Modèle de lettre - Document template<br />  15 = Tijdelijk - Temporaire - Temporary<br />  16 = BTW - Ontvangstbewijs - TVA - Accusé de réception - VAT - Receipt<br />  17 = UBO (PDF uit register) - UBO (PDF du registre) - UBO (PDF from register)<br />  18 = eID Foto - Photo d'eID - eID Photo<br />  19 = Volmachtenlijst - Liste des mandats - Authorizations list<br />  20 = BTW - Intracom - Ontvangstbewijs - TVA - Relevé intracommunautaire - Accusé de réception - VAT - Intracom - Receipt<br />  21 = PB - Ontvangstbewijs (PDF) - IPP - Accusé de réception (PDF) - PIT receipt (PDF)<br />  22 = Vennootschapsbelasting (Biztax - ontvangstbewijs) - Impôt des sociétés (Biztax) - Corporate income tax (Biztax)<br />  23 = E-mail (import) - E-mail (import) - E-mail (import)<br />  24 = AWW - Document - AB - Document - AML - Document<br />  25 = AWW - Identificatie - AB - Identification - AML - Identification<br />  26 = AWW - Risicobeoordeling - AB - Analyse du risque - AML - Risk assessment<br />  27 = AWW - Begunstigden - AB - Bénéficiaire - AML - Beneficiary<br />  28 = BTW - Klantenlisting - Ontvangstbewijs - TVA - Liste des clients - Accusé de réception - VAT - Client listing - Receipt<br />  29 = Gegenereerd document - Document généré - Generated document<br />  30 = Jaarrekening (betaalbevestiging) - Compte annuel (confirmation de paiement) - Annual account (payment confirmation)<br />  31 = Jaarrekening - Compte annuel - Annual account<br />  32 = AWW - Lasthebbers - AB - Fiduciaires - AML Trustees<br />  33 = PB - Ontvangstbewijs (Excel) - IPP - Accusé de réception (Excel) - PIT receipt (Excel)<br />  34 = PB - Mandatenlijst incl. status - IPP - Liste des mandats avec état - PIT - Mandate list incl. status<br />  35 = Jaarrekening (betaalverzoek) - Compte annuel (demande de paiement) - Annual account (payment request)<br />  36 = KBO uittreksel - BCE - Extrait - CBE extract<br />  37 = PB - Aanslagbiljet - IPP - Avertissement-extrait de rôle - PIT - Income tax-Receipt<br />  38 = PB - Aangifte - IPP - Déclaration - PIT - Declaration<br />  39 = PB - Voorstel vereenvoudigde aangifte - IPP - Proposition de déclaration simplifiée - PIT - Simplified declaration<br />  40 = Inkomsten van buitenlandse oorsprong - Revenus d'origine étrangère - Foreign origin income<br />  41 = Vennootschapsbelasting (aangifte) - Impôt des sociétés (déclaration) - Corporate income tax (declaration)<br />  42 = Vennootschapsbelasting (aanslagbiljet) - Impôt des sociétés (avertissement-extrait de rôle) - Corporate income tax (return)<br />  43 = PB - Ontvangsbewijs - niet inwoner (PDF) - IPP - Accusé de réception - non-résidents (PDF) - PIT - Tax-on-Web non-resident<br />  44 = BTW - Rekeninguittreksel - TVA - Extrait de compte - VAT - Statement<br />  45 = Aandelenregister - Registre des actions - Share register<br />  46 = PB - Berekening - IPP - Calcul - PIT - Calculation<br />  47 = Rechtspersonenbelasting (aangifte) - Impôt des personnes morales - déclaration - Legal Person Income Tax (declaration)<br />  48 = Bedrijfsvoorheffing - Betalingsinstructies - Précompte professionel - Instructions de paiement - Withholding tax - Paymentrequest<br />  49 = Afschrijvingstabel - Tableau des amortissements - Depreciationtable<br />  50 = Verslag - Algemene vergadering - PV - Assemblée générale - Report - General meeting<br />  51 = BTW - 604B - Identificatie wijziging - TVA - 604B - Déclaration modificative d'une identification - VAT - 604B<br />  52 = Verslag - Van het bestuursorgaan - PV - De l’organe d’administratif - Report - Management<br />  53 = Jaarrekening - Intern - Compte annuel - Interne - Annual account - Internal<br />  54 = Oprichtingsakte - Acte constitutif - Deed of incorporation<br />  55 = BTW - 604A - Aanvraag identificatie - TVA - 604A - Demande d'identification - VAT - 604A<br />  56 = BTW - 604C - Stopzetting - TVA - 604C - Déclaration de cessation d'activité - VAT - 604C<br />  57 = Financieel plan - Plan financier - Financial plan<br />  58 = Lening - Aflossingstabel - Prêt - Tableau d’amortissement - Loan repayment table<br />  59 = Akte onroerende goederen - Acte de propriété immobilière - Deed of immovable property<br />  60 = Attest - Sociale lasten - Attestation - Cotisations sociales - Certificate of social charges<br />  61 = Attest - Kinderopvang - Attestation - Frais de garde d'enfant - Certificate childcare<br />  62 = MOSS - MOSS - MOSS<br />  63 = OSS - Ontvangstbewijs - OSS - Accusé de réception - OSS - Receipt<br />  64 = Gecoördineerde statuten - Statuts coordonnés - Coordinated statutes<br />  65 = PB - Aangifte bijlage - IPP - Annexe à la déclaration - PIT - Return Annex<br />  66 = Fiscaal attest dienstencheques - Attestation Fiscale Titres-Services - Service voucher<br />  67 = OSS - Registratie - OSS - Enregistrement - OSS - Registration<br />  68 = OSS - Aanvraag - OSS - Demande - OSS - Request<br />  69 = OSS - Status vd ontvangen betalingen - OSS - Statut des paiements reçus - OSS - Status of payments received<br />  70 = NBB - Buitenlandse rekeningen - NBB - Comptes à l'étranger - NBB - Foreign accounts<br />  71 = Belgisch staatsblad - Bijlage - Journal officiel - Annexe - Belgian official journal - Annex<br />  72 = Voorafbetalingen - Rekeninguittreksel - Versements anticipés - Extrait de compte - Prepayments - Account statement<br />  73 = BTW - Verwittiging op nul zetting - Avertissement de mise à zéro - Warning nullifying VAT account<br />  74 = BTW - Toekenning BTW-nummer - TVA – Attribution de numéro de TVA - VAT - Acquisition VAT number<br />  75 = PB - Voorafbetalingen - IPP - Versements anticipés - PIT - Prepayments<br />  76 = VAPZ - Betaalde premies - PCLI - Primes versées - VSPSS - Premiums paid<br />  77 = BTW - Verzending (intervat) - TVA - Consignation (intervat) - VAT - Consignment (Intervat)<br />  78 = PB - Vragenlijst - IPP - Questionnaire - PIT - Questionnaire<br />  79 = Formulier aangifte goed in het buitenland - Formulaire de déclaration de propriété à l'étranger - Property declaration form abroad<br />  80 = KvK - Uittreksel - KvK - Extrait - KvK - Extract<br />  81 = Offerte - Devis - Quotation<br />  82 = AWW - Risicoanalyse (uitgebreid) - AB - Analyse du risque (extensif) - AML - Risk assessment (extensive)<br />  83 = NBB - Aangifte rapport - BNB - PV de déclaration - NBB - Declaration report<br />  84 = Verwerkersovereenkomst - Accord de traitement - Processing agreement<br />  85 = Mandaat domiciliëring - Mandat de domiciliation - Mandate Direct debit<br />  86 = Aangiftebrief omzetbelasting - Lettre de déclaration Taxe chiffre d'affaires - Declaration letter turnover tax<br />  87 = VCF - VCF - VCF<br />  88 = Rekeninguittreksel - Extrait de compte - Account statement<br />  89 = Winst- en verliesrekening (Balans) - Compte de résultat (Bilan) - Profit and loss account (Balance)<br />  90 = Lijst ontbrekende facturen - Liste de factures manquantes - Missing Invoices<br />  91 = Jaarbundel - Ensembles d'années - Year bundle<br />  92 = AWW - Klantacceptatie - AB - Acceptation des clients - AML - Client Acceptance Questionnaire<br />  93 = Inventaris - Inventaire - Inventory<br />  94 = Provisie nota - Note de la Commission - Provision Note<br />  95 = Individuele rekening - Compte individuel - Individual Account<br />  96 = Aangifte omzetbelasting - Déclaration Taxe chiffre d'affaires - Declaration turnover tax<br />  97 = Testament - Testament - Testament<br />  98 = Huwelijksvoorwaarden - Conditions légales du mariage - Marriage conditions<br />  99 = Attest - Giften - Attestation - Donation - Certificate - Gift<br />  100 = BTW - Aangifte - TVA - Déclaration - VAT - Declaration<br />  101 = Patrimoniumtaks - Taxe patrimoniale - Wealth tax<br />  102 = BTW - Betalingsinformatie - TVA - Informations sur le paiement - VAT - Payment request<br />  103 = Aangifte inkomstenbelasting - Déclaration d'impôt sur le revenu - Income tax return<br />  104 = KYC - KYC - KYC<br />  105 = Onroerende goederen - Biens immeubles - Real estate<br />  106 = Voorlopige balans - Bilan prévisionnel - Preliminary balance<br />  107 = Verblijfsvergunning - Titre de séjour - Residency permit<br />  108 = Voertuig - Bestelbon - Véhicule - Bon de commande - Vehicle - Order form<br />  109 = Voertuig - Kentekenbewijs / gelijkvormigheidsattest - Véhicule - Certificat d'immatriculation - Vehicle - Registration certificate<br />  110 = Voertuig - Aanvraag inschrijving - Véhicule - Demande d'immatriculation - Vehicle - Registration request<br />  111 = Voertuig - Factuur - Véhicule - Facture - Vehicle - Invoice<br />  112 = Vennootschapsovereenkomst - Contrat de Société en Nom Collectif - General partnership agreement<br />  113 = Voertuig - DIV - Véhicule - DIV - Vehicle - DIV<br />  114 = Loonbrief - Fiche de salaire - Payslip<br />  115 = Loonbrief - Concept - Fiche de salaire - Concept - Payslip - Concept<br />  116 = Jaarprognose - Prévision annuelle - Annual forecast<br />  117 = Management rapport - Rapport de gestion - Management report<br />  119 = Verslag - Bijzondere algemene vergadering - PV - Assemblée générale spéciale - Report - Special general meeting<br />  120 = Verworpen uitgaven - Dépenses non admises - Rejected expenses<br />  121 = Vennootschapsbelasting (berekening) - Impôt des sociétés (calcul d'impôt) - Corporate income tax (calculation)<br />  122 = Vennootschapsbelasting (275U - investeringsaftrek) - Impôt des sociétés (275U - déduction pour investissement) - Corporate income tax (275U - investment deduction)<br />  123 = AWW - Afgeleid klantonderzoek - AB - Recherche dérivée sur les clients - AML - Derived client research<br />  124 = Zip - Zip - Zip<br />  125 = Digitale handtekening - bewijsdocument - Signature numérique - document de validation - Digital signing - Audit Trail<br />  126 = Investeringsfactuur - Facture des dépenses d'investissement. - Investment Invoice<br />  127 = BTW - Ontvangstbewijs - Jaarlijks - TVA - Accusé de réception - Annuelle - VAT - Receipt -Yearly<br />  128 = Organigram - Organigramme - Organization Chart<br />  129 = RCS - Uittreksel - RCS - Extrait - RCS - Extract<br />  130 = Verslag van de bedrijfsrevisor - Rapport du réviseur d'entreprise - Report of the company auditor<br />  131 = Verslag van de vereffening - Rapport de liquidation - Report of liquidation<br />  132 = BTW regularisatieopgave - Déclaration de régularisation de TVA - Vat regularization statement<br />  133 = Loonlast - Charges salariales - Wage costs<br />  134 = Sociale balans - Bilan social - Social balance sheet<br />  135 = Aangifte IRC - Déclaration IRC - Declaration IRC<br />  136 = WWFT - Herkomst van gelden - AB - Origine des fonds - AML - Origin of the funds<br />  137 = Loonaangifte - Loonaangifte - Wage taxreturn<br />  138 = CBAM - CBAM - CBAM<br />  139 = Liquiditeitstest - Test de liquidité - Liquidity test<br />  140 = BTW - Klantenlijst - Verzending - TVA - Liste des clients - Envoi - VAT - Client listing - Consignment<br />  141 = BTW - Intracom - Verzending - TVA - Relevé intracommunautaire - Envoi - VAT - Intracom - Consignment<br />  142 = Certificaat van aandelenuitgifte - Certificat d'émission d'actions - Share issue certificate<br />  143 = Akte - Acte - Deed<br />  251 = Paspoort - Passeport - Passport<br />  252 = Rijbewijs - Permis de conduire - Driver's license<br />  1000 = Registratie's (import) - Enregistrements (importation) - Registrations (import)<br />  2000 = PB - 204.3 Waardeverminderingen - IPP - 204.3 - PIT - 2043<br />  2001 = PB - 276J - Belastingkrediet - IPP - 276J - PIT - 276J<br />  2002 = PB - 276K - Meerwaarden op vaste activa - IPP - 276K - PIT - 276K<br />  2003 = PB - 276N - Vrijstelling meerwaarden op bedrijfsvoertuigen - IPP - 276N - PIT - 276N<br />  2004 = PB - 276P - Vrijstelling meerwaarden op binnenschepen - IPP - 276P - PIT - 276P<br />  2005 = PB - 276T - Vrijstelling bijkomend personeel - IPP - 276T - PIT - 276T<br />  2006 = PB - 276W - IPP - 276W - PIT - 276W<br />  2007 = PB - 328K - Degressief af te schrijven vaste activa - IPP - 328K - PIT - 328K<br />  2008 = PB - 328L - IPP - 328L - PIT - 328L<br />  2009 = PB - 276U - Investeringsaftrek - IPP - 276U - PIT - 276U<br />  2730 = Aangifte 273 - Déclaration 273 - Fgov 273<br />  2734 = Aangifte 273A - Déclaration 273A - Fgov 273A<br />  2735 = Aangifte 273S - Déclaration 273S - Fgov 273S<br />  5000 = Contract - Huurovereenkomst - Contrat - Contrat de bail - Contract - Rental agreement<br />  5001 = Contract - Plaatsbeschrijving - Contrat - État des lieux - Contract - Description of the location<br />  5002 = Contract - Lening - Contrat - Prêt - Contract - Loan<br />  5003 = Contract - Contrat - Contract<br />  6290 = BTW - Bijzondere aangifte 629 - TVA - Déclaration spéciale 629 - VAT - Fiche 629 receipt<br />  27400 = Fiche 274 (ontvangstbewijs) - Fiche 274 (accusé de réception) - Fiche 274<br />  28100 = Fiche 281.00 - Fiche 281.00 - Fiche 281.00<br />  28110 = Fiche 281.10 - Loonfiche - Fiche 281.10 - Fiche 281.10<br />  28111 = Fiche 281.11 - Pensioenfiche - Fiche 281.11 - Pensions - Fiche 281.11<br />  28112 = Fiche 281.12 - Vervangingsinkomsten - Fiche 281.12 - Revenus de remplacement (assurance) - Fiche 281.12<br />  28113 = Fiche 281.13 - Werkloosheidsuitkeringen - Fiche 281.13 - Allocations de chômage - Fiche 281.13<br />  28115 = Fiche 281.15 - Inkomsten uit pensioensparen - Fiche 281.15 - Revenus d’épargne pension - Fiche 281.15<br />  28116 = Fiche 281.16 - Vergoedingen wegens blijvende ongeschiktheid - Fiche 281.16 - Indemnités légales d’incapacité permanente - Fiche 281.16<br />  28117 = Fiche 281.17 - Werkloosheidsuitkeringen met bedrijfstoeslag - Fiche 281.17 - Allocations de chômage avec complément d’entreprise - Fiche 281.17<br />  28118 = Fiche 281.18 - Vervangingsinkomsten - Fiche 281.18 - Revenus de remplacement - Fiche 281.18<br />  28120 = Fiche 281.20 - Bezoldigingen van bedrijfsleiders - Fiche 281.20 - Rémunérations des dirigeants d’entreprise - Fiche 281.20<br />  28125 = Fiche 281.25 - Terugbetaalde sommen - Fiche 281.25 - Attestations de sommes remboursées - Fiche 281.25<br />  28127 = Fiche 281.27 - Verenigingsactiviteiten - Fiche 281.27 - Revenus des activités d’association - Fiche 281.27<br />  28130 = Fiche 281.30 - Subsidies, onderhoudsuitkeringen - Fiche 281.30 - Subsides, rentes alimentaires - Fiche 281.30<br />  28140 = Fiche 281.40 - Lijfrenten en tijdelijke renten - Fiche 281.40 - Rentes viagères ou temporaires - Fiche 281.40<br />  28145 = Fiche 281.45 - Auteursrechten - Fiche 281.45 - Droits d’auteur et droits voisins - Fiche 281.45<br />  28150 = Fiche 281.50 - Commissies - Fiche 281.50 - Commissions - Fiche 281.50<br />  28160 = Fiche 281.60 - Stortingen pensioensparen - Fiche 281.60 - Versement assurances-vie - Fiche 281.60<br />  28161 = Fiche 281.61 - Leningen - Fiche 281.61 - Emprunts : Amortissements-intérêts - Fiche 281.61<br />  28162 = Fiche 281.62 - Levensverzekeringen - Fiche 281.62 - Assurances-vie - Fiche 281.62<br />  28163 = Fiche 281.63 - Rechtsbijstandsverzekering - Fiche 281.63 - Protection juridique - Fiche 281.63<br />  28171 = Fiche 281.71 - Giften - Fiche 281.71 - Libéralités - Fiche 281.71<br />  28180 = Fiche 281.80 - PWA-cheques - Fiche 281.80 - Chèques ‘travail de proximité’ ou ALE - Fiche 281.80<br />  28181 = Fiche 281.81 - Dienstencheques - Fiche 281.81 - Titres-Services - Fiche 281.81<br />  28184 = Fiche 281.84 - Microfinanciering - Fiche 281.84 - Fonds Micro financement - Fiche 281.84<br />  28185 = Fiche 281.85 - Fonds vermindering van de totale energiekosten - Fiche 281.85 - Tax Shelter - Fiche 281.85<br />  28186 = Fiche 281.86 - Opvangkosten - Fiche 281.86 - Frais de garde d’enfants - Fiche 281.86 - Child care costs<br />  28190 = Fiche 281.90 - Terugbetaling sociale bijdragen zelfstandigen - Fiche 281.90 - Remboursements de cotisations sociales des indépendants - Fiche 281.90<br />  28191 = Fiche 281.91 - Verkoop en aankoop onroerend goed - Fiche 281.91 - Fiche 281.91<br />  28192 = Fiche 281.92 - Landbouwbeleid - Fiche 281.92 - Cadre de la politique agricole - Fiche 281.92<br />  28193 = Fiche 281.93 - Inlichtingen openbare diensten - Fiche 281.93 - Renseignements services publics - Fiche 281.93<br />  28199 = Fiche 281.99 - Inlichtingen openbare diensten - Gewesten, Gemeenschappen, Provincies, Gemeenten - Fiche 281.99 - Renseignements services publics - Régions, Communautés, Provinces, Communes - Fiche 281.99<br />  32520 = Fiche 325.20 - Fiche 325.20 - Fiche 325.20<br />  281100 = Belcotax - zending 281.10 - Belcotax - soumission 281.10 - Belcotax - submission - 281.10<br />  281110 = Fiche 281.11 - Betaling - Fiche 281.11 - Paiement - Fiche 281.11 - Payment<br />  281200 = Belcotax - zending 281.20 - Belcotax - soumission 281.20 - Belcotax - submission - 281.20<br />  281500 = Belcotax - zending 281.50 - Belcotax - soumission 281.50 - Belcotax - submission - 281.50<br />  281850 = Belcotax - zending 281.85 - Belcotax - soumission 281.85 - Belcotax - submission - 281.85</li>\n</ul>\n<h4 id=\"signing-status\">Signing status</h4>\n<ul>\n<li>Not signed= 1</li>\n<li>Signing needed = 2</li>\n<li>Signing revoked = 3</li>\n<li>Signing expired = 4</li>\n<li>Signing pending = 10</li>\n<li>Signing failed = 11</li>\n<li>Signing rejected = 12</li>\n<li>Signed = 20</li>\n</ul>\n","_postman_id":"7bd434ac-187c-4e9e-a1d5-ce7de0e4cb7b","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Tasks","item":[{"name":"Task schedules","item":[{"name":"list all task schedules","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript","packages":{}}}],"id":"e68e13bb-5d04-470d-8ab7-9c4c8e3bdf4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/tasks/schedules?page=&pageSize=&relationId=&templateId=","description":"<p>Required scope: <strong>tasks.read</strong></p>\n<p>Returns a list of invoices with the following attributes:</p>\n<p><strong>Task schedule</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>relationId</td>\n<td>string</td>\n<td>The ID of the relation</td>\n</tr>\n<tr>\n<td>relationUniqueIdentifier</td>\n<td>string</td>\n<td>The unique identifier (APR code) of the relation</td>\n</tr>\n<tr>\n<td>assignmentId</td>\n<td>string</td>\n<td>The ID of the assignment</td>\n</tr>\n<tr>\n<td>assignmentTemplateId</td>\n<td>string</td>\n<td>The ID of the assignment template</td>\n</tr>\n<tr>\n<td>templateId</td>\n<td>string</td>\n<td>The ID of the task template</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td>string</td>\n<td>The name of the task template</td>\n</tr>\n<tr>\n<td>periodicityId</td>\n<td>string</td>\n<td>The ID of the task periodicity</td>\n</tr>\n<tr>\n<td>periodicityName</td>\n<td>string</td>\n<td>The name of the task periodicity</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Format: yyyy-MM-ddThh:mm:ss</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td>Format: yyyy-MM-ddThh:mm:ss</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","schedules"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>Current page. Starts at 0 and defaults to 0</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>Page size. Max 50</p>\n","type":"text/plain"},"key":"pageSize","value":""},{"description":{"content":"<p>Not required, if passed, you will only receive task schedules for given relation</p>\n","type":"text/plain"},"key":"relationId","value":""},{"description":{"content":"<p>Not required, if passed, you will only receive task schedules for given task template ID</p>\n","type":"text/plain"},"key":"templateId","value":""}],"variable":[]}},"response":[{"id":"e67c4ed8-84a7-4bc1-85a5-8f52d284b417","name":"list all task schedules","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/tasks/schedules?page={{page}}&pageSize={{pageSize}}&relationId={{relationId}}&templateId={{maintasktemplateid}}","host":["{{apiEndpointUrl}}"],"path":["tasks","schedules"],"query":[{"key":"page","value":"{{page}}"},{"key":"pageSize","value":"{{pageSize}}"},{"key":"relationId","value":"{{relationId}}"},{"key":"templateId","value":"{{maintasktemplateid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"fbbb27d9-cf58-407d-8081-ef9f9865bb0f\",\n            \"relationId\": \"429bc094-bd6f-ec11-b820-00155d49ae96\",\n            \"relationUniqueIdentifier\": \"APR01012\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"c896a253-bd6f-ec11-b820-00155d49ae96\",\n            \"templateName\": \"Voorafbetalingen\",\n            \"periodicityId\": \"ea061f67-bd6f-ec11-b820-00155d49ae96\",\n            \"periodicityName\": \"Jaarlijks per kwartaal\",\n            \"startDate\": \"2022-01-01T13:28:48.38\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"14f2212e-c1e3-4072-83b4-1f5810e2b7ca\",\n            \"relationId\": \"a8d30c74-81d6-4769-9e7e-c36c46de7927\",\n            \"relationUniqueIdentifier\": \"APR00125\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"688624b7-eb51-492d-842e-79bd97c1abc8\",\n            \"relationId\": \"5f35af63-c337-4190-9a1e-fdbd4ca5be60\",\n            \"relationUniqueIdentifier\": \"APR00445\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"21aab687-80c4-43ea-a4ed-8024bcf6c6c3\",\n            \"relationId\": \"75e95696-b2f5-4c5e-9330-8c2a2464d3fa\",\n            \"relationUniqueIdentifier\": \"APR00772\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"123cf0b9-cec3-4367-8b84-408155017a72\",\n            \"templateName\": \"BTW listing\",\n            \"periodicityId\": \"45779604-e294-4c4e-a9ce-36d7150eab27\",\n            \"periodicityName\": \"Yearly VAT listing\",\n            \"startDate\": \"2020-01-13T10:44:24.672\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"80bb5423-e159-4a09-843c-66a5ea168e07\",\n            \"relationId\": \"75e95696-b2f5-4c5e-9330-8c2a2464d3fa\",\n            \"relationUniqueIdentifier\": \"APR00772\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"c7b34ccf-3c82-48b3-a847-0f0cf9e83a67\",\n            \"periodicityName\": \"Monthly VAT declaration - First day of year\",\n            \"startDate\": \"2019-11-28T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"0cce78f5-1471-424f-929e-ed1ed9419f60\",\n            \"relationId\": \"b5afc22c-53bc-42a9-90d1-21a8474e0be9\",\n            \"relationUniqueIdentifier\": \"APR00488\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"6b5a94f2-ac4d-4c0a-8de6-6541d4c2e3ba\",\n            \"relationId\": \"bc39fe75-0342-42f6-86fb-c651703cc6e7\",\n            \"relationUniqueIdentifier\": \"APR00069\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"5c1a012e-9e7e-4e82-86f5-c58260070854\",\n            \"templateName\": \"Custom abc\",\n            \"periodicityId\": \"404d9fc2-f0ec-41de-9db3-6d18b5fa3503\",\n            \"periodicityName\": \"Jaarlijks\",\n            \"startDate\": \"2019-06-03T19:18:45.008\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"2483e476-bb14-4748-bb73-63020f80df83\",\n            \"relationId\": \"bc39fe75-0342-42f6-86fb-c651703cc6e7\",\n            \"relationUniqueIdentifier\": \"APR00069\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"48354477-ba9d-489c-960d-f05fd800af9d\",\n            \"templateName\": \"Einde boekjaar taak\",\n            \"periodicityId\": \"547bef7a-cb83-4667-b876-1eb0bc9d1a20\",\n            \"periodicityName\": \"10 dagen voor einde boekjaar\",\n            \"startDate\": \"2019-10-30T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"aeba5542-7631-4705-9181-9f45255fd2e9\",\n            \"relationId\": \"c9e41910-8639-4c11-89a7-027d631f2556\",\n            \"relationUniqueIdentifier\": \"APR00460\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"c397e738-fa91-488d-976b-5b6a134e6721\",\n            \"relationId\": \"cb54d9ab-0817-4311-80e5-2a59cfe3f620\",\n            \"relationUniqueIdentifier\": \"APR00750\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"796ed771-0a5b-4fff-b1e8-d0580e1cbbdf\",\n            \"templateName\": \"Birthday\",\n            \"periodicityId\": \"6ed3fba8-edff-4ed7-a5b3-36b3e702c151\",\n            \"periodicityName\": \"Yearly\",\n            \"startDate\": \"2020-05-22T13:39:17.063\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"3841dac1-2eef-4d87-993b-2aec12646710\",\n            \"relationId\": \"b3da23e5-199b-4014-bc6e-2311194ddc81\",\n            \"relationUniqueIdentifier\": \"APR00062\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"a446d3ad-b1a0-4e60-9864-76edd96f90ef\",\n            \"relationId\": \"b3da23e5-199b-4014-bc6e-2311194ddc81\",\n            \"relationUniqueIdentifier\": \"APR00062\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"5c1a012e-9e7e-4e82-86f5-c58260070854\",\n            \"templateName\": \"Custom abc\",\n            \"periodicityId\": \"404d9fc2-f0ec-41de-9db3-6d18b5fa3503\",\n            \"periodicityName\": \"Jaarlijks\",\n            \"startDate\": \"2019-06-03T19:18:45.008\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"3132a687-bf72-47bb-b03b-9d005f5e58fa\",\n            \"relationId\": \"117dfaa4-80a2-4993-bbac-f2742a1e34da\",\n            \"relationUniqueIdentifier\": \"APR00487\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"26ef696c-4532-4d26-a55f-c397269d12e8\",\n            \"relationId\": \"a430b51a-41bf-476c-b1cb-1927d02af505\",\n            \"relationUniqueIdentifier\": \"APR00555\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"83f23997-8a3b-41a5-bda5-3a0ba34789fd\",\n            \"relationId\": \"723f837a-bffd-4e5e-b09b-dbd8a5dee48d\",\n            \"relationUniqueIdentifier\": \"APR00711\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"123cf0b9-cec3-4367-8b84-408155017a72\",\n            \"templateName\": \"BTW listing\",\n            \"periodicityId\": \"45779604-e294-4c4e-a9ce-36d7150eab27\",\n            \"periodicityName\": \"Yearly VAT listing\",\n            \"startDate\": \"2020-01-13T10:44:24.672\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"52ee1c2b-4b5b-4c39-b12f-135afda64a7e\",\n            \"relationId\": \"723f837a-bffd-4e5e-b09b-dbd8a5dee48d\",\n            \"relationUniqueIdentifier\": \"APR00711\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"fbd07958-daf6-4216-a048-ad01605e46b3\",\n            \"relationId\": \"e89df66b-aa41-42a0-b5a4-52cacc2c0ebb\",\n            \"relationUniqueIdentifier\": \"APR00634\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"5770d7c3-0b3c-4370-ad0f-cde48ddb55c8\",\n            \"relationId\": \"0830f5c0-f872-40a3-9d80-81563c862170\",\n            \"relationUniqueIdentifier\": \"APR00760\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"123cf0b9-cec3-4367-8b84-408155017a72\",\n            \"templateName\": \"BTW listing\",\n            \"periodicityId\": \"45779604-e294-4c4e-a9ce-36d7150eab27\",\n            \"periodicityName\": \"Yearly VAT listing\",\n            \"startDate\": \"2020-01-13T10:44:24.672\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"63752ef8-0d0d-45f4-8bde-26f619b4eb22\",\n            \"relationId\": \"4c6190bd-59da-4deb-0c0c-08dcc8e4619e\",\n            \"relationUniqueIdentifier\": \"APR01074\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"40d3c808-3c14-480f-af6d-7f621ede21f4\",\n            \"templateName\": \"Jaarrekening en AV\",\n            \"periodicityId\": \"380a9cca-9dca-494c-ac23-1c47f57d2346\",\n            \"periodicityName\": \"Annual account - GM\",\n            \"startDate\": \"2024-09-03T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"547f4705-8fb9-4127-8171-e7d58f2f60bf\",\n            \"relationId\": \"174938a8-ee2c-427c-32a0-08dccc101339\",\n            \"relationUniqueIdentifier\": \"APR01075\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"40d3c808-3c14-480f-af6d-7f621ede21f4\",\n            \"templateName\": \"Jaarrekening en AV\",\n            \"periodicityId\": \"380a9cca-9dca-494c-ac23-1c47f57d2346\",\n            \"periodicityName\": \"Annual account - GM\",\n            \"startDate\": \"2024-09-04T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"bc99bbcb-3723-464f-a14b-c03ae58952f3\",\n            \"relationId\": \"99ec262d-5674-4b03-b25e-08dd39597b17\",\n            \"relationUniqueIdentifier\": \"APR01081\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"d48ad041-8bf2-447c-cf32-08dd39e469e8\",\n            \"templateName\": \"Test taak klant inactief\",\n            \"periodicityId\": \"51ae3e4e-fa93-4dee-d2cb-08dd39e469e8\",\n            \"periodicityName\": \"Jaarlijks\",\n            \"startDate\": \"2025-01-01T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"f59edf61-c88a-4bcf-c7b0-08dd61f03a45\",\n            \"relationId\": \"d49ae4ac-86c4-4723-6b92-08dd62f11f69\",\n            \"relationUniqueIdentifier\": \"APR01088\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"40d3c808-3c14-480f-af6d-7f621ede21f4\",\n            \"templateName\": \"Jaarrekening en AV\",\n            \"periodicityId\": \"380a9cca-9dca-494c-ac23-1c47f57d2346\",\n            \"periodicityName\": \"Annual account - GM\",\n            \"startDate\": \"2025-03-17T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"af1fc29c-1fab-4eac-1eda-08dd70483b51\",\n            \"relationId\": \"77afdf7d-b2c0-4aab-9e75-08dd705e5032\",\n            \"relationUniqueIdentifier\": \"APR01092\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"56727aa7-0e37-4c0f-97ec-f8891ab6281d\",\n            \"periodicityName\": \"Maandelijks\",\n            \"startDate\": \"2025-04-01T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"fabcbf41-dd6e-4136-a221-08dd79e91596\",\n            \"relationId\": \"8f396a56-7510-4c10-319e-08dd7c28bc4d\",\n            \"relationUniqueIdentifier\": \"APR01093\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"56727aa7-0e37-4c0f-97ec-f8891ab6281d\",\n            \"periodicityName\": \"Maandelijks\",\n            \"startDate\": \"2025-04-01T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"3c261441-3e80-4e1c-a7ed-08dd79e91596\",\n            \"relationId\": \"c9820226-e032-47e7-31a0-08dd7c28bc4d\",\n            \"relationUniqueIdentifier\": \"APR01094\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"56727aa7-0e37-4c0f-97ec-f8891ab6281d\",\n            \"periodicityName\": \"Maandelijks\",\n            \"startDate\": \"2025-01-01T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"e2583595-3fa5-41f8-ae07-08dd79e91596\",\n            \"relationId\": \"0a8a51da-05b3-4ed8-31a2-08dd7c28bc4d\",\n            \"relationUniqueIdentifier\": \"APR01095\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"56727aa7-0e37-4c0f-97ec-f8891ab6281d\",\n            \"periodicityName\": \"Maandelijks\",\n            \"startDate\": \"2025-02-01T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"72bc7c33-e7df-4833-f3c4-08dd7cd96d33\",\n            \"relationId\": \"61075e31-cb21-40de-3e10-08dd7c28bc4d\",\n            \"relationUniqueIdentifier\": \"APR01096\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"56727aa7-0e37-4c0f-97ec-f8891ab6281d\",\n            \"periodicityName\": \"Maandelijks\",\n            \"startDate\": \"2025-04-16T00:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"1ac39c3d-305a-44cb-ae62-2b1ee37fa051\",\n            \"relationId\": \"2acfef55-e60a-4cc0-b46d-04b2e7a5a617\",\n            \"relationUniqueIdentifier\": \"APR00071\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"ab8db90f-12d3-4fde-a385-617d8837fa11\",\n            \"relationId\": \"2acfef55-e60a-4cc0-b46d-04b2e7a5a617\",\n            \"relationUniqueIdentifier\": \"APR00071\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"5c1a012e-9e7e-4e82-86f5-c58260070854\",\n            \"templateName\": \"Custom abc\",\n            \"periodicityId\": \"404d9fc2-f0ec-41de-9db3-6d18b5fa3503\",\n            \"periodicityName\": \"Jaarlijks\",\n            \"startDate\": \"2019-06-03T19:18:45.008\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"bef3ea2b-80a3-47d8-be74-27573d70cbee\",\n            \"relationId\": \"38273b23-442a-4026-a1f3-a4c570d28977\",\n            \"relationUniqueIdentifier\": \"APR00676\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"8749ae30-906f-4b56-994d-e37e1a8f4c1a\",\n            \"relationId\": \"a2cec6bb-8674-4529-9e76-503157a841ea\",\n            \"relationUniqueIdentifier\": \"APR00091\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"b49d9b76-8cb7-4ff6-af17-ad89d0cfe0fb\",\n            \"relationId\": \"a2cec6bb-8674-4529-9e76-503157a841ea\",\n            \"relationUniqueIdentifier\": \"APR00091\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"5c1a012e-9e7e-4e82-86f5-c58260070854\",\n            \"templateName\": \"Custom abc\",\n            \"periodicityId\": \"404d9fc2-f0ec-41de-9db3-6d18b5fa3503\",\n            \"periodicityName\": \"Jaarlijks\",\n            \"startDate\": \"2019-06-03T19:18:45.008\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"f1eae20e-b370-4dce-a895-410b0c79a94a\",\n            \"relationId\": \"18e9e4e0-8954-4a08-9d1c-d575039fdf2f\",\n            \"relationUniqueIdentifier\": \"APR00456\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"2c087326-8242-44ba-a40f-dc4b558fe959\",\n            \"relationId\": \"8f1ee07f-94cf-47de-8671-cbb4601822e8\",\n            \"relationUniqueIdentifier\": \"APR00690\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW aangifte\",\n            \"periodicityId\": \"9539c642-78f4-4b3c-9f74-0ee1055aa347\",\n            \"periodicityName\": \"Quarterly VAT declaration\",\n            \"startDate\": \"2019-09-23T11:44:15.427\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"de078209-b0f0-4e05-a825-4dfca4f211f5\",\n            \"relationId\": \"df5b6f3c-993a-4205-8465-11057e3d363a\",\n            \"relationUniqueIdentifier\": \"APR00013\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"19d049fe-bebb-4a9b-aeec-2bb9b360fbc0\",\n            \"templateName\": \"Sub - nl\",\n            \"periodicityId\": \"c14cd135-ef51-49b2-b2b6-c7f65092a64d\",\n            \"periodicityName\": \"Jaarlijks\",\n            \"startDate\": \"2019-02-22T11:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        },\n        {\n            \"id\": \"175be695-d903-4158-82a4-cc320eebe0b7\",\n            \"relationId\": \"df5b6f3c-993a-4205-8465-11057e3d363a\",\n            \"relationUniqueIdentifier\": \"APR00013\",\n            \"assignmentId\": null,\n            \"assignmentTemplateId\": null,\n            \"templateId\": \"19d049fe-bebb-4a9b-aeec-2bb9b360fbc0\",\n            \"templateName\": \"Sub - nl\",\n            \"periodicityId\": \"6898fad4-b168-4796-b820-e40fe97154a1\",\n            \"periodicityName\": \"Maandelijks\",\n            \"startDate\": \"2019-03-01T11:00:00\",\n            \"endDate\": null,\n            \"remark\": null\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 21,\n    \"pageSize\": 50,\n    \"totalRowCount\": 1020\n}"}],"_postman_id":"e68e13bb-5d04-470d-8ab7-9c4c8e3bdf4d"},{"name":"add task schedule","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript","packages":{}}}],"id":"916928e5-579d-4593-9f15-5a881e0a9440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relationId\": \"f2384a9e-ef81-436a-091a-08dd8ece9e83\",\r\n    \"templateId\": \"014c80b3-5083-42b0-8d0b-b94156e45f98\",\r\n    \"periodicityId\": \"6b00c825-1add-49dc-90f6-fd1e6619efd4\",\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"remark\": \"Remark on the task schedule\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/schedules","description":"<p>Required scope: <strong>tasks.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","schedules"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a4614bbc-4154-46cc-bbfa-ecfdd54a0530","name":"add task schedule","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relationId\": \"f2384a9e-ef81-436a-091a-08dd8ece9e83\",\r\n    \"templateId\": \"014c80b3-5083-42b0-8d0b-b94156e45f98\",\r\n    \"periodicityId\": \"6b00c825-1add-49dc-90f6-fd1e6619efd4\",\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"remark\": \"Remark on the task schedule\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"916928e5-579d-4593-9f15-5a881e0a9440"},{"name":"update task schedule","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript","packages":{}}}],"id":"f10535c7-f4ee-4c42-9a0c-d9aab105a5f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relationId\": \"f2384a9e-ef81-436a-091a-08dd8ece9e83\",\r\n    \"templateId\": \"014c80b3-5083-42b0-8d0b-b94156e45f98\",\r\n    \"periodicityId\": \"6b00c825-1add-49dc-90f6-fd1e6619efd4\",\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"remark\": \"Remark on the task schedule\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/schedules","description":"<p>Required scope: <strong>tasks.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","schedules"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cc19a3a1-82a4-4399-acb4-8cf062596f56","name":"update task schedule","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relationId\": \"f2384a9e-ef81-436a-091a-08dd8ece9e83\",\r\n    \"templateId\": \"014c80b3-5083-42b0-8d0b-b94156e45f98\",\r\n    \"periodicityId\": \"6b00c825-1add-49dc-90f6-fd1e6619efd4\",\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"remark\": \"updated remark\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f10535c7-f4ee-4c42-9a0c-d9aab105a5f8"},{"name":"delete task schedule","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript","packages":{}}}],"id":"9a459214-7230-41f5-9877-6f2de91b0f09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relationId\": \"f2384a9e-ef81-436a-091a-08dd8ece9e83\",\r\n    \"templateId\": \"014c80b3-5083-42b0-8d0b-b94156e45f98\",\r\n    \"periodicityId\": \"6b00c825-1add-49dc-90f6-fd1e6619efd4\",\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"remark\": \"Remark on the task schedule\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/schedules/{{id}}?deletePlannedTasks=false","description":"<p>Required scope: <strong>tasks.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","schedules","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>If true, the tasks that were created by this schedule, will also be deleted</p>\n","type":"text/plain"},"key":"deletePlannedTasks","value":"false"}],"variable":[]}},"response":[{"id":"774edd57-5304-4527-ae62-3c72b22d008d","name":"delete task schedule","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relationId\": \"f2384a9e-ef81-436a-091a-08dd8ece9e83\",\r\n    \"templateId\": \"014c80b3-5083-42b0-8d0b-b94156e45f98\",\r\n    \"periodicityId\": \"6b00c825-1add-49dc-90f6-fd1e6619efd4\",\r\n    \"startDate\": \"01012025\",\r\n    \"endDate\": \"31122025\",\r\n    \"remark\": \"updated remark\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiEndpointUrl}}/tasks/schedules/{{id}}?deletePlannedTasks=false","host":["{{apiEndpointUrl}}"],"path":["tasks","schedules","{{id}}"],"query":[{"key":"deletePlannedTasks","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9a459214-7230-41f5-9877-6f2de91b0f09"}],"id":"4e71fcdb-7987-4162-916a-55abc61d3386","_postman_id":"4e71fcdb-7987-4162-916a-55abc61d3386","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"list all tasks","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript"}}],"id":"0ee71ec0-0213-4eab-9cd1-84fda0252060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/tasks?page=&pageSize=&deadlineFrom=&deadlineUntil=&relationId=&mainTaskTemplateId=","description":"<p>Required scope: <strong>tasks.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>Current page. Starts at 0 and defaults to 0</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>Page size. Max 50</p>\n","type":"text/plain"},"key":"pageSize","value":""},{"description":{"content":"<p>Start deadline. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"deadlineFrom","value":""},{"description":{"content":"<p>End deadline. Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"deadlineUntil","value":""},{"description":{"content":"<p>Relation ID (Guid)</p>\n","type":"text/plain"},"key":"relationId","value":""},{"key":"mainTaskTemplateId","value":""}],"variable":[]}},"response":[{"id":"10cd0a4b-fd11-4e0d-8cae-aa7ae8c243ea","name":"tasks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/tasks?page={{page}}&pageSize={{pageSize}}&deadlineFrom={{deadlineFrom}}&deadlineUntil={{deadlineUntil}}&relationId={{relationId}}&maintasktemplateid={{maintasktemplateid}}","host":["{{apiEndpointUrl}}"],"path":["tasks"],"query":[{"key":"page","value":"{{page}}"},{"key":"pageSize","value":"{{pageSize}}"},{"key":"deadlineFrom","value":"{{deadlineFrom}}"},{"key":"deadlineUntil","value":"{{deadlineUntil}}"},{"key":"relationId","value":"{{relationId}}"},{"key":"maintasktemplateid","value":"{{maintasktemplateid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2020-05-04T20:09:44.5411199\",\n            \"status\": 2,\n            \"relationId\": \"3dca20f5-34cd-4e08-bd46-eb33a294610e\",\n            \"name\": \"BTW-aangifte\",\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"templateName\": \"BTW-aangifte\",\n            \"relationUniqueIdentifier\": \"APR00027\",\n            \"mainTask\": null,\n            \"subtasks\": [\n                {\n                    \"id\": \"6af551f1-4e56-4688-b365-9e27967305f6\",\n                    \"deadline\": \"2019-10-05T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9011001\",\n                    \"status\": 2,\n                    \"name\": \"Documenten opvragen\",\n                    \"templateId\": \"90937c1f-dcd1-4843-a7fc-b3f58d32d24e\",\n                    \"templateName\": \"Documenten opvragen\",\n                    \"priority\": 1,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"116ab9d3-a8ee-4e8d-8566-8d6f5407e4bf\",\n                    \"deadline\": \"2019-10-13T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9010979\",\n                    \"status\": 2,\n                    \"name\": \"Documenten ontvangen\",\n                    \"templateId\": \"e27b50f6-61df-4aa2-89d5-b79709d971e4\",\n                    \"templateName\": \"Documenten ontvangen\",\n                    \"priority\": 2,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"d9493aaa-8612-4d3b-81f3-81fb90b37cc6\",\n                    \"deadline\": \"2019-10-20T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9010968\",\n                    \"status\": 2,\n                    \"name\": \"Facturen boeken\",\n                    \"templateId\": \"9a4ff91d-e5a7-4fcb-816a-02357444e17a\",\n                    \"templateName\": \"Facturen boeken\",\n                    \"priority\": 3,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"b8baee56-b532-4427-8f1e-0884a62d0753\",\n                    \"deadline\": \"2019-10-20T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9010936\",\n                    \"status\": 2,\n                    \"name\": \"BTW afwerken\",\n                    \"templateId\": \"e5344f98-7c18-4032-bbba-f0e0366b97e7\",\n                    \"templateName\": \"BTW afwerken\",\n                    \"priority\": 4,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"dece1333-100b-4426-9051-666e3fb6dc17\",\n                    \"deadline\": \"2019-10-20T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9010957\",\n                    \"status\": 2,\n                    \"name\": \"BTW indienen\",\n                    \"templateId\": \"0a7f410e-1261-4587-b76d-3aca074215dd\",\n                    \"templateName\": \"BTW indienen\",\n                    \"priority\": 5,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"1803e447-1006-41ae-8935-40245b9369b6\",\n                    \"deadline\": \"2019-10-20T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9010947\",\n                    \"status\": 2,\n                    \"name\": \"Saldo en kopie naar klant\",\n                    \"templateId\": \"5d461f9a-a22f-4d49-8f8a-fc1cf7e1b484\",\n                    \"templateName\": \"Saldo en kopie naar klant\",\n                    \"priority\": 6,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"fc29c2ae-e8b1-489c-9425-93b84f29969d\",\n                    \"deadline\": \"2019-10-20T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.901099\",\n                    \"status\": 2,\n                    \"name\": \"Intracom aangifte\",\n                    \"templateId\": \"f084cbd3-c56d-45c5-ad12-ddbd61ced6e1\",\n                    \"templateName\": \"Intracom aangifte\",\n                    \"priority\": 7,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                },\n                {\n                    \"id\": \"06b97766-a680-4c5a-8e07-e4415607e809\",\n                    \"deadline\": \"2019-10-20T00:00:00\",\n                    \"completedDate\": \"2019-09-12T10:03:03.9011012\",\n                    \"status\": 2,\n                    \"name\": \"Financiëel boeken\",\n                    \"templateId\": \"679366dd-bf6f-4d8d-ab59-2f2ac8dea8d2\",\n                    \"templateName\": \"Financiëel boeken\",\n                    \"priority\": 8,\n                    \"inapplicable\": false,\n                    \"isBlocked\": false,\n                    \"assignedUserId\": null,\n                    \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n                    \"tags\": []\n                }\n            ],\n            \"tags\": [],\n            \"isBlocked\": false,\n            \"inapplicable\": false,\n            \"assignedUserId\": null,\n            \"referenceYear\": 2019\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 1,\n    \"pageSize\": 50,\n    \"totalRowCount\": 1\n}"}],"_postman_id":"0ee71ec0-0213-4eab-9cd1-84fda0252060"},{"name":"get task","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript","packages":{}}}],"id":"f48357ba-cfc3-48ff-8405-0e61cb5d8309","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/tasks/{{id}}","description":"<p>Required scope: <strong>tasks.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ba39a5a5-706a-472c-b454-b19fef550de7","name":"tasks/930ECCCF-0233-432E-A8C9-8F156EE906B4","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/tasks/930ECCCF-0233-432E-A8C9-8F156EE906B4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n    \"deadline\": \"2019-10-20T00:00:00\",\n    \"completedDate\": \"2020-05-04T20:09:44.5411199\",\n    \"status\": 2,\n    \"relationId\": \"3dca20f5-34cd-4e08-bd46-eb33a294610e\",\n    \"name\": \"BTW-aangifte\",\n    \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n    \"templateName\": \"BTW-aangifte\",\n    \"relationUniqueIdentifier\": \"APR00027\",\n    \"mainTask\": null,\n    \"subtasks\": [\n        {\n            \"id\": \"6af551f1-4e56-4688-b365-9e27967305f6\",\n            \"deadline\": \"2019-10-05T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9011001\",\n            \"status\": 2,\n            \"name\": \"Documenten opvragen\",\n            \"templateId\": \"90937c1f-dcd1-4843-a7fc-b3f58d32d24e\",\n            \"templateName\": \"Documenten opvragen\",\n            \"priority\": 1,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"116ab9d3-a8ee-4e8d-8566-8d6f5407e4bf\",\n            \"deadline\": \"2019-10-13T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9010979\",\n            \"status\": 2,\n            \"name\": \"Documenten ontvangen\",\n            \"templateId\": \"e27b50f6-61df-4aa2-89d5-b79709d971e4\",\n            \"templateName\": \"Documenten ontvangen\",\n            \"priority\": 2,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"d9493aaa-8612-4d3b-81f3-81fb90b37cc6\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9010968\",\n            \"status\": 2,\n            \"name\": \"Facturen boeken\",\n            \"templateId\": \"9a4ff91d-e5a7-4fcb-816a-02357444e17a\",\n            \"templateName\": \"Facturen boeken\",\n            \"priority\": 3,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"b8baee56-b532-4427-8f1e-0884a62d0753\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9010936\",\n            \"status\": 2,\n            \"name\": \"BTW afwerken\",\n            \"templateId\": \"e5344f98-7c18-4032-bbba-f0e0366b97e7\",\n            \"templateName\": \"BTW afwerken\",\n            \"priority\": 4,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"dece1333-100b-4426-9051-666e3fb6dc17\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9010957\",\n            \"status\": 2,\n            \"name\": \"BTW indienen\",\n            \"templateId\": \"0a7f410e-1261-4587-b76d-3aca074215dd\",\n            \"templateName\": \"BTW indienen\",\n            \"priority\": 5,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"1803e447-1006-41ae-8935-40245b9369b6\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9010947\",\n            \"status\": 2,\n            \"name\": \"Saldo en kopie naar klant\",\n            \"templateId\": \"5d461f9a-a22f-4d49-8f8a-fc1cf7e1b484\",\n            \"templateName\": \"Saldo en kopie naar klant\",\n            \"priority\": 6,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"fc29c2ae-e8b1-489c-9425-93b84f29969d\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.901099\",\n            \"status\": 2,\n            \"name\": \"Intracom aangifte\",\n            \"templateId\": \"f084cbd3-c56d-45c5-ad12-ddbd61ced6e1\",\n            \"templateName\": \"Intracom aangifte\",\n            \"priority\": 7,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        },\n        {\n            \"id\": \"06b97766-a680-4c5a-8e07-e4415607e809\",\n            \"deadline\": \"2019-10-20T00:00:00\",\n            \"completedDate\": \"2019-09-12T10:03:03.9011012\",\n            \"status\": 2,\n            \"name\": \"Financiëel boeken\",\n            \"templateId\": \"679366dd-bf6f-4d8d-ab59-2f2ac8dea8d2\",\n            \"templateName\": \"Financiëel boeken\",\n            \"priority\": 8,\n            \"inapplicable\": false,\n            \"isBlocked\": false,\n            \"assignedUserId\": null,\n            \"parentId\": \"fbb73b45-d019-46da-821e-3467c70ac190\",\n            \"tags\": []\n        }\n    ],\n    \"tags\": [],\n    \"isBlocked\": false,\n    \"inapplicable\": false,\n    \"assignedUserId\": null,\n    \"referenceYear\": 2019\n}"}],"_postman_id":"f48357ba-cfc3-48ff-8405-0e61cb5d8309"},{"name":"list task templates","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript"}}],"id":"571ebf24-7f63-4adb-b6ce-5bcde2fd8851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/tasks/templates?languageCode=nl","description":"<p>Required scope: <strong>tasks.read</strong></p>\n<p>More information can be found <a href=\"https://adminpulse.zendesk.com/hc/articles/5434796411410\">here</a>.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","templates"],"host":["{{apiEndpointUrl}}"],"query":[{"key":"languageCode","value":"nl"}],"variable":[]}},"response":[{"id":"4aef37e1-9505-4db4-b7b1-d33da695d42c","name":"task templates","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n  \"languageCode\": \"nl | fr | en\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiEndpointUrl}}/tasks/templates?languageCode={{languageCode}}","host":["{{apiEndpointUrl}}"],"path":["tasks","templates"],"query":[{"key":"languageCode","value":"{{languageCode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n        \"type\": null,\n        \"name\": \"BTW-aangifte\",\n        \"subtaskTemplates\": [\n            {\n                \"id\": \"3d92f714-57f0-eb11-ba5e-00155d0eeb6e\",\n                \"type\": 0,\n                \"name\": \"Nihil-klantenlisting ingediend via BTW-aangifte\",\n                \"priority\": 10\n            },\n            {\n                \"id\": \"9a4ff91d-e5a7-4fcb-816a-02357444e17a\",\n                \"type\": 0,\n                \"name\": \"Facturen boeken\",\n                \"priority\": 3\n            },\n            {\n                \"id\": \"679366dd-bf6f-4d8d-ab59-2f2ac8dea8d2\",\n                \"type\": 0,\n                \"name\": \"Financiëel boeken\",\n                \"priority\": 8\n            },\n            {\n                \"id\": \"0a7f410e-1261-4587-b76d-3aca074215dd\",\n                \"type\": 0,\n                \"name\": \"BTW indienen\",\n                \"priority\": 5\n            },\n            {\n                \"id\": \"90937c1f-dcd1-4843-a7fc-b3f58d32d24e\",\n                \"type\": 3,\n                \"name\": \"Documenten opvragen\",\n                \"priority\": 2\n            },\n            {\n                \"id\": \"e27b50f6-61df-4aa2-89d5-b79709d971e4\",\n                \"type\": 2,\n                \"name\": \"Documenten ontvangen\",\n                \"priority\": 1\n            },\n            {\n                \"id\": \"f084cbd3-c56d-45c5-ad12-ddbd61ced6e1\",\n                \"type\": 0,\n                \"name\": \"Intracom aangifte\",\n                \"priority\": 7\n            },\n            {\n                \"id\": \"e5344f98-7c18-4032-bbba-f0e0366b97e7\",\n                \"type\": 0,\n                \"name\": \"BTW afwerken\",\n                \"priority\": 4\n            },\n            {\n                \"id\": \"5d461f9a-a22f-4d49-8f8a-fc1cf7e1b484\",\n                \"type\": 3,\n                \"name\": \"Saldo en kopie naar klant\",\n                \"priority\": 6\n            },\n            {\n                \"id\": \"86f3407e-62f0-494c-8131-fc76cfb6532a\",\n                \"type\": 1,\n                \"name\": \"Vaste tijdsduur\",\n                \"priority\": 9\n            }\n        ],\n        \"periodicities\": [\n            {\n                \"id\": \"b01a1e37-e5ec-4dd4-bb0e-49364388300f\",\n                \"name\": \"BTW-aangifte (maandelijks)\"\n            },\n            {\n                \"id\": \"afd7bff3-634d-4a21-b6aa-7390a176a67f\",\n                \"name\": \"BTW-aangifte (kwartaal)\"\n            }\n        ]\n    }\n]"}],"_postman_id":"571ebf24-7f63-4adb-b6ce-5bcde2fd8851"},{"name":"update task status","event":[{"listen":"test","script":{"id":"a1c10662-1fa9-4a01-a511-0454be887428","exec":[""],"type":"text/javascript"}}],"id":"c67ba627-b1e5-46cf-8ee9-c993a9e740db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationIdentifier\": \"APR00001\",\n  \"deadline\": \"31122020\",\n  \"mainTaskName\": \"BTW listing\",\n  \"subTaskName\": \"BTW listing opstellen\",\n  \"inapplicable\": false,\n  \"isBlocked\": false,\n  \"status\": 2\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/updateStatus","description":"<p>Required scope: <strong>tasks.write</strong></p>\n<p>Allows you to set the status of a task. The task can either be a main task or a subtask.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mainTaskId</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>subTaskId</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>Required if neither mainTaskId or subTaskId is passed</td>\n<td></td>\n</tr>\n<tr>\n<td>mainTaskName</td>\n<td>string</td>\n<td>Required if neither mainTaskId or subTaskId is passed</td>\n<td></td>\n</tr>\n<tr>\n<td>subTaskName</td>\n<td>string</td>\n<td>Required if neither mainTaskId or subTaskId is passed</td>\n<td></td>\n</tr>\n<tr>\n<td>deadline</td>\n<td>string</td>\n<td>Required if neither mainTaskId or subTaskId is passed</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>inapplicable</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the task will be marked as inapplicable</td>\n</tr>\n<tr>\n<td>isBlocked</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the task will be marked as blocked</td>\n</tr>\n<tr>\n<td>status</td>\n<td>number</td>\n<td></td>\n<td>To-do = 0  <br />In progress = 1  <br />Done = 2</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","updateStatus"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e93b1832-8d1e-4c4d-ab6f-881b6c976d21","name":"updateStatus by name","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"deadline\": \"2020-12-30\",\n  \"mainTaskName\": \"BTW listing\",\n  \"subTaskName\": \"BTW listing opstellen\",\n  \"inapplicable\": false,\n  \"isBlocked\": false,\n  \"status\": 2\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/updateStatus"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"44b0e8ee-57fa-4dee-b6e0-cc816643bd7b\",\n            \"deadline\": \"2019-11-07T00:00:00\",\n            \"status\": 2,\n            \"relationId\": \"ae04f0fd-7c47-4da3-875f-4a0ced8e619c\",\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"relationUniqueIdentifier\": \"APR00082\",\n            \"subtasks\": [\n                {\n                    \"id\": \"c3d3aada-5329-4abe-bc57-7324ce7295f2\",\n                    \"deadline\": \"2019-10-31T00:00:00\",\n                    \"status\": 2,\n                    \"templateId\": \"e27b50f6-61df-4aa2-89d5-b79709d971e4\"\n                },\n                {\n                    \"id\": \"1cafb69e-6215-487b-9873-98a621828333\",\n                    \"deadline\": \"2019-11-07T00:00:00\",\n                    \"status\": 2,\n                    \"templateId\": \"f084cbd3-c56d-45c5-ad12-ddbd61ced6e1\"\n                }\n            ]\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 1,\n    \"pageSize\": 50,\n    \"totalRowCount\": 1\n}    "},{"id":"61f547a4-1481-4805-a93e-ac0db69ca602","name":"updateStatus by template id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Deadline\": \"2020-12-30\",\n  \"MainTaskId\": \"1E60EFEB-AD9B-4C01-8307-8422B394DA76\",\n  \"SubTaskId\": \"1E60EFEB-AD9B-4C01-8307-8422B394DA76\",\n  \"Inapplicable\": false,\n  \"IsBlocked\": false,\n  \"Status\": 2,\n  \"Tags\": [\"tag1\", \"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/updateStatus"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"44b0e8ee-57fa-4dee-b6e0-cc816643bd7b\",\n            \"deadline\": \"2019-11-07T00:00:00\",\n            \"status\": 2,\n            \"relationId\": \"ae04f0fd-7c47-4da3-875f-4a0ced8e619c\",\n            \"templateId\": \"2c5a2a97-07fb-4826-98bd-41d427e14bfe\",\n            \"relationUniqueIdentifier\": \"APR00082\",\n            \"subtasks\": [\n                {\n                    \"id\": \"c3d3aada-5329-4abe-bc57-7324ce7295f2\",\n                    \"deadline\": \"2019-10-31T00:00:00\",\n                    \"status\": 2,\n                    \"templateId\": \"e27b50f6-61df-4aa2-89d5-b79709d971e4\"\n                },\n                {\n                    \"id\": \"1cafb69e-6215-487b-9873-98a621828333\",\n                    \"deadline\": \"2019-11-07T00:00:00\",\n                    \"status\": 2,\n                    \"templateId\": \"f084cbd3-c56d-45c5-ad12-ddbd61ced6e1\"\n                }\n            ]\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 1,\n    \"pageSize\": 50,\n    \"totalRowCount\": 1\n}    "}],"_postman_id":"c67ba627-b1e5-46cf-8ee9-c993a9e740db"},{"name":"create task","id":"33e3694d-336d-4cde-96ab-357951b649bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationIdentifier\": \"APR00001\",\n  \"deadline\": \"2020-01-01T00:00:00\",\n  \"templateId\": \"76883CA7-B526-4E0C-BEFC-E1712FB13FFA\",\n  \"name\": \"my task\",\n  \"inapplicable\": false,\n  \"isBlocked\": false,\n  \"status\": 2,\n  \"taskLevel\": 0,\n  \"type\": 0,\n  \"remark\": \"remark\",\n  \"tags\": [\"tag1\", \"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks","description":"<p>Required scope: <strong>tasks.write</strong></p>\n<p>Allows you to create a task. The task can either be a main task or a subtask.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>templateId</td>\n<td>string</td>\n<td>Required if parent id is empty</td>\n<td></td>\n</tr>\n<tr>\n<td>parentId</td>\n<td>string</td>\n<td>Required if template id is empty</td>\n<td></td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>Required if neither mainTaskId or subTaskId is passed</td>\n<td></td>\n</tr>\n<tr>\n<td>deadline</td>\n<td>string</td>\n<td>Required if neither mainTaskId or subTaskId is passed</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>inapplicable</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the task will be marked as inapplicable</td>\n</tr>\n<tr>\n<td>isBlocked</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the task will be marked as blocked</td>\n</tr>\n<tr>\n<td>status</td>\n<td>number</td>\n<td></td>\n<td>To-do = 0  <br />In progress = 1  <br />Done = 2</td>\n</tr>\n<tr>\n<td>taskLevel</td>\n<td>number</td>\n<td>x</td>\n<td>Main task = 0  <br />Sub task = 1  <br />To-do = 2</td>\n</tr>\n</tbody>\n</table>\n</div><p>This call can be done with either the <code>templateId</code> or the <code>parentId</code>. When passing down the templateId, all tasks in the template will be created. When using the parentId, a specific task will be created under an existing main task.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"386e7743-30e2-450c-94b9-6cc24742abe1","name":"create task from template id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationIdentifier\": \"APR00001\",\n  \"deadline\": \"2020-01-01T00:00:00\",\n  \"templateId\": \"76883CA7-B526-4E0C-BEFC-E1712FB13FFA\",\n  \"name\": \"my task\",\n  \"inapplicable\": false,\n  \"isBlocked\": false,\n  \"status\": 2,\n  \"taskLevel\": 0,\n  \"type\": 0,\n  \"remark\": \"remark\",\n  \"tags\": [\"tag1\", \"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0df65a25-0c68-244f-b8b2-105c699e112e\",\n    \"deadline\": \"2020-01-01T00:00:00\",\n    \"status\": 0,\n    \"relationId\": \"fe0f01b3-da94-4754-a011-c39951aafa4d\",\n    \"templateId\": \"0f07c6b3-169f-ed11-9ac4-0003ff887822\",\n    \"relationUniqueIdentifier\": \"APR00001\",\n    \"subtasks\": [\n        {\n            \"id\": \"f45420e7-9b1d-e647-b36a-31da650cfb49\",\n            \"deadline\": \"2020-01-01T00:00:00\",\n            \"status\": 0,\n            \"templateId\": \"a27620bd-169f-ed11-9ac4-0003ff887bdf\",\n            \"tags\": []\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": \"0790f9bc-f053-cb4f-a3d4-6fc3273b5e5c\",\n            \"name\": \"tag2\"\n        },\n        {\n            \"id\": \"b7f6ce99-8a3d-924f-aac6-9e4c90ff542b\",\n            \"name\": \"tag1\"\n        }\n    ]\n}"},{"id":"31a16ff2-9d1c-4a51-a6a3-283c75f56019","name":"create task with parent id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationIdentifier\": \"APR00001\",\n  \"deadline\": \"2020-01-01T00:00:00\",\n  \"parentId\": \"76883CA7-B526-4E0C-BEFC-E1712FB13FFA\",\n  \"name\": \"my task\",\n  \"inapplicable\": false,\n  \"isBlocked\": false,\n  \"status\": 2,\n  \"taskLevel\": 0,\n  \"type\": 0,\n  \"remark\": \"remark\",\n  \"tags\": [\"tag1\", \"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0df65a25-0c68-244f-b8b2-105c699e112e\",\n    \"deadline\": \"2020-01-01T00:00:00\",\n    \"status\": 0,\n    \"relationId\": \"fe0f01b3-da94-4754-a011-c39951aafa4d\",\n    \"templateId\": \"0f07c6b3-169f-ed11-9ac4-0003ff887822\",\n    \"relationUniqueIdentifier\": \"APR00001\",\n    \"subtasks\": [\n        {\n            \"id\": \"f45420e7-9b1d-e647-b36a-31da650cfb49\",\n            \"deadline\": \"2020-01-01T00:00:00\",\n            \"status\": 0,\n            \"templateId\": \"a27620bd-169f-ed11-9ac4-0003ff887bdf\",\n            \"tags\": []\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": \"0790f9bc-f053-cb4f-a3d4-6fc3273b5e5c\",\n            \"name\": \"tag2\"\n        },\n        {\n            \"id\": \"b7f6ce99-8a3d-924f-aac6-9e4c90ff542b\",\n            \"name\": \"tag1\"\n        }\n    ]\n}"}],"_postman_id":"33e3694d-336d-4cde-96ab-357951b649bc"},{"name":"create to-do","id":"523504cd-f54d-4b5e-92c6-085fdc02b0cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationIdentifier\": \"APR00001\",\n  \"deadline\": \"2020-01-01\",\n  \"name\": \"my to-do\",\n  \"status\": 0,\n  \"taskLevel\": 2,\n  \"remark\": \"remark\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks","description":"<p>Required scope: <strong>tasks.write</strong></p>\n<p>Allows you to create a to-do</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>x</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>x</td>\n<td>Name of the todo</td>\n</tr>\n<tr>\n<td>deadline</td>\n<td>string</td>\n<td></td>\n<td>Format: yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>status</td>\n<td>number</td>\n<td></td>\n<td>To-do = 0  <br />In progress = 1  <br />Done = 2</td>\n</tr>\n<tr>\n<td>taskLevel</td>\n<td>number</td>\n<td>x</td>\n<td>To-do = 2</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td>optional remark about the to-do</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3d508ec4-fbdb-4514-a741-e26ef205a881","name":"create todo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"relationIdentifier\": \"APR00001\",\n  \"deadline\": \"2020-01-01\",\n  \"name\": \"Call Wendy\",\n  \"status\": 0,\n  \"taskLevel\": 2,\n  \"remark\": \"Wendy asked me to call her back on Wednesday\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0df65a25-0c68-244f-b8b2-105c699e112e\",\n    \"deadline\": \"2020-01-01T00:00:00\",\n    \"status\": 0,\n    \"relationId\": \"fe0f01b3-da94-4754-a011-c39951aafa4d\",\n    \"relationUniqueIdentifier\": \"APR00001\"\n}"}],"_postman_id":"523504cd-f54d-4b5e-92c6-085fdc02b0cc"},{"name":"update task","id":"31b07a9c-df26-42b2-b18f-41696ef72daf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"deadline\": \"2025-12-31T00:00:00\",\n  \"status\": 1,\n  \"isBlocked\": false,\n  \"inapplicable\": false,\n  \"name\": \"Updated task name\",\n  \"remark\": \"Updated remark\",\n  \"assignedUser\": \"user@example.com\",\n  \"tags\": [\"tag1\", \"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/{{id}}","description":"<p>Required scope: <strong>tasks.write</strong></p>\n<p>StartFragmentAllows you to update an existing task. You can update properties like status, deadline, assigned user, tags, name, and remark.EndFragment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deadline</td>\n<td>string</td>\n<td></td>\n<td>Format: yyyy-MM-ddTHH:mm:ss</td>\n</tr>\n<tr>\n<td>status</td>\n<td>number</td>\n<td></td>\n<td>To-do = 0, In progress = 1, Done = 2</td>\n</tr>\n<tr>\n<td>isBlocked</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the task will be marked as blocked</td>\n</tr>\n<tr>\n<td>inapplicable</td>\n<td>boolean</td>\n<td></td>\n<td>If true, the task will be marked as inapplicable</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n<td>Name of the task</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n<td>Optional remark about the task</td>\n</tr>\n<tr>\n<td>assignedUser</td>\n<td>string</td>\n<td></td>\n<td>User ID (GUID) or email address to assign the task to. If user not found, an error will be thrown</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array of strings</td>\n<td></td>\n<td>Array of tag names to associate with the task</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["tasks","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5707cc53-e572-43bd-81d2-514a81570fc3","name":"update task","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"deadline\": \"2025-12-31T00:00:00\",\n  \"status\": 1,\n  \"isBlocked\": false,\n  \"inapplicable\": false,\n  \"name\": \"Updated task name\",\n  \"remark\": \"Updated remark\",\n  \"assignedUser\": \"user@example.com\",\n  \"tags\": [\"tag1\", \"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/tasks/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"31b07a9c-df26-42b2-b18f-41696ef72daf"}],"id":"18640218-0708-4176-a95e-695271051074","description":"<h4 id=\"task-status-types\">Task status types</h4>\n<ul>\n<li>To-do = 0</li>\n<li>In progress = 1</li>\n<li>Done = 2</li>\n</ul>\n<h4 id=\"task-template-types\">Task template types</h4>\n<ul>\n<li>Actual task = 0</li>\n<li>Default time = 1</li>\n<li>Condition = 2</li>\n<li>Automatic mail = 3</li>\n</ul>\n","_postman_id":"18640218-0708-4176-a95e-695271051074","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Interactions","item":[{"name":"add interaction","id":"c44b73d0-6f58-49ac-988d-58729f96cf87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"This is a sample interaction title\",\n  \"description\": \"This is a sample description\",\n  \"relationIdentifier\": \"APR00001\",\n  \"interactiontype\": 0,\n  \"date\": \"31122020\",\n  \"time\": \"20:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/add","description":"<p>Required scope: <strong>interactions.write</strong></p>\n<p>Adds an interaction for given relation. The response will be an object containing one property: the id of the interaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>string</td>\n<td></td>\n<td>Either title or description is required.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td></td>\n<td>Either title or description is required.</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td>X</td>\n<td></td>\n</tr>\n<tr>\n<td>useridentifier</td>\n<td>string</td>\n<td></td>\n<td>User ID or email of the user for which the interaction should be created. If empty, the user for which the current call is executed will be used.</td>\n</tr>\n<tr>\n<td>interactiontype</td>\n<td>number</td>\n<td>X</td>\n<td>Note = 0  <br />Telephone = 1  <br />Email = 2  <br />Appointment = 3</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>X</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>time</td>\n<td>string</td>\n<td>X</td>\n<td>Format HH:mm</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["interactions","add"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1c15c507-96d3-48a9-a1a6-fbc3cb7789b7","name":"add interaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"This is a sample interaction title\",\n  \"description\": \"This is a sample description\",\n  \"relationIdentifier\": \"APR00001\",\n  \"interactiontype\": 0,\n  \"date\": \"31122020\",\n  \"time\": \"20:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{ \"id\": \"2e8ab81d-1dff-4bbf-811f-97dc9a2fbf9b\" }"}],"_postman_id":"c44b73d0-6f58-49ac-988d-58729f96cf87"},{"name":"update interaction","id":"877ef17f-78b5-41b9-9fcf-53794f178b69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"This is a sample interaction title\",\n  \"description\": \"This is a sample description\",\n  \"relationIdentifier\": \"APR00001\",\n  \"interactiontype\": 0,\n  \"date\": \"31122020\",\n  \"time\": \"20:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{{id}}","description":"<p>Required scope: <strong>interactions.write</strong></p>\n<p>Updates an interaction. If a field was not passed in the request body, it will not be modified.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Either title or description is required.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Either title or description is required.</td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>useridentifier</td>\n<td>string</td>\n<td>User ID or email of the user for which the interaction should be created. If empty, the user for which the current call is executed will be used.</td>\n</tr>\n<tr>\n<td>interactiontype</td>\n<td>number</td>\n<td>Note = 0  <br />Telephone = 1  <br />Email = 2  <br />Appointment = 3</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>time</td>\n<td>string</td>\n<td>Format HH:mm</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["interactions","{{id}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"167db8a4-8462-4471-be46-ab2259bf0500","name":"update interaction","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"This is a sample interaction title\",\n  \"description\": \"This is a sample description\",\n  \"relationIdentifier\": \"APR00001\",\n  \"interactiontype\": 0,\n  \"date\": \"31122020\",\n  \"time\": \"20:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"877ef17f-78b5-41b9-9fcf-53794f178b69"},{"name":"delete interaction","id":"c501ea65-7243-48cd-a08c-2c1191fd925f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/interactions/{id}","description":"<p>Required scope: <strong>interactions.write</strong></p>\n<p>Deletes an interaction.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["interactions","{id}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c56cb6de-2130-449f-83ce-5d506854ae61","name":"delete interaction","originalRequest":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/interactions/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c501ea65-7243-48cd-a08c-2c1191fd925f"},{"name":"add attachment to interaction","id":"499517cd-b3c3-4ad7-8fa0-f179e17b8cb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"09dc032d-d6b1-473e-96de-8f6b3f75ad01","src":"postman-cloud:///1efae869-a817-4200-8088-8f2591b54aa7"},{"key":"fileName","value":"invoice-template.docx","type":"text","uuid":"4a455eb2-5a62-4c65-abba-28ed9434e42c"}]},"url":"{{apiEndpointUrl}}/interactions/{interactionId}/attachment","description":"<p>Required scope: <strong>interactions.write and documents.write</strong></p>\n<p>Adds an attachment to an interaction. The response will be an object with the guid of the attachment.</p>\n<p>The request should be sent as a multipart/form-data request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>file</td>\n<td></td>\n</tr>\n<tr>\n<td>fileName</td>\n<td>string</td>\n<td>Full filename (with extension)</td>\n</tr>\n<tr>\n<td>documentType</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["interactions","{interactionId}","attachment"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"23de8bac-1b3b-44cc-929c-8689ac86892c","name":"add attachment to interaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"447ca01d-3943-47ab-9175-34ac6e86db51","value":null},{"key":"fileName","value":"meeting-notes.pdf","type":"text","uuid":"6583e300-ab13-4000-8a8a-f6875b96d47e"}],"options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{interactionId}/attachment"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"499517cd-b3c3-4ad7-8fa0-f179e17b8cb4"},{"name":"link interaction to todo","id":"820f4525-c6ff-438e-a42c-de549223690c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"uniqueIdentifier\": \"Guid of the Todo\",\n  \"linkType\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{interactionId}/links","description":"<p>Required scope: <strong>interactions.write</strong></p>\n<p>Adds a link from an interaction to a todo The response will be a no content response.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td>Id of the Todo</td>\n</tr>\n<tr>\n<td>linkType</td>\n<td>number</td>\n<td>Todo = 1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["interactions","{interactionId}","links"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b30cefa2-6d12-4dcd-872b-2f1b497046ba","name":"link interaction to todo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"uniqueIdentifier\": \"Guid of the Todo\",\n  \"linkType\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{interactionId}/links"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"uniqueIdentifier\": \"2e8ab81d-1dff-4bbf-811f-97dc9a2fbf9b\",\r\n    \"linkType\": 1\r\n}"}],"_postman_id":"820f4525-c6ff-438e-a42c-de549223690c"},{"name":"delete interaction link","id":"b4e2f6fb-ffbf-463e-9b3e-264042fb3ae9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n  \"uniqueIdentifier\": \"Guid of the Todo\",\n  \"linkType\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{interactionId}/links","description":"<p>Required scope: <strong>interactions.write</strong></p>\n<p>Removes a link from an interaction to a todo The response will be a no content response.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uniqueIdentifier</td>\n<td>string</td>\n<td>Id of the Todo</td>\n</tr>\n<tr>\n<td>linkType</td>\n<td>number</td>\n<td>Todo = 1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["interactions","{interactionId}","links"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0e158dbb-cf5a-4dc3-84c0-05ce5da73e7e","name":"delete interaction link","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n  \"uniqueIdentifier\": \"Guid of the Todo\",\n  \"linkType\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/interactions/{interactionId}/links"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"uniqueIdentifier\": \"2e8ab81d-1dff-4bbf-811f-97dc9a2fbf9b\",\r\n    \"linkType\": 1\r\n}"}],"_postman_id":"b4e2f6fb-ffbf-463e-9b3e-264042fb3ae9"}],"id":"400ce389-809a-4eb6-9ae7-3ab83956b978","description":"<h4 id=\"introduction\">Introduction</h4>\n<ul>\n<li><p>The relationship timeline provides a handy overview of all communication that you or a colleague have had with a relationship.</p>\n<ul>\n<li><p>On the timeline you can add notes, meeting reports or phone calls.</p>\n</li>\n<li><p>E-mails that the customer has sent to your AdminPulse inbox will also appear in the timeline.</p>\n</li>\n</ul>\n</li>\n<li><p>More information can be found <a href=\"https://adminpulse.zendesk.com/hc/articles/5434756079122\">here</a></p>\n</li>\n</ul>\n<h4 id=\"interaction-types\">Interaction types</h4>\n<ul>\n<li>Note = 0,</li>\n<li>Telephone = 1,</li>\n<li>Appointment = 3</li>\n</ul>\n","_postman_id":"400ce389-809a-4eb6-9ae7-3ab83956b978","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Invoices","item":[{"name":"list invoices","id":"7f114eec-cba6-4884-bdad-59194780c5a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/invoices?page=0&pageSize=100&lastSyncTime=01012020&relationIdentifier=APR00001&invoiceDateFrom=&invoiceDateUntil=&exported&sent&paid&includeDocuments&includeRegistrations&includeWrittenOffInternally&onlyWrittenOffInternally&relationPaymentMethod&companyId","description":"<p>Required scope: <strong>invoices.read</strong></p>\n<p>Returns a list of invoices with the following attributes:</p>\n<p><strong>Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>Guid</td>\n<td>Identifier of the own company for which to retrieve invoices</td>\n</tr>\n<tr>\n<td>invoiceNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>relationIdentifier</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>invoiceDate</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>vatExclusiveAmount</td>\n<td>decimal</td>\n<td>The total amount of the invoice VAT excluded</td>\n</tr>\n<tr>\n<td>vatInclusiveAmount</td>\n<td>decimal</td>\n<td>The total amount of the invoice VAT included</td>\n</tr>\n<tr>\n<td>vatAmount</td>\n<td>decimal</td>\n<td>The VAT amount of the invoice</td>\n</tr>\n<tr>\n<td>originalAmount</td>\n<td>decimal</td>\n<td>The original amount (excl VAT) of the invoice before any changes were made during the invoicing process</td>\n</tr>\n<tr>\n<td>adjustedAmount</td>\n<td>decimal</td>\n<td>The adjusted amount of the invoice after changes were made during the invoicing process. If the originalAmount is 100 and the vatExclusiveAmount is 500, the adjustedAmount will be 400.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>outstanding or paid</td>\n</tr>\n<tr>\n<td>invoiceType</td>\n<td>number</td>\n<td>Forfait = 1  <br />Advance (voorschot) = 2  <br />Settlement (afrekening) = 3  <br />Registrations (regie) = 4  <br />Free = 5  <br />Intra-company (interne doorfacturatie) = 6</td>\n</tr>\n<tr>\n<td>structuredReference</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>text</td>\n<td>string</td>\n<td>The invoice text (automatically filled out by the schedule)</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>The invoice descripton</td>\n</tr>\n<tr>\n<td>sent</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>paid</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>isCreditnote</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>discountType</td>\n<td>number</td>\n<td>Percentage = 0  <br />Amount VAT included = 1  <br />Amount VAT excluded = 2</td>\n</tr>\n<tr>\n<td>discountValue</td>\n<td>decimal</td>\n<td>The value of the discount. If discountType is percentage, the value will be returned as a decimal. For example 5% discount will be 0.05</td>\n</tr>\n<tr>\n<td>transactionType</td>\n<td>number</td>\n<td>StandardRate = 0  <br />Contractor = 1  <br />Intracom services = 2  <br />Intracom goods = 3  <br />Export = 4  <br />Exempted = 5</td>\n</tr>\n<tr>\n<td>vatExemptionReason</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>pdfUrl</td>\n<td>string</td>\n<td>The location from which the invoice PDF can be downloaded. The link is only valid for 120 minutes.**  <br />This attribute is only included if the includeDocuments parameter was set to true.**</td>\n</tr>\n<tr>\n<td>xmlUrl</td>\n<td>string</td>\n<td>The location from which the invoice URL can be downloaded. The link is only valid for 120 minutes.  <br /><strong>This attribute is only included if the includeDocuments parameter was set to true.</strong></td>\n</tr>\n<tr>\n<td>relationPaymentMethod</td>\n<td>number</td>\n<td>Manual payment = 0  <br />Direct debit = 1</td>\n</tr>\n<tr>\n<td>assignmentIdentifier</td>\n<td>string</td>\n<td>The code of the assignment template</td>\n</tr>\n<tr>\n<td>assignmentTemplateId</td>\n<td>string</td>\n<td>The ID of the assignment template</td>\n</tr>\n<tr>\n<td>invoiceLines</td>\n<td>array of invoice lines. See invoice line attribute below</td>\n<td></td>\n</tr>\n<tr>\n<td>assistant</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>assistantEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>assistantBackup</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>assistantBackupEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>associate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>associateEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>responsible</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>responsibleEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>billingUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>billingUserEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>seniorUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>seniorUserEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>array of attachments</td>\n<td>Each attachment has an attribute name which is the filename and an attribute url which you can use to download the specific attachment</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Invoice line</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>ledger</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>originalAmount</td>\n<td>decimal</td>\n<td>The original amount (excl VAT) of the invoice before any changes were made during the invoicing process</td>\n</tr>\n<tr>\n<td>adjustedAmount</td>\n<td>decimal</td>\n<td>The adjusted amount of the invoice after changes were made during the invoicing process. If the originalAmount is 100 and the vatExclusiveAmount is 500, the adjustedAmount will be 400.</td>\n</tr>\n<tr>\n<td>priceListItemCode</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>vatPercentage</td>\n<td>decimal</td>\n<td>exposed as decimal, where a VAT percentage of 5% is 0.05</td>\n</tr>\n<tr>\n<td>vatType</td>\n<td>number</td>\n<td>Standard rate = 0  <br />Exempted = 1</td>\n</tr>\n<tr>\n<td>vatAmount</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>registrations</td>\n<td>array of registrations. See <a href=\"https://developer.adminpulse.be/#29123a16-5e2d-430b-9528-0969f85a11e2\">https://developer.adminpulse.be/#29123a16-5e2d-430b-9528-0969f85a11e2</a></td>\n<td></td>\n</tr>\n<tr>\n<td>lineType</td>\n<td></td>\n<td>Work = 0  <br />Cost = 1  <br />Travel = 2  <br />Free = 3  <br />Advance = 5  <br />SettledAdvance = 6  <br />Text = 7  <br />AdministrativeCost = 8  <br />WorkFixedPrice = 9</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["invoices"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>0-based index of the desired page. Starts at 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Number of results per page. Maximum 400</p>\n","type":"text/plain"},"key":"pageSize","value":"100"},{"description":{"content":"<p>Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"lastSyncTime","value":"01012020"},{"key":"relationIdentifier","value":"APR00001"},{"description":{"content":"<p>Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"invoiceDateFrom","value":""},{"description":{"content":"<p>Format: ddMMyyyy</p>\n","type":"text/plain"},"key":"invoiceDateUntil","value":""},{"description":{"content":"<p>true / false</p>\n","type":"text/plain"},"key":"exported","value":null},{"description":{"content":"<p>true / false</p>\n","type":"text/plain"},"key":"sent","value":null},{"description":{"content":"<p>true / false</p>\n","type":"text/plain"},"key":"paid","value":null},{"description":{"content":"<p>true / false. If true, a link to both the invoice XML and PDF will be included in the returned invoices</p>\n","type":"text/plain"},"key":"includeDocuments","value":null},{"description":{"content":"<p>true / false. If true, the registrations linked to the invoice lines will be included in the returned invoices</p>\n","type":"text/plain"},"key":"includeRegistrations","value":null},{"description":{"content":"<p>true / false. When set to true, includes invoices that have been written off internally along with finalized invoices. When false (default), only finalized invoices are returned.</p>\n","type":"text/plain"},"key":"includeWrittenOffInternally","value":null},{"description":{"content":"<p>true / false. When set to true, returns only invoices that have been written off internally, excluding finalized invoices. </p>\n","type":"text/plain"},"key":"onlyWrittenOffInternally","value":null},{"description":{"content":"<p>Can be empty. Use 0 for manual payment, 1 for direct debit</p>\n","type":"text/plain"},"key":"relationPaymentMethod","value":null},{"description":{"content":"<p>Can be empty. If filled out, only invoices of the desired company will be returned</p>\n","type":"text/plain"},"key":"companyId","value":null}],"variable":[]}},"response":[{"id":"278b9086-7052-47e9-a72a-57190479f67f","name":"list invoices","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/invoices?page=0&pageSize=50&lastSyncTime=01012020&relationIdentifier=APR00001&invoiceDateFrom=&invoiceDateUntil=&exported&sent&paid&includeDocuments&includeRegistrations&relationPaymentMethod","host":["{{apiEndpointUrl}}"],"path":["invoices"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"50"},{"key":"lastSyncTime","value":"01012020","description":"Format: ddMMyyyy"},{"key":"relationIdentifier","value":"APR00001"},{"key":"invoiceDateFrom","value":"","description":"Format: ddMMyyyy"},{"key":"invoiceDateUntil","value":"","description":"Format: ddMMyyyy"},{"key":"exported","value":null,"description":"true / false"},{"key":"sent","value":null,"description":"true / false"},{"key":"paid","value":null,"description":"true / false"},{"key":"includeDocuments","value":null,"description":"true / false. If true, a link to both the invoice XML and PDF will be included in the returned invoices"},{"key":"includeRegistrations","value":null,"description":"true / false. If true, the registrations linked to the invoice lines will be included in the returned invoices"},{"key":"relationPaymentMethod","value":null,"description":"Can be empty. Use 0 for manual payment, 1 for direct debit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"223946B1-E345-EB11-8FED-00155D0ECE5F\",\n            \"invoiceNumber\": \"FAC20-00316\",\n            \"relationIdentifier\": \"APR00167\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"34681869-0DD6-4282-8E09-E5419A3C5E29\",\n            \"invoiceDate\": \"24122020\",\n            \"dueDate\": \"07012021\",\n            \"vatExclusiveAmount\": 120.00,\n            \"vatInclusiveAmount\": 145.20,\n            \"vatAmount\": 25.20,\n            \"originalAmount\": 120.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 145.20,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"316/2412/20162\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 31/12/2020\\nlastRegistrationMonthLastDay : 31/12/2020\\ncurrentMonth :12\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : december\\ncurrentQuarterName : vierde\\nnextMonthName : januari\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cf3c962ed-e345-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A46Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00316.pdf%3B+filename*%3Dutf-8%27%27FAC20-00316.pdf&rsct=application%2Fpdf&sig=qCcDysI5Wx46f%2F%2FZyr3mOnGOhWlaSTG4atKmoQhH0Xw%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cf4c962ed-e345-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A46Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00316.xml%3B+filename*%3Dutf-8%27%27FAC20-00316.xml&rsct=application%2Fxml&sig=uB9sjI61kzzjcwY3My8jPBhVGf32KBlE1DFEgfU91qw%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"243946b1-e345-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 25.20,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": [\n                {\n                    \"name\": \"peppol factuur.txt\",\n                    \"url\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-attachment%5Cbb5c0c00-9a2d-43d1-253c-08ddb2f6bf71?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3D%22peppol+factuur.txt%22%3B+filename*%3Dutf-8%27%27peppol%2520factuur.txt&rsct=text%2Fplain&sig=7LXRVvDUDMPcsPke004RsKVgNwYeBfjgDUSYzInhU2E%3D\"\n                }\n            ]\n        },\n        {\n            \"id\": \"1F3946B1-E345-EB11-8FED-00155D0ECE5F\",\n            \"invoiceNumber\": \"FAC20-00315\",\n            \"relationIdentifier\": \"APR00168\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"FC7E13CC-4245-45C3-86D8-A78FFD2A8127\",\n            \"invoiceDate\": \"24122020\",\n            \"dueDate\": \"07012021\",\n            \"vatExclusiveAmount\": 25.00,\n            \"vatInclusiveAmount\": 30.25,\n            \"vatAmount\": 5.25,\n            \"originalAmount\": 25.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 30.25,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"315/2412/20183\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cf1c962ed-e345-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00315.pdf%3B+filename*%3Dutf-8%27%27FAC20-00315.pdf&rsct=application%2Fpdf&sig=0TChlHmbcHYxAeBdCz2ucwH%2B%2F0SaJ3ztEExbQNz2WU8%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cf2c962ed-e345-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00315.xml%3B+filename*%3Dutf-8%27%27FAC20-00315.xml&rsct=application%2Fxml&sig=xFabAWqzvMvsV4PLK4L6bOORbFt%2FaV0nKqMosTOXe5M%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"213946b1-e345-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Boekhouding\",\n                    \"remark\": null,\n                    \"quantity\": 0.50000,\n                    \"unitPrice\": 50.00000,\n                    \"ledger\": null,\n                    \"amount\": 25.00,\n                    \"priceListItemCode\": \"100.1\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 5.25,\n                    \"originalAmount\": 25.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Senior Smet\",\n            \"responsibleEmail\": \"invalid@invalid.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"71B9220C-7A22-4B06-801A-1A48D5A777A5\",\n            \"invoiceNumber\": \"FAC20-00314\",\n            \"relationIdentifier\": \"APR00159\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"E58EC542-3ED9-4A10-9253-21E6D54BD4B5\",\n            \"invoiceDate\": \"23122020\",\n            \"dueDate\": \"06012021\",\n            \"vatExclusiveAmount\": 673.28,\n            \"vatInclusiveAmount\": 814.67,\n            \"vatAmount\": 141.39,\n            \"originalAmount\": 673.28,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 814.67,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"314/2312/20114\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cda8da28f-0d45-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00314.pdf%3B+filename*%3Dutf-8%27%27FAC20-00314.pdf&rsct=application%2Fpdf&sig=9MFqJLugZeLNjQto5OZs2eP04zCav0b0TMLRoLS4DUo%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cdb8da28f-0d45-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00314.xml%3B+filename*%3Dutf-8%27%27FAC20-00314.xml&rsct=application%2Fxml&sig=W1GaPM8M5Udft7ODbjsDviBUIBgKMPZ7tIE%2B%2FBP5Hk0%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"5a812cc1-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -989.73,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"214d4c1c-fc9f-464c-91e7-656f5c0d355b\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"dcfac206-bcb7-414c-b134-ead4453d6730\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1d5da6af-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"215da6af-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"IC Kost\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 30.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"IC\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 30.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"205da6af-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Product 1\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": null,\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"PRD01\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 15.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"5d17f5f5-ef40-4bf1-adbe-e6cfdd36215a\",\n                    \"description\": \"Werk\",\n                    \"remark\": null,\n                    \"quantity\": 1.50000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": null,\n                    \"amount\": 22.50,\n                    \"priceListItemCode\": \"T-WERK\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 22.50000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                },\n                {\n                    \"id\": \"dea20858-0d45-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Kosten neerlegging jaarrekening\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 4.54700,\n                    \"ledger\": null,\n                    \"amount\": 4.55,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 4.55000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"dfa20858-0d45-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Km\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 1.23000,\n                    \"ledger\": null,\n                    \"amount\": 1.23,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 141.39,\n                    \"originalAmount\": 1.23000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 2\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Glenn Cambré\",\n            \"responsibleEmail\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"5A663E67-6E44-EB11-8FED-00155D0ECE5F\",\n            \"invoiceNumber\": \"FAC20-00313\",\n            \"relationIdentifier\": \"APR00017\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"5B248805-F062-4337-A8E9-2B6DFCB053AB\",\n            \"invoiceDate\": \"22122020\",\n            \"dueDate\": \"05012021\",\n            \"vatExclusiveAmount\": 303.91,\n            \"vatInclusiveAmount\": 367.73,\n            \"vatAmount\": 63.82,\n            \"originalAmount\": 303.91,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 367.73,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"313/2212/20142\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 31/12/2020\\nlastRegistrationMonthLastDay : 31/12/2020\\ncurrentMonth :12\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : december\\ncurrentQuarterName : vierde\\nnextMonthName : januari\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C3e541174-6e44-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00313.pdf%3B+filename*%3Dutf-8%27%27FAC20-00313.pdf&rsct=application%2Fpdf&sig=JC62pC4JsFQi4yYNt9aZkZO47qRd1W1McL1oJYbSd1s%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C3f541174-6e44-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00313.xml%3B+filename*%3Dutf-8%27%27FAC20-00313.xml&rsct=application%2Fxml&sig=BadMg2IX2Y8eepWJLaOlUbK89yUAho97SSIVY61z%2BU0%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"5b663e67-6e44-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 300.00000,\n                    \"ledger\": null,\n                    \"amount\": 300.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -127.64,\n                    \"originalAmount\": 300.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"5d663e67-6e44-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Km\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 1.45000,\n                    \"ledger\": null,\n                    \"amount\": 1.45,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 63.82,\n                    \"originalAmount\": 1.45000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 2\n                },\n                {\n                    \"id\": \"5c663e67-6e44-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Kosten neerlegging griffie\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 1.23000,\n                    \"ledger\": null,\n                    \"amount\": 1.23,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 63.82,\n                    \"originalAmount\": 1.23000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"5e663e67-6e44-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Kosten neerlegging jaarrekening\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 1.23000,\n                    \"ledger\": null,\n                    \"amount\": 1.23,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 63.82,\n                    \"originalAmount\": 1.23000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"97763254-4C97-4D40-8EE4-2D56ACD210BF\",\n            \"invoiceNumber\": \"FAC20-00312\",\n            \"relationIdentifier\": \"APR00192\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"B9769ECE-C0B0-469D-BA12-0731FA7FED0A\",\n            \"invoiceDate\": \"22122020\",\n            \"dueDate\": \"05012021\",\n            \"vatExclusiveAmount\": 450.00,\n            \"vatInclusiveAmount\": 544.50,\n            \"vatAmount\": 94.50,\n            \"originalAmount\": 450.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 544.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"312/2212/20163\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C10a2d19a-6d44-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00312.pdf%3B+filename*%3Dutf-8%27%27FAC20-00312.pdf&rsct=application%2Fpdf&sig=XPx6CHSxLgSty3OBDXxzjtNHXiNrikxQqXiN%2FEe8jWc%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"8ec9c3dc-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -94.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"a900ed5d-821d-46dc-982d-9e0d35dd51ba\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 94.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"928508c6-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 94.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"3AFAE4BD-9536-EB11-8441-00155D4AA2CB\",\n            \"invoiceNumber\": \"FAC20-00311\",\n            \"relationIdentifier\": \"APR00180\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"CA7AD957-7C32-49D0-9D16-9D08125C1072\",\n            \"invoiceDate\": \"22122020\",\n            \"dueDate\": \"05012021\",\n            \"vatExclusiveAmount\": 200.00,\n            \"vatInclusiveAmount\": 242.00,\n            \"vatAmount\": 42.00,\n            \"originalAmount\": 200.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 242.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"311/2212/20184\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cb16935fb-6b44-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00311.pdf%3B+filename*%3Dutf-8%27%27FAC20-00311.pdf&rsct=application%2Fpdf&sig=KNvdvvovQA%2Bvmt3iWt3oYspDKEjuUyH9AqlxMGfry%2FM%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cb26935fb-6b44-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00311.xml%3B+filename*%3Dutf-8%27%27FAC20-00311.xml&rsct=application%2Fxml&sig=4CGt%2BEAlsG1pMSVfgwGLQp5%2BAh1I2FSpeXFXHXHzvs0%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"3bfae4bd-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 200.00000,\n                    \"ledger\": null,\n                    \"amount\": 200.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 42.00,\n                    \"originalAmount\": 200.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"2182BD03-938D-4373-B291-9D9C87A04483\",\n            \"invoiceNumber\": \"FAC20-00309\",\n            \"relationIdentifier\": \"APR00049\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"3F8DA278-A103-4D62-BF7E-B70079EC5C1E\",\n            \"invoiceDate\": \"22122020\",\n            \"dueDate\": \"05012021\",\n            \"vatExclusiveAmount\": 600.00,\n            \"vatInclusiveAmount\": 726.00,\n            \"vatAmount\": 126.00,\n            \"originalAmount\": 600.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 726.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"309/2212/20129\",\n            \"description\": null,\n            \"text\": \"FR - Forfait met placeholders\\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : novembre\\ncurrentQuarterName : quatrième\\nnextMonthName : décembre\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C06a24983-6744-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00309.pdf%3B+filename*%3Dutf-8%27%27FAC20-00309.pdf&rsct=application%2Fpdf&sig=06UdZQkqetdZIIs%2BVPH3OBN63IunnvirkpuOOwLrNvk%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C0ba24983-6744-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00309.xml%3B+filename*%3Dutf-8%27%27FAC20-00309.xml&rsct=application%2Fxml&sig=R4wMzFzG86lt0kN8hoVrCf3GoQ0LoI2r4l15f8Qm1D0%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"a7ae2fd0-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -252.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"935373b9-f100-4b28-9aca-3a39349084c2\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"a39701d6-6526-4707-8e8a-a50ddd534616\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"3ffae4bd-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"D0D4874F-0352-4F86-9D59-4488FC10F7D7\",\n            \"invoiceNumber\": \"FAC20-00308\",\n            \"relationIdentifier\": \"APR00214\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"3737F32B-258A-4BF6-BA07-909CFE27A8B9\",\n            \"invoiceDate\": \"18122020\",\n            \"dueDate\": \"01012021\",\n            \"vatExclusiveAmount\": 280.00,\n            \"vatInclusiveAmount\": 338.80,\n            \"vatAmount\": 58.80,\n            \"originalAmount\": 280.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 338.80,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"308/1812/20178\",\n            \"description\": null,\n            \"text\": \"Aangepaste factuurtekst\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cd8562c0c-0e41-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00308.pdf%3B+filename*%3Dutf-8%27%27FAC20-00308.pdf&rsct=application%2Fpdf&sig=4qiaSlsBxLbIZdM9fD5GmYUZ%2Fgzmslc92r88xxoN8%2FQ%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cd9562c0c-0e41-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00308.xml%3B+filename*%3Dutf-8%27%27FAC20-00308.xml&rsct=application%2Fxml&sig=rMfXenbD2gMkXeDznPMXD0dHJh%2BDha%2B73tybioyp3qs%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"53fe27d2-021f-eb11-8441-00155d4ac8d6\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 70.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 70.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -117.60,\n                    \"originalAmount\": 70.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"409bddc6-406f-47a6-bf9d-b55cdd1cd2d3\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 70.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 70.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 58.80,\n                    \"originalAmount\": 70.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"90eb2245-1af7-4998-920e-fb471d3d3490\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 70.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 70.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 58.80,\n                    \"originalAmount\": 70.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"3dfae4bd-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 70.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 70.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 58.80,\n                    \"originalAmount\": 70.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"D4A4759C-342F-4C1C-9E63-5DB16497B92D\",\n            \"invoiceNumber\": \"FAC20-00307\",\n            \"relationIdentifier\": \"APR00206\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"165D7751-70A8-4B79-949F-90742F3CB677\",\n            \"invoiceDate\": \"18122020\",\n            \"dueDate\": \"01012021\",\n            \"vatExclusiveAmount\": 645.00,\n            \"vatInclusiveAmount\": 780.45,\n            \"vatAmount\": 135.45,\n            \"originalAmount\": 645.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 780.45,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"307/1812/20102\",\n            \"description\": null,\n            \"text\": \"FR - Forfait met placeholders\\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : novembre\\ncurrentQuarterName : quatrième\\nnextMonthName : décembre\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cd6562c0c-0e41-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00307.pdf%3B+filename*%3Dutf-8%27%27FAC20-00307.pdf&rsct=application%2Fpdf&sig=oq7KUqa37irw58XkQ0EFlBlfBkbyHGlmyvaZq80VAnc%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cd7562c0c-0e41-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00307.xml%3B+filename*%3Dutf-8%27%27FAC20-00307.xml&rsct=application%2Fxml&sig=ucoDIe9FwjoZ%2BYOGRMXJMZLcX5iVC798wA62Ka2nyyQ%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"36806bda-021f-eb11-8441-00155d4ac8d6\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -541.80,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"b545842d-3522-4327-813d-30647522c48c\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 135.45,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"0c65a4f9-4a35-4672-a736-e7260bc1d294\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 135.45,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"0a57d1c4-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 135.45,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"97609002-ac38-4cda-be8a-a4f8c10045c9\",\n                    \"description\": \"IC Kost\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 30.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"IC\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 135.45,\n                    \"originalAmount\": 30.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"b41b7fed-421b-4bf1-bd26-903dc5bc9a31\",\n                    \"description\": \"Product 1\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": null,\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"PRD01\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 135.45,\n                    \"originalAmount\": 15.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"C2E0AE57-69AF-4E31-8812-1CE31B34715E\",\n            \"invoiceNumber\": \"FAC20-00306\",\n            \"relationIdentifier\": \"APR00020\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"9FD60221-9DB5-4C5D-8F66-B48C1470CC5D\",\n            \"invoiceDate\": \"16122020\",\n            \"dueDate\": \"30122020\",\n            \"vatExclusiveAmount\": 600.00,\n            \"vatInclusiveAmount\": 726.00,\n            \"vatAmount\": 126.00,\n            \"originalAmount\": 600.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 726.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"306/1612/20137\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C8efb96b5-2040-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00306.pdf%3B+filename*%3Dutf-8%27%27FAC20-00306.pdf&rsct=application%2Fpdf&sig=SMGR31%2BsppJu4N7Ji2vi%2F96l%2BP%2BjlNv7qNjXM6jliFs%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C8ffb96b5-2040-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00306.xml%3B+filename*%3Dutf-8%27%27FAC20-00306.xml&rsct=application%2Fxml&sig=bxWsQivDYsvMMeDiZBrnNssSh7yfb%2FoKe8LtGNgZ%2FJQ%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"87c9c3dc-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"7000\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -252.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"d48b9713-37a2-4d38-89ea-0217c51c67dd\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"7000\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"a6d05111-4ad1-46d2-b711-f817ea80009d\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"7000\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"908508c6-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"7000\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"ACAE2FD0-021F-EB11-8441-00155D4AEE80\",\n            \"invoiceNumber\": \"FAC20-00305\",\n            \"relationIdentifier\": \"APR00068\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"447993C4-B036-417C-B6E8-BEB88083C7AA\",\n            \"invoiceDate\": \"16122020\",\n            \"dueDate\": \"30122020\",\n            \"vatExclusiveAmount\": 384.00,\n            \"vatInclusiveAmount\": 464.64,\n            \"vatAmount\": 80.64,\n            \"originalAmount\": 384.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 464.64,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"305/1612/20158\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cc0c51c33-d33f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00305.pdf%3B+filename*%3Dutf-8%27%27FAC20-00305.pdf&rsct=application%2Fpdf&sig=x5fyGvYuEgPZN0GVFXNpGXDHTN0m52SG%2F%2BI%2BumxLBQc%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cc1c51c33-d33f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00305.xml%3B+filename*%3Dutf-8%27%27FAC20-00305.xml&rsct=application%2Fxml&sig=LUGZXh9WpGZwOMhYynVeMORuTQ3Y27WoaO%2BXTRWUUVw%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"92ad37d6-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -403.20,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1a1108c0-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 80.64,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"96ad37d6-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Elk kwartaal\",\n                    \"remark\": null,\n                    \"quantity\": 0.00000,\n                    \"unitPrice\": 0.00000,\n                    \"ledger\": null,\n                    \"amount\": 0.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.0000,\n                    \"vatType\": 0,\n                    \"vatAmount\": 80.64,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"94ad37d6-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Kost\",\n                    \"remark\": null,\n                    \"quantity\": 7.00000,\n                    \"unitPrice\": 1.00000,\n                    \"ledger\": null,\n                    \"amount\": 7.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 80.64,\n                    \"originalAmount\": 7.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"1b1108c0-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Kost\",\n                    \"remark\": null,\n                    \"quantity\": 7.00000,\n                    \"unitPrice\": 11.00000,\n                    \"ledger\": null,\n                    \"amount\": 77.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 80.64,\n                    \"originalAmount\": 77.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"95ad37d6-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Tweemaandelijks even maanden\",\n                    \"remark\": null,\n                    \"quantity\": 0.00000,\n                    \"unitPrice\": 0.00000,\n                    \"ledger\": null,\n                    \"amount\": 0.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.0000,\n                    \"vatType\": 0,\n                    \"vatAmount\": 80.64,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"1c1108c0-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Tweemaandelijks oneven maanden\",\n                    \"remark\": null,\n                    \"quantity\": 0.00000,\n                    \"unitPrice\": 0.00000,\n                    \"ledger\": null,\n                    \"amount\": 0.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.0000,\n                    \"vatType\": 0,\n                    \"vatAmount\": 80.64,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"A94E3D92-B0E2-499B-8D20-1FE5E1CA0507\",\n            \"invoiceNumber\": \"FAC20-00304\",\n            \"relationIdentifier\": \"APR00303\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"2AD157B4-411D-4284-B980-47205A7B12F4\",\n            \"invoiceDate\": \"16122020\",\n            \"dueDate\": \"30122020\",\n            \"vatExclusiveAmount\": 450.00,\n            \"vatInclusiveAmount\": 544.50,\n            \"vatAmount\": 94.50,\n            \"originalAmount\": 450.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 544.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"304/1612/20179\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C53a6244e-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00304.pdf%3B+filename*%3Dutf-8%27%27FAC20-00304.pdf&rsct=application%2Fpdf&sig=B0I1hkgU9mS6CxNOQNKrlY8Fr8oMIylkQBU2eh0xOJk%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"abae2fd0-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -94.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"37b6646f-3ed0-44df-a5fb-4e6b051fb4af\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 94.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"8c8508c6-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 94.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"9266094B-FD4C-4EC6-87E3-1487E523DFCD\",\n            \"invoiceNumber\": \"FAC20-00303\",\n            \"relationIdentifier\": \"APR00017\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"5B248805-F062-4337-A8E9-2B6DFCB053AB\",\n            \"invoiceDate\": \"16122020\",\n            \"dueDate\": \"30122020\",\n            \"vatExclusiveAmount\": 1200.00,\n            \"vatInclusiveAmount\": 1452.00,\n            \"vatAmount\": 252.00,\n            \"originalAmount\": 1200.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 1452.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"303/1612/20103\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C59a6244e-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00303.pdf%3B+filename*%3Dutf-8%27%27FAC20-00303.pdf&rsct=application%2Fpdf&sig=LY91UPv%2BUS%2Ft2goAestc7%2FGRV5HZ6Z1oO6q65Gu6bL4%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C5aa6244e-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00303.xml%3B+filename*%3Dutf-8%27%27FAC20-00303.xml&rsct=application%2Fxml&sig=Ixwk18RaLBJZgUMOq3Gp34G2rX0z257DT3TICEXx0rk%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"a1ad37d6-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 300.00000,\n                    \"ledger\": null,\n                    \"amount\": 300.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -504.00,\n                    \"originalAmount\": 300.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"44f23270-bcfd-472f-af42-525810b715ba\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 300.00000,\n                    \"ledger\": null,\n                    \"amount\": 300.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 252.00,\n                    \"originalAmount\": 300.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1175acc5-01a4-4b40-ad95-cf7375235a88\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 300.00000,\n                    \"ledger\": null,\n                    \"amount\": 300.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 252.00,\n                    \"originalAmount\": 300.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"8f8508c6-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 300.00000,\n                    \"ledger\": null,\n                    \"amount\": 300.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 252.00,\n                    \"originalAmount\": 300.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"240974E0-E6C9-4FBB-9BBE-7B82569122B3\",\n            \"invoiceNumber\": \"FAC20-00302\",\n            \"relationIdentifier\": \"APR00115\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"197DE5F1-8D79-4A84-99C5-BFA6FBA450A5\",\n            \"invoiceDate\": \"16122020\",\n            \"dueDate\": \"30122020\",\n            \"vatExclusiveAmount\": 600.00,\n            \"vatInclusiveAmount\": 726.00,\n            \"vatAmount\": 126.00,\n            \"originalAmount\": 600.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 726.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"302/1612/20124\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C55a6244e-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00302.pdf%3B+filename*%3Dutf-8%27%27FAC20-00302.pdf&rsct=application%2Fpdf&sig=c0xDzI34TYdVOJB4gqeHySnAv4ZjXj9SeTbTFc4Q8YA%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C58a6244e-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00302.xml%3B+filename*%3Dutf-8%27%27FAC20-00302.xml&rsct=application%2Fxml&sig=m2pKxteUNNZkoRzAIQYnETaUWPd7OdCxgYwNRq%2BJ37I%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"a6ad37d6-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -252.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"2448f41f-e483-4e00-bc6d-f3ca8db627f8\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"c8a1446a-7184-437e-9353-f4767f8615a4\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1457d1c4-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"9D18C7D2-8B21-46FA-91E0-13E0E56CA544\",\n            \"invoiceNumber\": \"FAC20-00301\",\n            \"relationIdentifier\": \"APR00126\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"82107A67-CAD4-4FDA-B666-40B21E418318\",\n            \"invoiceDate\": \"16122020\",\n            \"dueDate\": \"30122020\",\n            \"vatExclusiveAmount\": 600.00,\n            \"vatInclusiveAmount\": 726.00,\n            \"vatAmount\": 126.00,\n            \"originalAmount\": 600.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 726.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"301/1612/20145\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C5ba6244e-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00301.pdf%3B+filename*%3Dutf-8%27%27FAC20-00301.pdf&rsct=application%2Fpdf&sig=pj8%2BRsOJil%2B5GwwYwvhj8hsVi0KbhYhHkzff8PYZn8o%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cda643c54-d03f-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00301.xml%3B+filename*%3Dutf-8%27%27FAC20-00301.xml&rsct=application%2Fxml&sig=YWDygWN6OsRvIGzxDidTOWee%2FCBwqCJ79Vrn%2BTWRe%2BM%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"40806bda-021f-eb11-8441-00155d4ac8d6\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -252.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"83f7befd-5cc1-4d67-9442-d104f6e1aec1\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1a50cd09-1a16-47d8-b648-e7cf496de478\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"8e8508c6-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"FF77A39F-9901-4AA2-8B0D-3A974A864C8A\",\n            \"invoiceNumber\": \"FAC20-00300\",\n            \"relationIdentifier\": \"APR00167\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"34681869-0DD6-4282-8E09-E5419A3C5E29\",\n            \"invoiceDate\": \"15122020\",\n            \"dueDate\": \"29122020\",\n            \"vatExclusiveAmount\": 550.00,\n            \"vatInclusiveAmount\": 665.50,\n            \"vatAmount\": 115.50,\n            \"originalAmount\": 550.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 665.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"300/1512/20173\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C590a30f6-dd3e-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00300.pdf%3B+filename*%3Dutf-8%27%27FAC20-00300.pdf&rsct=application%2Fpdf&sig=mErylZOpu2R9Lx3QY0z3jc3etAvCevnwiEYPQ8tKFqA%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C5a0a30f6-dd3e-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00300.xml%3B+filename*%3Dutf-8%27%27FAC20-00300.xml&rsct=application%2Fxml&sig=a7uXGz2gnPmVnsumTemf5O7GZJgTrXrCZmsa5zor7o0%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"a6ae2fd0-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -577.50,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"28b93a28-7ae0-4ade-ab53-2a1e1d23c54d\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 115.50,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"f9e157f2-7ee2-4d2d-810c-672c28563a82\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 115.50,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"131108c0-9536-eb11-8441-00155d4aae54\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 115.50,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"3b9ca50c-9b21-4cbd-87ae-3d7bd5206188\",\n                    \"description\": \"IC Kost\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 30.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"IC\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 115.50,\n                    \"originalAmount\": 30.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"fe7a4e98-83c3-4620-ab5b-349968805343\",\n                    \"description\": \"Product 1\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": null,\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"PRD01\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 115.50,\n                    \"originalAmount\": 15.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"d87a97cd-dd3e-eb11-8fed-00155d0ece5f\",\n                    \"description\": \"Werk\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 25.00000,\n                    \"ledger\": null,\n                    \"amount\": 25.00,\n                    \"priceListItemCode\": \"T-WERK\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 115.50,\n                    \"originalAmount\": 25.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"4B6F7581-ADEB-45AA-90AC-B567B3817B29\",\n            \"invoiceNumber\": \"FAC20-00299\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"AE38C976-C626-40A5-A8AD-42478D2D245F\",\n            \"invoiceDate\": \"14122020\",\n            \"dueDate\": \"28122020\",\n            \"vatExclusiveAmount\": 630.00,\n            \"vatInclusiveAmount\": 762.30,\n            \"vatAmount\": 132.30,\n            \"originalAmount\": 630.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 762.30,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"299/1412/20104\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/11/2020\\nlastRegistrationMonthLastDay : 30/11/2020\\ncurrentMonth :11\\ncurrentQuarter: 4\\ncurrentYear: 2020\\ncurrentMonthName : november\\ncurrentQuarterName : vierde\\nnextMonthName : december\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cc233abaf-0d3e-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00299.pdf%3B+filename*%3Dutf-8%27%27FAC20-00299.pdf&rsct=application%2Fpdf&sig=08z6uDL4RCSvt9S917pR35MvRvMsdUEUn0Sn2vvdySg%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"88c9c3dc-021f-eb11-8441-00155d4aee80\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -396.90,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"442ae77e-0589-42b1-a5e0-e9bee41d74c4\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 132.30,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"8e696ed2-19b9-4b81-aa03-ebce654bba14\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 132.30,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1657d1c4-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 132.30,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"35107466-525c-426c-a58f-907fbacc9f3a\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.50000,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 132.30,\n                    \"originalAmount\": 30.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"1C57D1C4-9536-EB11-8441-00155D4AA2CB\",\n            \"invoiceNumber\": \"FAC20-00298\",\n            \"relationIdentifier\": \"APR00254\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"869B4E6D-5E04-4FB3-8C5D-BD2DEC964936\",\n            \"invoiceDate\": \"14122020\",\n            \"dueDate\": \"28122020\",\n            \"vatExclusiveAmount\": 122.00,\n            \"vatInclusiveAmount\": 147.62,\n            \"vatAmount\": 25.62,\n            \"originalAmount\": 122.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 147.62,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"298/1412/20125\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C061c2b26-fc3d-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00298.pdf%3B+filename*%3Dutf-8%27%27FAC20-00298.pdf&rsct=application%2Fpdf&sig=nkJ505G5dvtnzAMAeIl6Jd%2FPl1p3KKobA7RYrrUgGL8%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C071c2b26-fc3d-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00298.xml%3B+filename*%3Dutf-8%27%27FAC20-00298.xml&rsct=application%2Fxml&sig=EIhQAt6%2BJZco%2BBMa0r7tegkioRkvW76SOekT2N8Se8U%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"1d57d1c4-9536-eb11-8441-00155d4aa2cb\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 122.00000,\n                    \"ledger\": null,\n                    \"amount\": 122.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 25.62,\n                    \"originalAmount\": 122.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"E2CBDB6E-FA1E-4333-A78D-03603940BE4F\",\n            \"invoiceNumber\": \"FAC20-00297\",\n            \"relationIdentifier\": \"APR00183\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"BE90D7D1-23B7-4A3D-ACEF-7EC7101454FF\",\n            \"invoiceDate\": \"14122020\",\n            \"dueDate\": \"28122020\",\n            \"vatExclusiveAmount\": 55.00,\n            \"vatInclusiveAmount\": 66.55,\n            \"vatAmount\": 11.55,\n            \"originalAmount\": 55.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 66.55,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"297/1412/20146\",\n            \"description\": \"dsdfsdfsdfd\",\n            \"text\": \"dsfdsf\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C0294c2fd-fb3d-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00297.pdf%3B+filename*%3Dutf-8%27%27FAC20-00297.pdf&rsct=application%2Fpdf&sig=8GUoaWT7Os7%2Bp6ywRWSnDLzvT4Ta%2Bdw0s%2FnEaLbg9Kw%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C0394c2fd-fb3d-eb11-8fed-00155d0ece5f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00297.xml%3B+filename*%3Dutf-8%27%27FAC20-00297.xml&rsct=application%2Fxml&sig=61a%2FPVO7fJRKH%2BwRb0eZxhWpn83ujoZAoyjzHpwAC5o%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"ad3d6b9d-ef6a-4c5a-bd80-78a84a684af5\",\n                    \"description\": \"IC Kost\",\n                    \"remark\": \"sdfsdfdsf\",\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 30.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"IC\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -23.10,\n                    \"originalAmount\": 30.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"c3365c9c-25dd-44b1-9d30-591d39b81a99\",\n                    \"description\": \"Product 1\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": null,\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"PRD01\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 11.55,\n                    \"originalAmount\": 15.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"727afb30-ee3a-eb11-8fed-0003ff20399c\",\n                    \"description\": \"Honoraires\",\n                    \"remark\": null,\n                    \"quantity\": 0.16667,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 10.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 11.55,\n                    \"originalAmount\": 10.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                },\n                {\n                    \"id\": \"e6ddeb53-ee3a-eb11-8fed-0003ff20399c\",\n                    \"description\": \"Prestaties 03/2019\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 0.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 0.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 11.55,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 7\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"BB5FC765-5A2E-EB11-8441-0003FF20453F\",\n            \"invoiceNumber\": \"FAC20-00296\",\n            \"relationIdentifier\": \"APR00404\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"00BBA681-AAEF-4B7C-B97D-9DE68794BDC4\",\n            \"invoiceDate\": \"24112020\",\n            \"dueDate\": \"08122020\",\n            \"vatExclusiveAmount\": 15.00,\n            \"vatInclusiveAmount\": 18.15,\n            \"vatAmount\": 3.15,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 15.00,\n            \"paidAmount\": 18.15,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"296/2411/20164\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cffaa6686-5a2e-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00296.pdf%3B+filename*%3Dutf-8%27%27FAC20-00296.pdf&rsct=application%2Fpdf&sig=5OCmX5Hznj49%2BKYAsp7I9%2FGQb1%2BC6Ht9iSqTFTmDewE%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C01ab6686-5a2e-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00296.xml%3B+filename*%3Dutf-8%27%27FAC20-00296.xml&rsct=application%2Fxml&sig=2IK4pEFxph8c6wiMr4HJ%2BlgZXyv%2Fz5kKPaQdnk0qzZo%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"bc5fc765-5a2e-eb11-8441-0003ff20453f\",\n                    \"description\": \"Companyweb Opzoeking\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": \"700099\",\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"COMP\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 3.15,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 15.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"9CD82259-5A2E-EB11-8441-0003FF20453F\",\n            \"invoiceNumber\": \"FAC20-00295\",\n            \"relationIdentifier\": \"APR00404\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"00BBA681-AAEF-4B7C-B97D-9DE68794BDC4\",\n            \"invoiceDate\": \"24112020\",\n            \"dueDate\": \"08122020\",\n            \"vatExclusiveAmount\": 15.00,\n            \"vatInclusiveAmount\": 18.15,\n            \"vatAmount\": 3.15,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 15.00,\n            \"paidAmount\": 18.15,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"295/2411/20185\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C00ab6686-5a2e-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00295.pdf%3B+filename*%3Dutf-8%27%27FAC20-00295.pdf&rsct=application%2Fpdf&sig=XLoxbDk6L0vXy%2BhRLUzCVhRUiEub2UGNqciwg60emtk%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C02ab6686-5a2e-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00295.xml%3B+filename*%3Dutf-8%27%27FAC20-00295.xml&rsct=application%2Fxml&sig=zpFvbhATv%2FDYqOn6OzcGl9YyptLesAUEYHXmTgdDwvI%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"9dd82259-5a2e-eb11-8441-0003ff20453f\",\n                    \"description\": \"Companyweb Opzoeking\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": \"700099\",\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"COMP\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 3.15,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 15.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"6A9F83DF-EE19-EB11-8441-0003FF20453F\",\n            \"invoiceNumber\": \"FAC20-00294\",\n            \"relationIdentifier\": \"APR00354\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"1F0FBCBC-0A21-42E0-B215-DDEEC86905B0\",\n            \"invoiceDate\": \"29102020\",\n            \"dueDate\": \"12112020\",\n            \"vatExclusiveAmount\": 40.00,\n            \"vatInclusiveAmount\": 48.40,\n            \"vatAmount\": 8.40,\n            \"originalAmount\": 40.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 48.40,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"294/2910/20141\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cf5fb9629-ef19-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00294.pdf%3B+filename*%3Dutf-8%27%27FAC20-00294.pdf&rsct=application%2Fpdf&sig=HXteS83dFsxdthm%2Br02xVsZKEDp9M0jIyCRFmzBaazk%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cf6fb9629-ef19-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00294.xml%3B+filename*%3Dutf-8%27%27FAC20-00294.xml&rsct=application%2Fxml&sig=wZZkQ3DAy%2BlPFpgbvGwL0VP7FvijxAq3%2FkJLbCEc7GI%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"6b9f83df-ee19-eb11-8441-0003ff20453f\",\n                    \"description\": \"BTW Aangifte - Niet factureerbaar\",\n                    \"remark\": null,\n                    \"quantity\": 0.66667,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 8.40,\n                    \"originalAmount\": 40.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"09A5946D-3127-4504-BC28-4C20BFE1776B\",\n            \"invoiceNumber\": \"FAC20-00293\",\n            \"relationIdentifier\": \"APR00002\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"99D85673-29F3-4FBD-A302-234E04C74240\",\n            \"invoiceDate\": \"29102020\",\n            \"dueDate\": \"12112020\",\n            \"vatExclusiveAmount\": 155.00,\n            \"vatInclusiveAmount\": 187.55,\n            \"vatAmount\": 32.55,\n            \"originalAmount\": 155.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 187.55,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"293/2910/20162\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/09/2020\\nlastRegistrationMonthLastDay : 30/09/2020\\ncurrentMonth :09\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : september\\ncurrentQuarterName : derde\\nnextMonthName : oktober\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": true,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Ccd414639-ef19-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00293.pdf%3B+filename*%3Dutf-8%27%27FAC20-00293.pdf&rsct=application%2Fpdf&sig=UL36qTB%2FFvjLsZjLCWwHsnLydjwIyfGYJGFaSxnc1X4%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cce414639-ef19-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00293.xml%3B+filename*%3Dutf-8%27%27FAC20-00293.xml&rsct=application%2Fxml&sig=lG1rtA2AUzW5M%2Bc6NGGTxbnv%2F%2BnnPtMQOvO6P6IvvpQ%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 1,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"736de08e-afd3-4228-af26-c5061d3a7150\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 155.00000,\n                    \"ledger\": null,\n                    \"amount\": 155.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 32.55,\n                    \"originalAmount\": 155.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": \"Bart De Keersmaeker\",\n            \"assistantEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"assistantBackup\": \"Cindy De Importer\",\n            \"assistantBackupEmail\": \"cindy@invalid.com\",\n            \"associate\": \"Jos Kantoor\",\n            \"associateEmail\": \"jos@kantoor.be\",\n            \"responsible\": \"Senior Smet\",\n            \"responsibleEmail\": \"invalid@invalid.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"0F727771-E675-479C-84D5-3BDFDEB86190\",\n            \"invoiceNumber\": \"FAC20-00292\",\n            \"relationIdentifier\": \"APR00068\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"447993C4-B036-417C-B6E8-BEB88083C7AA\",\n            \"invoiceDate\": \"20102020\",\n            \"dueDate\": \"03112020\",\n            \"vatExclusiveAmount\": 314.00,\n            \"vatInclusiveAmount\": 379.94,\n            \"vatAmount\": 65.94,\n            \"originalAmount\": 314.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 379.94,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"292/2010/20149\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/09/2020\\nlastRegistrationMonthLastDay : 30/09/2020\\ncurrentMonth :09\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : september\\ncurrentQuarterName : derde\\nnextMonthName : oktober\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cab332c79-d212-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00292.pdf%3B+filename*%3Dutf-8%27%27FAC20-00292.pdf&rsct=application%2Fpdf&sig=0gaZ4khCT%2Bw26pnHQ%2BkHGQiJIjI%2Bq3Jl%2BObX3EA5myA%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cac332c79-d212-eb11-8441-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00292.xml%3B+filename*%3Dutf-8%27%27FAC20-00292.xml&rsct=application%2Fxml&sig=iwgjbf9WXeVb1y7844SmBOpc7abuIk9CAoVQKlMvKvE%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"8421974f-8ed5-4823-a15e-4ed86cfe10fa\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -197.82,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"a96041b8-ce74-41a1-9526-dfcd8c22b257\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 65.94,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"71624b95-9461-4862-9c25-91bccbe0d808\",\n                    \"description\": \"Kost\",\n                    \"remark\": null,\n                    \"quantity\": 14.00000,\n                    \"unitPrice\": 1.00000,\n                    \"ledger\": null,\n                    \"amount\": 14.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 65.94,\n                    \"originalAmount\": 14.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"9838c1b8-8138-4291-96be-a51ab36dd995\",\n                    \"description\": \"Tweemaandelijks even maanden\",\n                    \"remark\": null,\n                    \"quantity\": 0.00000,\n                    \"unitPrice\": 0.00000,\n                    \"ledger\": null,\n                    \"amount\": 0.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.0000,\n                    \"vatType\": 0,\n                    \"vatAmount\": 65.94,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"50783b13-a77f-463a-8483-5740438222e6\",\n                    \"description\": \"Tweemaandelijks oneven maanden\",\n                    \"remark\": null,\n                    \"quantity\": 0.00000,\n                    \"unitPrice\": 0.00000,\n                    \"ledger\": null,\n                    \"amount\": 0.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.0000,\n                    \"vatType\": 0,\n                    \"vatAmount\": 65.94,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"8B0482E6-2F02-4DAC-89A6-7C1995DD56CB\",\n            \"invoiceNumber\": \"FAC20-00291\",\n            \"relationIdentifier\": \"APR00367\",\n            \"assignmentIdentifier\": \"BL\",\n            \"assignmentTemplateId\": \"0972b041-50e3-4974-830f-0978682bcf2d\",\n            \"relationInvoiceScheduleId\": \"B544CBCB-74AE-40F0-86B8-B39E44A567F6\",\n            \"invoiceDate\": \"14102020\",\n            \"dueDate\": \"28102020\",\n            \"vatExclusiveAmount\": 1.00,\n            \"vatInclusiveAmount\": 1.21,\n            \"vatAmount\": 0.21,\n            \"originalAmount\": 1.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 1.21,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"291/1410/20115\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": true,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C10c24c71-290e-eb11-8441-00155d0f317b?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00291.pdf%3B+filename*%3Dutf-8%27%27FAC20-00291.pdf&rsct=application%2Fpdf&sig=L7IO9hNQI73drHqVtgiBxZnT%2FBeNkqxkS4QaTctReWM%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"515f56fa-3c8f-4686-b57b-ef0651d9baea\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.25000,\n                    \"unitPrice\": 4.00000,\n                    \"ledger\": null,\n                    \"amount\": 1.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 0.21,\n                    \"originalAmount\": 1.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"2DF6F1E8-068F-4A83-9826-16C16EDFB0DB\",\n            \"invoiceNumber\": \"FAC20-00290\",\n            \"relationIdentifier\": \"APR00286\",\n            \"assignmentIdentifier\": \"BL\",\n            \"assignmentTemplateId\": \"0972b041-50e3-4974-830f-0978682bcf2d\",\n            \"relationInvoiceScheduleId\": \"9FBFB0F8-9871-4676-BF94-12F876E9BD08\",\n            \"invoiceDate\": \"08102020\",\n            \"dueDate\": \"22102020\",\n            \"vatExclusiveAmount\": 360.00,\n            \"vatInclusiveAmount\": 435.60,\n            \"vatAmount\": 75.60,\n            \"originalAmount\": 360.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 435.60,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"290/0810/20178\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C6bb4d7e4-6009-eb11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00290.pdf%3B+filename*%3Dutf-8%27%27FAC20-00290.pdf&rsct=application%2Fpdf&sig=6djQvtRtBydeQpK3Tw%2FomkpfAFWFh6yY039bvvD1DbQ%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C6cb4d7e4-6009-eb11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00290.xml%3B+filename*%3Dutf-8%27%27FAC20-00290.xml&rsct=application%2Fxml&sig=kq4G7%2BAKbPNwt%2FDT3grrOXk0lEk4zQj4WjY4qAhgjDA%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"75d38c29-cd3b-4a60-9940-1c0dab37e0e1\",\n                    \"description\": \"Honoraires\",\n                    \"remark\": null,\n                    \"quantity\": 3.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 360.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 75.60,\n                    \"originalAmount\": 360.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"BA2C9BCE-5354-4A77-B246-52FCFF1AE5BE\",\n            \"invoiceNumber\": \"FAC20-00289\",\n            \"relationIdentifier\": \"APR00286\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"0CDC6E1D-8D5D-4201-9AC2-22EEA9735872\",\n            \"invoiceDate\": \"27092020\",\n            \"dueDate\": \"11102020\",\n            \"vatExclusiveAmount\": 45.00,\n            \"vatInclusiveAmount\": 54.45,\n            \"vatAmount\": 9.45,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 45.00,\n            \"paidAmount\": 54.45,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"289/2709/20133\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Ccbc834e7-ee00-eb11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00289.pdf%3B+filename*%3Dutf-8%27%27FAC20-00289.pdf&rsct=application%2Fpdf&sig=QFw0N1ckQ8thpeAOIdUVQmFweO4xm5EEMYKHkr%2BC8jI%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cccc834e7-ee00-eb11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00289.xml%3B+filename*%3Dutf-8%27%27FAC20-00289.xml&rsct=application%2Fxml&sig=t7NLEExfe4L6UTr3nqhIpmmetZNALbt8xVsMh3hau7c%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"ae7c573e-cb32-4c0f-ba0b-f1963efb92bb\",\n                    \"description\": \"Companyweb Opzoeking - fr\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 45.00000,\n                    \"ledger\": \"700099\",\n                    \"amount\": 45.00,\n                    \"priceListItemCode\": \"COMP\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 9.45,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 45.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"770A46D7-DC3B-4081-B216-A64BA0A8A8C6\",\n            \"invoiceNumber\": \"FAC20-00288\",\n            \"relationIdentifier\": \"APR00157\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"33E18066-C26E-4821-946C-EEB3C054194C\",\n            \"invoiceDate\": \"23092020\",\n            \"dueDate\": \"07102020\",\n            \"vatExclusiveAmount\": 410.00,\n            \"vatInclusiveAmount\": 496.10,\n            \"vatAmount\": 86.10,\n            \"originalAmount\": 410.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 496.10,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"288/2309/20182\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/09/2020\\nlastRegistrationMonthLastDay : 30/09/2020\\ncurrentMonth :09\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : september\\ncurrentQuarterName : derde\\nnextMonthName : oktober\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C79b638ba-9ffd-ea11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00288.pdf%3B+filename*%3Dutf-8%27%27FAC20-00288.pdf&rsct=application%2Fpdf&sig=OkhlGD0Y17w3DaiXzgrHY%2Bly0AbYPd5Otcd5lqyDORI%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C7ab638ba-9ffd-ea11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00288.xml%3B+filename*%3Dutf-8%27%27FAC20-00288.xml&rsct=application%2Fxml&sig=cpptt%2FeV6bpyiz%2BgYjMcZwvhBkErZZb4sB8o1cjItHI%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"b9f1289c-8d97-4b8a-828c-e45caa85353e\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -86.10,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"505c32ed-5d1d-4cfa-9cd6-15781af6afdd\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.33333,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 20.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 86.10,\n                    \"originalAmount\": 20.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                },\n                {\n                    \"id\": \"750366ac-5144-4bb3-933b-a5f25c487e04\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 86.10,\n                    \"originalAmount\": 40.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": \"dev+junior integration\",\n            \"assistantEmail\": \"synetonpulse+dev+integration+junior@gmail.com\",\n            \"assistantBackup\": \"Jos Kantoor\",\n            \"assistantBackupEmail\": \"jos@kantoor.be\",\n            \"associate\": \"Bart De Keersmaeker\",\n            \"associateEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": \"PAT Admin\",\n            \"billingUserEmail\": \"synetonpulse+dev+integration+pat+admin@gmail.com\",\n            \"seniorUser\": \"Cindy De Importer\",\n            \"seniorUserEmail\": \"cindy@invalid.com\",\n            \"attachments\": []\n        },\n        {\n            \"id\": \"8131D738-57EC-4AB7-B24E-BD285B33E962\",\n            \"invoiceNumber\": \"FAC20-00287\",\n            \"relationIdentifier\": \"APR00354\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"1F0FBCBC-0A21-42E0-B215-DDEEC86905B0\",\n            \"invoiceDate\": \"11092020\",\n            \"dueDate\": \"25092020\",\n            \"vatExclusiveAmount\": 15.00,\n            \"vatInclusiveAmount\": 18.15,\n            \"vatAmount\": 3.15,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 15.00,\n            \"paidAmount\": 18.15,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"287/1109/20190\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C17353453-39f4-ea11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00287.pdf%3B+filename*%3Dutf-8%27%27FAC20-00287.pdf&rsct=application%2Fpdf&sig=tb5RBw5G7jHRZ62SGoivdZqk6LrIxu%2FpoFlTrNxwqZE%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C18353453-39f4-ea11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00287.xml%3B+filename*%3Dutf-8%27%27FAC20-00287.xml&rsct=application%2Fxml&sig=S52i6TFdfyo2yEJXJp9%2FbC8SU51nR6J3ykURK%2BkAWFo%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"6e48926e-75d8-41ca-b98f-fbf9e614eed8\",\n                    \"description\": \"Companyweb Opzoeking\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": \"700099\",\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"COMP\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 3.15,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 15.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"89A8EF97-CBAE-4C76-8C39-E3D3740E3F05\",\n            \"invoiceNumber\": \"FAC20-00286\",\n            \"relationIdentifier\": \"APR00354\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"1F0FBCBC-0A21-42E0-B215-DDEEC86905B0\",\n            \"invoiceDate\": \"10092020\",\n            \"dueDate\": \"24092020\",\n            \"vatExclusiveAmount\": 331.00,\n            \"vatInclusiveAmount\": 400.51,\n            \"vatAmount\": 69.51,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 331.00,\n            \"paidAmount\": 400.51,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"286/1009/20121\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C85ded873-3bf3-ea11-b5da-0003ff20453f?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00286.pdf%3B+filename*%3Dutf-8%27%27FAC20-00286.pdf&rsct=application%2Fpdf&sig=pQi%2BxrSo9zwaijHTykIMZW%2F1sy7DtOUhAfDr%2BoeB2S4%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"7d7ceb1f-e653-42e4-a941-da1d4ae8d55d\",\n                    \"description\": \"Km\",\n                    \"remark\": null,\n                    \"quantity\": 331.00000,\n                    \"unitPrice\": 1.00000,\n                    \"ledger\": null,\n                    \"amount\": 331.00,\n                    \"priceListItemCode\": \"\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 69.51,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 331.00000,\n                    \"registrations\": [],\n                    \"lineType\": 2\n                }\n            ],\n            \"assistant\": \"Cindy De Importer\",\n            \"assistantEmail\": \"cindy@invalid.com\",\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Bart De Keersmaeker\",\n            \"responsibleEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"399D3BAC-7AD0-4C0A-88B7-FD02C293B0A4\",\n            \"invoiceNumber\": \"FAC20-00284\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"AE38C976-C626-40A5-A8AD-42478D2D245F\",\n            \"invoiceDate\": \"25082020\",\n            \"dueDate\": \"08092020\",\n            \"vatExclusiveAmount\": 370.00,\n            \"vatInclusiveAmount\": 447.70,\n            \"vatAmount\": 77.70,\n            \"originalAmount\": 300.00,\n            \"adjustedAmount\": 70.00,\n            \"paidAmount\": 447.70,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"284/2508/20125\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cad2aea55-c3e6-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00284.pdf%3B+filename*%3Dutf-8%27%27FAC20-00284.pdf&rsct=application%2Fpdf&sig=wdMLhRxAt5l2F0HuBTjq2%2FvfrhLi1Ve6Y%2BnPPFi98OM%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"30a8693f-8590-48c3-9659-f1cb19516c42\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -155.40,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"50941653-54df-4cdc-9fb3-bd3368286710\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"d95fbb6c-7df9-4729-9ffd-42c76f4d9d1a\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 40.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"3ea415c7-6ebd-4580-9ba4-6c4e6f4e6986\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.50000,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 30.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"C7CEE70A-AA1F-4525-8A16-1CB30168B09C\",\n            \"invoiceNumber\": \"FAC20-00283\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"AE38C976-C626-40A5-A8AD-42478D2D245F\",\n            \"invoiceDate\": \"25082020\",\n            \"dueDate\": \"08092020\",\n            \"vatExclusiveAmount\": 370.00,\n            \"vatInclusiveAmount\": 447.70,\n            \"vatAmount\": 77.70,\n            \"originalAmount\": 300.00,\n            \"adjustedAmount\": 70.00,\n            \"paidAmount\": 447.70,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"283/2508/20146\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cded50a41-c3e6-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00283.pdf%3B+filename*%3Dutf-8%27%27FAC20-00283.pdf&rsct=application%2Fpdf&sig=IMEnZvOruMRMSmsVdIsRif2Fk46q2i5uMrhuLmV3pzM%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"6e09c70e-55e5-42cc-b293-dd78c9932dc1\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -155.40,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"73c270fc-951d-4615-aa53-9dba134ad96d\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"6dbf8d44-d14e-4fbd-8fc0-a6fe5376f39c\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 40.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"5704fb38-4dec-4b35-962d-69db8b8fdd6d\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.50000,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 30.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"C905A725-68C3-475C-A00F-2D746EE66B8C\",\n            \"invoiceNumber\": \"FAC20-00282\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"AE38C976-C626-40A5-A8AD-42478D2D245F\",\n            \"invoiceDate\": \"25082020\",\n            \"dueDate\": \"08092020\",\n            \"vatExclusiveAmount\": 30.00,\n            \"vatInclusiveAmount\": 36.30,\n            \"vatAmount\": 6.30,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 30.00,\n            \"paidAmount\": 36.30,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"282/2508/20167\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C2244bb36-c3e6-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00282.pdf%3B+filename*%3Dutf-8%27%27FAC20-00282.pdf&rsct=application%2Fpdf&sig=k3ts2zRIJdcj19TyRXl1jHH0osK9CrL6U3pcJIH1%2BQw%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"0ed9a659-f799-4dd7-a075-5478fd89e12d\",\n                    \"description\": \"IC Kost\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 30.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"IC\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 6.30,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 30.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"222072EC-7BFE-49E6-95A9-EC2E50F5667F\",\n            \"invoiceNumber\": \"FAC20-00281\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"AE38C976-C626-40A5-A8AD-42478D2D245F\",\n            \"invoiceDate\": \"25082020\",\n            \"dueDate\": \"08092020\",\n            \"vatExclusiveAmount\": 370.00,\n            \"vatInclusiveAmount\": 447.70,\n            \"vatAmount\": 77.70,\n            \"originalAmount\": 300.00,\n            \"adjustedAmount\": 70.00,\n            \"paidAmount\": 447.70,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"281/2508/20188\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cad8c89fb-c2e6-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00281.pdf%3B+filename*%3Dutf-8%27%27FAC20-00281.pdf&rsct=application%2Fpdf&sig=x%2BAQASDi%2FXjep%2BW%2F9SY8gsPUU9B%2BVF5%2BbRYjnKBum0M%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"2a57e3fc-b370-402a-8efe-a4928d5bbea7\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -155.40,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"c1e6a8e8-3bd3-4a2d-8ecc-ae8b2df983b7\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"2905f20a-e4db-41a8-b435-a8308f3f47de\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 40.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"20e61d05-0b6b-4a84-abab-cb3c674283ba\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.50000,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 30.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"783D7A57-4A53-4D88-A2BD-886788E7BD61\",\n            \"invoiceNumber\": \"FAC20-00280\",\n            \"relationIdentifier\": \"APR00247\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"AE38C976-C626-40A5-A8AD-42478D2D245F\",\n            \"invoiceDate\": \"25082020\",\n            \"dueDate\": \"08092020\",\n            \"vatExclusiveAmount\": 370.00,\n            \"vatInclusiveAmount\": 447.70,\n            \"vatAmount\": 77.70,\n            \"originalAmount\": 370.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 447.70,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"280/2508/20112\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : {lastRegistrationDate}\\nlastRegistrationMonthLastDay : {lastRegistrationMonthLastDay}\\ncurrentMonth :07\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : juli\\ncurrentQuarterName : derde\\nnextMonthName : augustus\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C9c2516e7-c2e6-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00280.pdf%3B+filename*%3Dutf-8%27%27FAC20-00280.pdf&rsct=application%2Fpdf&sig=DRzZrT99%2BU0Gs4%2BU5Gfuc4AzURLu9FWb04sdd1RSOTc%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"5a9e8e8e-67ac-4a50-80af-daec5ec6a5df\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -155.40,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"2df3062a-45ed-4c2e-a272-74c6e489d369\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": \"\",\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"3727353b-2220-4da8-abad-ffb3fccfccf6\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 40.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                },\n                {\n                    \"id\": \"a5ca1a1d-c58d-442e-a1f1-f4119e9e2126\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.50000,\n                    \"unitPrice\": 60.00000,\n                    \"ledger\": null,\n                    \"amount\": 30.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 77.70,\n                    \"originalAmount\": 30.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"A73A39E8-206C-4FD0-A3D0-6684A888C4D0\",\n            \"invoiceNumber\": \"FAC20-00279\",\n            \"relationIdentifier\": \"APR00252\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"45880074-B4DD-4810-8A15-D2EE034C52D2\",\n            \"invoiceDate\": \"25082020\",\n            \"dueDate\": \"08092020\",\n            \"vatExclusiveAmount\": 350.00,\n            \"vatInclusiveAmount\": 423.50,\n            \"vatAmount\": 73.50,\n            \"originalAmount\": 350.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 423.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"279/2508/20133\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C28155b64-c1e6-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00279.pdf%3B+filename*%3Dutf-8%27%27FAC20-00279.pdf&rsct=application%2Fpdf&sig=BZznVDGg0YfcHrLm%2FmZkTMrQtTe2JgORZjS0tmmFDKQ%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"234e6b4c-bc3c-4970-ac87-c630efe7af54\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 73.50,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"5EC55EA1-4AB3-4CE8-978B-FB89D0ECBAB5\",\n            \"invoiceNumber\": \"FAC20-00277\",\n            \"relationIdentifier\": \"APR00333\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"7F865B35-B538-41A4-BE32-CD3AF653C3EF\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 20.00,\n            \"vatInclusiveAmount\": 24.20,\n            \"vatAmount\": 4.20,\n            \"originalAmount\": 20.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 24.20,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"277/2108/20106\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C02ec0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00277.pdf%3B+filename*%3Dutf-8%27%27FAC20-00277.pdf&rsct=application%2Fpdf&sig=BB5AsV2Jpj2DOrntVqIHh8xwmgy7gmXw%2BnP7l3kanH4%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C04ec0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00277.xml%3B+filename*%3Dutf-8%27%27FAC20-00277.xml&rsct=application%2Fxml&sig=Byh756qnCgO5yBIBeef18x0riSJzzB2klpkid0mVkM0%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"f8f74fa1-2802-4ceb-adda-6e9a2cc9263f\",\n                    \"description\": \"Erelonen\",\n                    \"remark\": null,\n                    \"quantity\": 0.16667,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 20.00,\n                    \"priceListItemCode\": \"1003\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 4.20,\n                    \"originalAmount\": 20.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"38CA9950-9E9B-4067-A063-FA0C3FB84E3D\",\n            \"invoiceNumber\": \"FAC20-00276\",\n            \"relationIdentifier\": \"APR00343\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"1B57B357-05BD-4810-BDD0-5C4E52ABF391\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 87.50,\n            \"vatInclusiveAmount\": 105.88,\n            \"vatAmount\": 18.38,\n            \"originalAmount\": 87.50,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 105.88,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"276/2108/20127\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cffeb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00276.pdf%3B+filename*%3Dutf-8%27%27FAC20-00276.pdf&rsct=application%2Fpdf&sig=bdLRUKJqOkt6BVKgVw7jzMXmeiXYMjgOL%2BPKg6FE8Fo%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"4b396cb2-5b3a-4e57-a432-2955ef001be6\",\n                    \"description\": \"Boekhouding\",\n                    \"remark\": null,\n                    \"quantity\": 1.25000,\n                    \"unitPrice\": 70.00000,\n                    \"ledger\": null,\n                    \"amount\": 87.50,\n                    \"priceListItemCode\": \"100\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 18.38,\n                    \"originalAmount\": 87.50000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 0\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"BD8D0F53-72F5-4E8A-9C65-F9E9021A8DF8\",\n            \"invoiceNumber\": \"FAC20-00275\",\n            \"relationIdentifier\": \"APR00180\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"CA7AD957-7C32-49D0-9D16-9D08125C1072\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 200.00,\n            \"vatInclusiveAmount\": 242.00,\n            \"vatAmount\": 42.00,\n            \"originalAmount\": 200.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 242.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"275/2108/20148\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C00ec0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00275.pdf%3B+filename*%3Dutf-8%27%27FAC20-00275.pdf&rsct=application%2Fpdf&sig=bEUbhIuw5UHtd%2B4i8TZnxK5EBSqcbrcXBz2BycrH%2Bvo%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C03ec0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00275.xml%3B+filename*%3Dutf-8%27%27FAC20-00275.xml&rsct=application%2Fxml&sig=yAgnFQpeIwIDaxWEu1%2Ff0KQ8SK2a3CzuGXz78vUNKjI%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"484cad6a-27bd-4e5a-8bb3-2bc57378e04f\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 200.00000,\n                    \"ledger\": null,\n                    \"amount\": 200.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 42.00,\n                    \"originalAmount\": 200.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"B5C3B42E-7678-4FDA-9F74-F99276A74134\",\n            \"invoiceNumber\": \"FAC20-00274\",\n            \"relationIdentifier\": \"APR00343\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"1B57B357-05BD-4810-BDD0-5C4E52ABF391\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 150.00,\n            \"vatInclusiveAmount\": 181.50,\n            \"vatAmount\": 31.50,\n            \"originalAmount\": 150.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 181.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"274/2108/20169\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : {lastRegistrationDate}\\nlastRegistrationMonthLastDay : {lastRegistrationMonthLastDay}\\ncurrentMonth :07\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : juli\\ncurrentQuarterName : derde\\nnextMonthName : augustus\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cfceb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00274.pdf%3B+filename*%3Dutf-8%27%27FAC20-00274.pdf&rsct=application%2Fpdf&sig=nfmJL%2BrFqxpl0VVXu23DnhtxLmaEzoFJLv3syEMllNk%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"75307bf5-2556-4dea-a8a6-1f9dc4abf43a\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 31.50,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"3EB529CA-2BAB-4CC6-BC2E-F860F0062470\",\n            \"invoiceNumber\": \"FAC20-00273\",\n            \"relationIdentifier\": \"APR00225\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"10C184C9-7A13-4631-8ED9-5EAD0D9397F5\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 980.00,\n            \"vatInclusiveAmount\": 1185.80,\n            \"vatAmount\": 205.80,\n            \"originalAmount\": 980.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 1185.80,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"273/2108/20190\",\n            \"description\": null,\n            \"text\": \"EN - Forfait met placeholders\\n\\nlastRegistrationDate : {lastRegistrationDate}\\nlastRegistrationMonthLastDay : {lastRegistrationMonthLastDay}\\ncurrentMonth :07\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : July\\ncurrentQuarterName : third\\nnextMonthName : August\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cfeeb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00273.pdf%3B+filename*%3Dutf-8%27%27FAC20-00273.pdf&rsct=application%2Fpdf&sig=Ikh5%2Fdh5nVI4Vc%2B2l9cC88kVa8agLYSN6BVxOAzwd%2BI%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C01ec0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00273.xml%3B+filename*%3Dutf-8%27%27FAC20-00273.xml&rsct=application%2Fxml&sig=w4xGt0a4QSGt6EsxdOMFRmfVIZ34UdeQcNpLkwH8M14%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"68d8fa73-2ccb-4794-9625-e49e01b7ca23\",\n                    \"description\": \"Fixed amount\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -617.40,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"ac648d36-9d50-4df6-a247-26e8db6fa036\",\n                    \"description\": \"Fixed amount\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 120.00000,\n                    \"ledger\": null,\n                    \"amount\": 120.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 205.80,\n                    \"originalAmount\": 120.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"50d32cbf-cef2-44f0-b828-0eda778ec6e8\",\n                    \"description\": \"Fixed amount\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 205.80,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1ea06af8-7502-4ffc-93ad-39dd779e4ebc\",\n                    \"description\": \"Fixed amount\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 205.80,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"3c267c6f-f923-47dd-9784-bef39378d878\",\n                    \"description\": \"Enterprise counter costs\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 205.80,\n                    \"originalAmount\": 40.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": \"Bart De Keersmaeker\",\n            \"assistantEmail\": \"bart.dekeersmaeker@syneton.be\",\n            \"assistantBackup\": \"Cindy De Importer\",\n            \"assistantBackupEmail\": \"cindy@invalid.com\",\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"4FD6EDD8-4AFD-436B-8E1F-F51D0A48318E\",\n            \"invoiceNumber\": \"FAC20-00272\",\n            \"relationIdentifier\": \"APR00254\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"869B4E6D-5E04-4FB3-8C5D-BD2DEC964936\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 122.00,\n            \"vatInclusiveAmount\": 147.62,\n            \"vatAmount\": 25.62,\n            \"originalAmount\": 122.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 147.62,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"272/2108/20114\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cf9eb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00272.pdf%3B+filename*%3Dutf-8%27%27FAC20-00272.pdf&rsct=application%2Fpdf&sig=d4X8av%2BZP6dUvwXql2RvdvJSM4ZZZnReIPWze%2FwTrvk%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5Cfdeb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00272.xml%3B+filename*%3Dutf-8%27%27FAC20-00272.xml&rsct=application%2Fxml&sig=j1Dkr4pyD1AXtbM1lVXZbL4Juvv4xtSvFhd%2FyYXH2VA%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"9a550e86-0879-46bd-b59e-d80e4c24a2a4\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 122.00000,\n                    \"ledger\": null,\n                    \"amount\": 122.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 25.62,\n                    \"originalAmount\": 122.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"693AD1C3-D6D0-4185-9B7C-F50DB85DDCDC\",\n            \"invoiceNumber\": \"FAC20-00271\",\n            \"relationIdentifier\": \"APR00165\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"83AA6AAB-117E-47C8-804A-39AB020E52D2\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 350.00,\n            \"vatInclusiveAmount\": 423.50,\n            \"vatAmount\": 73.50,\n            \"originalAmount\": 350.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 423.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"271/2108/20135\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cfaeb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00271.pdf%3B+filename*%3Dutf-8%27%27FAC20-00271.pdf&rsct=application%2Fpdf&sig=kLTKKY4yIEeeCwOw2A6Vbc415nng8IUvWfvDguky4iM%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 1,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"efbead3c-0578-40f0-a7f9-84797a981e29\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 73.50,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"0669F048-B127-42AE-B92F-F4FBAB9F20EA\",\n            \"invoiceNumber\": \"FAC20-00270\",\n            \"relationIdentifier\": \"APR00219\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"CA4269FC-365D-4769-A7AA-028E488A7E39\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 1040.00,\n            \"vatInclusiveAmount\": 1258.40,\n            \"vatAmount\": 218.40,\n            \"originalAmount\": 1040.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 1258.40,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"270/2108/20156\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : {lastRegistrationDate}\\nlastRegistrationMonthLastDay : {lastRegistrationMonthLastDay}\\ncurrentMonth :07\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : juli\\ncurrentQuarterName : derde\\nnextMonthName : augustus\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5Cfbeb0e00-8ee3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00270.pdf%3B+filename*%3Dutf-8%27%27FAC20-00270.pdf&rsct=application%2Fpdf&sig=wm26mRVZg5EvnCZia7mUqIQUAnyxJb7vhMxNPlUIgLw%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"aee2eb31-b372-4373-8a5a-99c3c9fe7ef3\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -655.20,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"22e313de-8034-402b-8068-48fefc135dc5\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 218.40,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"a1b5a6f8-123e-495b-89ff-38d77b2c23da\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 218.40,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"2c465cbd-4094-456b-9667-a7a18f50ff32\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 218.40,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"bdcd8b72-74ae-4158-a6d3-3233e69be85c\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 218.40,\n                    \"originalAmount\": 40.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"17319616-67E6-473B-ADFB-ED89DE5405C4\",\n            \"invoiceNumber\": \"FAC20-00269\",\n            \"relationIdentifier\": \"APR00165\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"83AA6AAB-117E-47C8-804A-39AB020E52D2\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 350.00,\n            \"vatInclusiveAmount\": 423.50,\n            \"vatAmount\": 73.50,\n            \"originalAmount\": 350.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 423.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"269/2108/20177\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C998476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00269.pdf%3B+filename*%3Dutf-8%27%27FAC20-00269.pdf&rsct=application%2Fpdf&sig=7VPHOovNvu5L2xAFo1wAXeNHgBlUg%2F3m4Zlh2EwMUsM%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 1,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"d2e509a2-2c01-4150-ba37-a806b1e2643f\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 73.50,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"3E596A92-E5EE-49CA-89E7-E3F8580B6D31\",\n            \"invoiceNumber\": \"FAC20-00268\",\n            \"relationIdentifier\": \"APR00049\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"3F8DA278-A103-4D62-BF7E-B70079EC5C1E\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 620.00,\n            \"vatInclusiveAmount\": 750.20,\n            \"vatAmount\": 130.20,\n            \"originalAmount\": 620.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 750.20,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"268/2108/20101\",\n            \"description\": null,\n            \"text\": \"FR - Forfait met placeholders\\nlastRegistrationDate : {lastRegistrationDate}\\nlastRegistrationMonthLastDay : {lastRegistrationMonthLastDay}\\ncurrentMonth :07\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : juillet\\ncurrentQuarterName : troisième\\nnextMonthName : août\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C9a8476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00268.pdf%3B+filename*%3Dutf-8%27%27FAC20-00268.pdf&rsct=application%2Fpdf&sig=TeamNT7wzVjf%2B5sHAfWCvuwDZu8%2FT00i%2FvH46068RGg%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C9d8476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00268.xml%3B+filename*%3Dutf-8%27%27FAC20-00268.xml&rsct=application%2Fxml&sig=MPbE%2BdzcnpaZKO%2ByXvAzP6M%2FzzHX5IvN2Ef7UdJ9yho%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"b8d0cd55-f4c2-42be-9e5c-0a6dfff4a4a0\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -260.40,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"47777ca1-7b58-4f52-9166-0567ad504b3c\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 130.20,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"1ed61f7c-23e9-4ab8-8648-2abc84b555d3\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 240.00000,\n                    \"ledger\": null,\n                    \"amount\": 240.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 130.20,\n                    \"originalAmount\": 240.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"d5dbefc7-9cb9-44be-8997-1cbda9b6a6f1\",\n                    \"description\": \"Frais de guichet d'entreprises\",\n                    \"remark\": null,\n                    \"quantity\": 4.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 80.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 130.20,\n                    \"originalAmount\": 80.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"integration admin dev\",\n            \"responsibleEmail\": \"synetonpulse+dev+integration+administrator@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"33C7AFAC-1DF7-44B5-8C0A-DCEF99CADC56\",\n            \"invoiceNumber\": \"FAC20-00266\",\n            \"relationIdentifier\": \"APR00159\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"E58EC542-3ED9-4A10-9253-21E6D54BD4B5\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 15.00,\n            \"vatInclusiveAmount\": 18.15,\n            \"vatAmount\": 3.15,\n            \"originalAmount\": 0.00,\n            \"adjustedAmount\": 15.00,\n            \"paidAmount\": 18.15,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 5,\n            \"structuredReference\": \"266/2108/20143\",\n            \"description\": null,\n            \"text\": null,\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C988476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00266.pdf%3B+filename*%3Dutf-8%27%27FAC20-00266.pdf&rsct=application%2Fpdf&sig=vxdF2ebHylW9FarxMIBuLDR1FnC1tFzBaPFuTXX0v38%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C9b8476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00266.xml%3B+filename*%3Dutf-8%27%27FAC20-00266.xml&rsct=application%2Fxml&sig=QlhnM%2FuAMQ7%2BPsZhRd%2Fb%2BP6yoSF7pHdzUeeHMsOm198%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"9da61a96-03ac-4751-a0b5-67ad1ee8a8c2\",\n                    \"description\": \"Companyweb Opzoeking\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 15.00000,\n                    \"ledger\": \"700099\",\n                    \"amount\": 15.00,\n                    \"priceListItemCode\": \"COMP\",\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 3.15,\n                    \"originalAmount\": 0.00000,\n                    \"adjustedAmount\": 15.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": \"Glenn Cambré\",\n            \"responsibleEmail\": \"glennc.dev.test+poweruser@gmail.com\",\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"A450C1BC-8603-4544-B07D-E02248BAD052\",\n            \"invoiceNumber\": \"FAC20-00265\",\n            \"relationIdentifier\": \"APR00259\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"128822A2-3AFC-454D-88D9-09A0533249BB\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 600.00,\n            \"vatInclusiveAmount\": 726.00,\n            \"vatAmount\": 126.00,\n            \"originalAmount\": 600.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 726.00,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 1,\n            \"structuredReference\": \"265/2108/20164\",\n            \"description\": null,\n            \"text\": \"Forfait met placeholders \\nlastRegistrationDate : {lastRegistrationDate}\\nlastRegistrationMonthLastDay : {lastRegistrationMonthLastDay}\\ncurrentMonth :07\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : juli\\ncurrentQuarterName : derde\\nnextMonthName : augustus\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C978476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00265.pdf%3B+filename*%3Dutf-8%27%27FAC20-00265.pdf&rsct=application%2Fpdf&sig=%2BK1yHN7Tz0spfmkZy%2BS1x3fMaQUCfYl72zpFqLJVpIA%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"fe704b2c-a310-42f2-b5b3-6a53796942a0\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": -252.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"10bd0feb-83dd-47b1-b551-a995ca0f68a6\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"8d088885-fb66-4f7b-9040-c91c04855858\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                },\n                {\n                    \"id\": \"2f509810-f2d5-4ef0-96f4-e4ab4a6f7b95\",\n                    \"description\": \"Forfait\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 150.00000,\n                    \"ledger\": null,\n                    \"amount\": 150.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 126.00,\n                    \"originalAmount\": 150.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 4\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"A6C3BB07-B34A-4E5B-9A49-D159EC91938D\",\n            \"invoiceNumber\": \"FAC20-00264\",\n            \"relationIdentifier\": \"APR00146\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"CA309EF9-66F4-4B27-9236-23F2941FC95A\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 40.00,\n            \"vatInclusiveAmount\": 48.40,\n            \"vatAmount\": 8.40,\n            \"originalAmount\": 40.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 48.40,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 4,\n            \"structuredReference\": \"264/2108/20185\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C491009f1-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00264.pdf%3B+filename*%3Dutf-8%27%27FAC20-00264.pdf&rsct=application%2Fpdf&sig=ilhPV5PetMeTwaj7TnBRXFdtVp2x26WHt9GuzkZrNhM%3D\",\n            \"xmlUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-xml%5C958476f7-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00264.xml%3B+filename*%3Dutf-8%27%27FAC20-00264.xml&rsct=application%2Fxml&sig=rKiFdLgXyNvKKrbU1kgUPw12s0N3bczyM%2FNcGeCghZQ%3D\",\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 0,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"f6adaf64-3562-4b28-a98b-012921ae26d1\",\n                    \"description\": \"Kosten ondernemingsloket\",\n                    \"remark\": null,\n                    \"quantity\": 2.00000,\n                    \"unitPrice\": 20.00000,\n                    \"ledger\": null,\n                    \"amount\": 40.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 8.40,\n                    \"originalAmount\": 40.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 1\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        },\n        {\n            \"id\": \"943C5B51-7B58-4778-BAC9-CF4A0CC7D248\",\n            \"invoiceNumber\": \"FAC20-00263\",\n            \"relationIdentifier\": \"APR00165\",\n            \"assignmentIdentifier\": null,\n            \"assignmentTemplateId\": null,\n            \"relationInvoiceScheduleId\": \"83AA6AAB-117E-47C8-804A-39AB020E52D2\",\n            \"invoiceDate\": \"21082020\",\n            \"dueDate\": \"04092020\",\n            \"vatExclusiveAmount\": 350.00,\n            \"vatInclusiveAmount\": 423.50,\n            \"vatAmount\": 73.50,\n            \"originalAmount\": 350.00,\n            \"adjustedAmount\": 0.00,\n            \"paidAmount\": 423.50,\n            \"status\": \"paid\",\n            \"isCreditnote\": false,\n            \"invoiceType\": 2,\n            \"structuredReference\": \"263/2108/20109\",\n            \"description\": null,\n            \"text\": \"\",\n            \"sent\": true,\n            \"paid\": true,\n            \"exported\": false,\n            \"discountType\": null,\n            \"discountValue\": 0.00000,\n            \"transactionType\": 0,\n            \"vatExemptionReason\": null,\n            \"pdfUrl\": \"https://dev-storage.adminpulse.be/db9f4bac-4246-4c9d-98de-28b1b58e7a16/invoice-pdf%5C481009f1-8de3-ea11-bf21-0003ff202031?skoid=d8a273bd-9969-4356-a62f-c8f0e82bacff&sktid=c166b9c4-5053-4eec-9665-aba0782d0804&skt=2025-10-09T11%3A21%3A00Z&ske=2025-10-09T17%3A21%3A00Z&sks=b&skv=2025-07-05&sv=2025-07-05&se=2025-10-09T15%3A15%3A47Z&sr=b&sp=r&rscd=Attachment%3B+filename%3DFAC20-00263.pdf%3B+filename*%3Dutf-8%27%27FAC20-00263.pdf&rsct=application%2Fpdf&sig=mRedor48im4XIMptJwcXdThTRCwu8BLrFoai2lAI%2Fk8%3D\",\n            \"xmlUrl\": null,\n            \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\n            \"relationPaymentMethod\": 1,\n            \"invoiceLines\": [\n                {\n                    \"id\": \"692aafbf-da55-4583-ae50-46d797d86bde\",\n                    \"description\": \"Voorschot\",\n                    \"remark\": null,\n                    \"quantity\": 1.00000,\n                    \"unitPrice\": 350.00000,\n                    \"ledger\": null,\n                    \"amount\": 350.00,\n                    \"priceListItemCode\": null,\n                    \"vatPercentage\": 0.2100,\n                    \"vatType\": 0,\n                    \"vatAmount\": 73.50,\n                    \"originalAmount\": 350.00000,\n                    \"adjustedAmount\": 0.00000,\n                    \"registrations\": [],\n                    \"lineType\": 5\n                }\n            ],\n            \"assistant\": null,\n            \"assistantEmail\": null,\n            \"assistantBackup\": null,\n            \"assistantBackupEmail\": null,\n            \"associate\": null,\n            \"associateEmail\": null,\n            \"responsible\": null,\n            \"responsibleEmail\": null,\n            \"billingUser\": null,\n            \"billingUserEmail\": null,\n            \"seniorUser\": null,\n            \"seniorUserEmail\": null,\n            \"attachments\": []\n        }\n    ],\n    \"currentPage\": 0,\n    \"pageCount\": 86,\n    \"pageSize\": 50,\n    \"totalRowCount\": 4257\n}"}],"_postman_id":"7f114eec-cba6-4884-bdad-59194780c5a1"},{"name":"get single invoice","id":"d21d11bb-1b77-400c-a81c-14188ff3b9ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}","description":"<p>Required scope: <strong>invoices.read</strong></p>\n<p>See <a href=\"https://developer.adminpulse.be/#7f114eec-cba6-4884-bdad-59194780c5a1\">https://developer.adminpulse.be/#7f114eec-cba6-4884-bdad-59194780c5a1</a> for the invoice definition.</p>\n<p>The returned invoice will always have its documents (XML and PDF) included as a hyperlink. The registrations linked to an invoice line will also be included.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["invoices","{{invoiceId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"17037ae2-06bb-4aa4-8e82-0b784c5fa8eb","name":"get single invoice","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": \"09A5946D-3127-4504-BC28-4C20BFE1776B\",\r\n    \"invoiceNumber\": \"FAC20-00293\",\r\n    \"relationIdentifier\": \"APR00002\",\r\n    \"assignmentIdentifier\": null,\r\n    \"relationInvoiceScheduleId\": \"99D85673-29F3-4FBD-A302-234E04C74240\",\r\n    \"invoiceDate\": \"29102020\",\r\n    \"dueDate\": \"12112020\",\r\n    \"vatExclusiveAmount\": 155.00,\r\n    \"vatInclusiveAmount\": 187.55,\r\n    \"vatAmount\": 32.55,\r\n    \"originalAmount\": 155.00,\r\n    \"adjustedAmount\": 0.00,\r\n    \"status\": \"paid\",\r\n    \"isCreditnote\": false,\r\n    \"invoiceType\": 1,\r\n    \"structuredReference\": \"293/2910/20162\",\r\n    \"description\": null,\r\n    \"text\": \"Forfait met placeholders \\nlastRegistrationDate : 30/09/2020\\nlastRegistrationMonthLastDay : 30/09/2020\\ncurrentMonth :09\\ncurrentQuarter: 3\\ncurrentYear: 2020\\ncurrentMonthName : september\\ncurrentQuarterName : derde\\nnextMonthName : oktober\",\r\n    \"sent\": true,\r\n    \"paid\": true,\r\n    \"exported\": true,\r\n    \"discountType\": null,\r\n    \"discountValue\": 0.00000,\r\n    \"transactionType\": 0,\r\n    \"vatExemptionReason\": null,\r\n    \"pdfUrl\": \"https://storage.adminpulse.be/xxx.pdf\",\r\n    \"xmlUrl\": \"https://storage.adminpulse.be/xxx.xml\",\r\n    \"companyId\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\r\n    \"relationPaymentMethod\": 1,\r\n    \"invoiceLines\": [\r\n        {\r\n            \"id\": \"736de08e-afd3-4228-af26-c5061d3a7150\",\r\n            \"description\": \"Forfait\",\r\n            \"remark\": null,\r\n            \"quantity\": 1.00000,\r\n            \"unitPrice\": 155.00000,\r\n            \"ledger\": null,\r\n            \"amount\": 155.00,\r\n            \"priceListItemCode\": null,\r\n            \"vatPercentage\": 0.2100,\r\n            \"vatType\": 0,\r\n            \"vatAmount\": 32.55,\r\n            \"originalAmount\": 155.00000,\r\n            \"registrations\": []\r\n        }\r\n    ],\r\n    \"assistant\": \"User One\",\r\n    \"assistantEmail\": \"userone@adminpulse.eu\",\r\n    \"assistantBackup\": \"User Two\",\r\n    \"assistantBackupEmail\": \"usertwo@adminpulse.eu\",\r\n    \"associate\": null,\r\n    \"associateEmail\": null,\r\n    \"responsible\": null,\r\n    \"responsibleEmail\": null,\r\n    \"billingUser\": null,\r\n    \"billingUserEmail\": null,\r\n    \"seniorUser\": null,\r\n    \"seniorUserEmail\": null\r\n}"}],"_postman_id":"d21d11bb-1b77-400c-a81c-14188ff3b9ea"},{"name":"download invoice","id":"bc2ac4a1-193c-42ee-8499-198b519e9d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}/download","description":"<p>Required scope: <strong>invoices.read</strong></p>\n<p>The link of the invoice PDF and XML can be included in the list invoices call and it is automatically included in the get single invoice call. If for some reason you want to reacquire a new download link, you can use this endpoint.</p>\n<p>An object is returned with the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pdfUrl</td>\n<td>string</td>\n<td>The location from where the PDF of the invoice can be downloaded</td>\n</tr>\n<tr>\n<td>xmlUrl</td>\n<td>string</td>\n<td>The location from where the XML of the invoice can be downloaded</td>\n</tr>\n<tr>\n<td>expires</td>\n<td>string</td>\n<td>ISO 8601 format date string. The links are valid for 120 minutes after making this API call.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["invoices","{{invoiceId}}","download"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e9f89a3b-4998-405f-a494-43fc9d09fefa","name":"download invoice","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}/download"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"pdfUrl\": \"https://storage.adminpulse.be/xxx.pdf\",\n    \"xmlUrl\": \"https://storage.adminpulse.be/xxx.xml\",\n    \"expires\": \"2024-10-11T16:18:42.7553562+00:00\"\n}"}],"_postman_id":"bc2ac4a1-193c-42ee-8499-198b519e9d7d"},{"name":"mark invoice as exported","id":"26d35af9-e6c5-4a1c-ad4e-3ea06ecaf461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}/export","description":"<p>Required scope: <strong>invoices.write</strong></p>\n<p>The JSON body should consist of an object with the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The invoice ID</td>\n</tr>\n<tr>\n<td>info</td>\n<td>string</td>\n<td>(optional)  <br />Additional info can be passed about the export, for example to which software the invoice was exported. This is visible for the user.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["invoices","{{invoiceId}}","export"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0fe8a577-4282-4c04-beb2-625bcbc40665","name":"mark invoice as exported","originalRequest":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}/export"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"26d35af9-e6c5-4a1c-ad4e-3ea06ecaf461"},{"name":"add payment to an invoice","id":"a7922ab9-6f7a-42e9-8b26-e2388c4d6470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}/payment","description":"<p>Required scope: <strong>invoices.write</strong></p>\n<p>The JSON body should consist of an object with the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The invoice ID</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>info</td>\n<td>string</td>\n<td>(optional)  <br />Additional info can be passed about the export, for example in which software the payment was received. This is visible for the user.</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>(optional)  <br />The date of the payment. Format: ddMMyyyy</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["invoices","{{invoiceId}}","payment"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"58ed5bdb-900c-4be2-ba50-27f9b9336c6e","name":"add payment to an invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"info\": \"Yuki\",\r\n    \"amount\": 181.50\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/invoices/{{invoiceId}}/payment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a7922ab9-6f7a-42e9-8b26-e2388c4d6470"},{"name":"add draft invoice","id":"58924eea-a17d-498e-ae17-8937307fddef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.adminpulse.be/invoices/draft","description":"<p>Create a draft invoice</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"protocol":"https","path":["invoices","draft"],"host":["api","adminpulse","be"],"query":[],"variable":[]}},"response":[{"id":"15a15a20-8641-4824-b806-ddfad11dfeaf","name":"add draft invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"relationIdentifier\": \"APR00063\",\r\n    \"description\": \"description\",\r\n    \"invoiceText\": \"invoice text\",\r\n    \"currencyCode\": \"EUR\",\r\n    \"taxCategory\": 1,\r\n    \"taxExemptionReason\": \"reason\",\r\n    \"creditNoteBasedOn\": \"credit note based on\",\r\n    \"discountLedger\": \"703000\",\r\n    \"discountAmount\": 0.40,\r\n    \"discountType\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.adminpulse.be/invoices/draft"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"58924eea-a17d-498e-ae17-8937307fddef"},{"name":"add draft invoice line","id":"d6de4ffc-6c08-4a0d-99d6-41a16c06db90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}/line","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"protocol":"https","path":["invoices","draft","{{draftinvoiceidentifier}}","line"],"host":["api","adminpulse","be"],"query":[],"variable":[]}},"response":[{"id":"4436f117-f78c-4686-b8c5-4bb4fe6a3739","name":"add draft invoice line","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"description\",\r\n    \"remark\": \"remark\",\r\n    \"quantity\": 1,\r\n    \"unitPrice\": 6.66,\r\n    \"vatType\": 1,\r\n    \"vatRate\": 0.21,\r\n    \"discountPercentage\": 0,\r\n    \"ledger\": \"700000\"\r\n}","options":{"raw":{"language":"json"}}}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d6de4ffc-6c08-4a0d-99d6-41a16c06db90"},{"name":"update draft invoiceline","id":"c354f4a1-db7c-4fb2-aeab-6f1e3ad0ebce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}/line/{{draftinvoicelineidentifier}}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"protocol":"https","path":["invoices","draft","{{draftinvoiceidentifier}}","line","{{draftinvoicelineidentifier}}"],"host":["api","adminpulse","be"],"query":[],"variable":[]}},"response":[{"id":"913d74b0-5e35-47b3-aa0c-13c7d67e2b52","name":"update draft invoiceline","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"description update\",\r\n    \"remark\": \"remark update\",\r\n    \"quantity\": 2,\r\n    \"unitPrice\": 7.77,\r\n    \"vatType\": 2,\r\n    \"vatRate\": 0.12,\r\n    \"discountPercentage\": 0,\r\n    \"ledger\": \"700001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}/line/{{draftinvoicelineidentifier}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c354f4a1-db7c-4fb2-aeab-6f1e3ad0ebce"},{"name":"delete draft invoiceline","id":"714ca9ba-da97-4ba4-bc2e-16c97f3898eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}/line/{{draftinvoicelineidentifier}}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"protocol":"https","path":["invoices","draft","{{draftinvoiceidentifier}}","line","{{draftinvoicelineidentifier}}"],"host":["api","adminpulse","be"],"query":[],"variable":[]}},"response":[],"_postman_id":"714ca9ba-da97-4ba4-bc2e-16c97f3898eb"},{"name":"update draft invoice","id":"9ba1675d-02e6-4624-b7d2-5d00373d3c21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"protocol":"https","path":["invoices","draft","{{draftinvoiceidentifier}}"],"host":["api","adminpulse","be"],"query":[],"variable":[]}},"response":[{"id":"a0120dba-376e-4f3c-9823-3d8c2880c0ad","name":"update draft invoice","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"descriptio updated\",\r\n    \"invoiceText\": \"invoice text updated\",\r\n    \"taxCategory\": 2,\r\n    \"currencyCode\": \"EUR\",\r\n    \"taxExemptionReason\": \"reason updated\",\r\n    \"creditNoteBasedOn\": \"credit note based on updated\",\r\n    \"discountLedger\": \"123456\",\r\n    \"discountAmount\": 200,\r\n    \"discountType\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9ba1675d-02e6-4624-b7d2-5d00373d3c21"},{"name":"delete draft invoice","id":"4f64add6-d171-4213-aedb-ab652c1fc985","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.adminpulse.be/invoices/draft/{{draftinvoiceidentifier}}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"protocol":"https","path":["invoices","draft","{{draftinvoiceidentifier}}"],"host":["api","adminpulse","be"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f64add6-d171-4213-aedb-ab652c1fc985"}],"id":"a1ab4953-020d-4478-a407-e202e6c1e792","_postman_id":"a1ab4953-020d-4478-a407-e202e6c1e792","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Notifications","item":[{"name":"create notification","id":"a606b13e-e88b-4d64-a351-e7a6ace35fc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"type\": 0,\r\n   \"userIds\": [\"69DC7C00-A983-4C7B-ABF0-A8C126D4F81E\"], \r\n   \"text\": \"This text will be displayed in the notification in AdminPulse\", \r\n   \"relationId\": \"69DC7C00-A983-4C7B-ABF0-A8C126D4F81E\" \r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/notifications","description":"<p>Required scope: <strong>notifications.write</strong></p>\n<p>The JSON body should consist of an object with the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>X</td>\n<td>Custom = 0  <br />Relation created = 221  <br />Relation updated = 222</td>\n</tr>\n<tr>\n<td>userIds</td>\n<td>array of strings</td>\n<td></td>\n<td>List of user IDs that should receive the notification. If empty, the notification will only be sent to the currently logged in user.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>string</td>\n<td>required when type is 0</td>\n<td>Custom notification text</td>\n</tr>\n<tr>\n<td>relationId</td>\n<td>string</td>\n<td>required when type is 221 or 222</td>\n<td>The ID of the relation</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["notifications"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a606b13e-e88b-4d64-a351-e7a6ace35fc3"}],"id":"f968c431-4d66-4ba1-9b7a-6165948e1e5f","_postman_id":"f968c431-4d66-4ba1-9b7a-6165948e1e5f","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Reports","item":[{"name":"registeredperday","id":"7c4919e5-8db7-4e7e-8980-3ae0424544c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/reports/registeredperday?from=01012024&to=01022024&userIdentifier={{userIdOrEmail}}","description":"<ul>\n<li>Based on the report <a href=\"https://adminpulse.zendesk.com/hc/articles/5434857550738-Hours-registered-per-employee\">Hours Per Employee</a></li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>to</td>\n<td>string</td>\n<td>Format: ddMMyyyy</td>\n</tr>\n<tr>\n<td>userIdentifier</td>\n<td>string</td>\n<td>The e-mail address or GUID of the user</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["reports","registeredperday"],"host":["{{apiEndpointUrl}}"],"query":[{"key":"from","value":"01012024"},{"key":"to","value":"01022024"},{"key":"userIdentifier","value":"{{userIdOrEmail}}"}],"variable":[]}},"response":[{"id":"f0472c89-8e7a-4bb3-b34c-642ad762191c","name":"registeredperday","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiEndpointUrl}}/reports/registeredperday?from=01012024&to=01022024&userIdentifier={{userIdOrEmail}}","host":["{{apiEndpointUrl}}"],"path":["reports","registeredperday"],"query":[{"key":"from","value":"01012024"},{"key":"to","value":"01022024"},{"key":"userIdentifier","value":"{{userIdOrEmail}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"date\": \"2024-01-01T00:00:00\",\n        \"registeredMinutes\": 480,\n        \"expectedMinutes\": 0,\n        \"workedMinutes\": 0,\n        \"absenceMinutes\": 480,\n        \"recuperationMinutes\": 0,\n        \"overtimeCorrectionMinutes\": 0,\n        \"missingMinutes\": 0,\n        \"homeWorkingMinutes\": 0,\n        \"overtimeMinutes\": 0,\n        \"remainingOvertimeMinutes\": 0,\n        \"totalRemainingOvertimeMinutes\": 0\n    },\n    {\n        \"date\": \"2024-01-02T00:00:00\",\n        \"registeredMinutes\": 240,\n        \"expectedMinutes\": 480,\n        \"workedMinutes\": 240,\n        \"absenceMinutes\": 0,\n        \"recuperationMinutes\": 0,\n        \"overtimeCorrectionMinutes\": 0,\n        \"missingMinutes\": 240,\n        \"homeWorkingMinutes\": 0,\n        \"overtimeMinutes\": 0,\n        \"remainingOvertimeMinutes\": 0,\n        \"totalRemainingOvertimeMinutes\": 0\n    }\n]"}],"_postman_id":"7c4919e5-8db7-4e7e-8980-3ae0424544c5"}],"id":"4b2990e6-a41b-40e2-bdf1-6088b4d5e637","_postman_id":"4b2990e6-a41b-40e2-bdf1-6088b4d5e637","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Users","item":[{"name":"me","id":"75bac22e-64b5-4b53-9619-7c0633fe0c8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/me","description":"<p>Returns information about the currently logged in user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","me"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2d17fda1-b619-4085-96c6-d138be75bac3","name":"me","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"johnd@gmail.com\"\n}"}],"_postman_id":"75bac22e-64b5-4b53-9619-7c0633fe0c8a"},{"name":"list users","id":"7dc3f264-8c6a-46a8-98e2-fd40b1be82f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users?page=1&pageSize=50&searchCriteria=user@email.com&includeInactive=false","description":"<p>Required scope: <strong>users.read</strong></p>\n<p>user</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>callerId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>internalPrice</td>\n<td>decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>priceProfileName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array of string</td>\n<td></td>\n</tr>\n<tr>\n<td>role</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>null</td>\n<td></td>\n</tr>\n<tr>\n<td>employeeNumber</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>remark</td>\n<td>null</td>\n<td></td>\n</tr>\n<tr>\n<td>employeeType</td>\n<td>number</td>\n<td>1 = internal  <br />2 = external  <br />3 = self employed  <br />4 = intern  <br />5 = student</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>array of team (see below)</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>team</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>canViewInvoices</td>\n<td>boolean</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users"],"host":["{{apiEndpointUrl}}"],"query":[{"description":{"content":"<p>Current page. Starts at 0 and defaults to 0</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Page size. Max 50</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>(optional) a specific user can be found using the searchCriteria parameter. Should be URL encoded.</p>\n","type":"text/plain"},"key":"searchCriteria","value":"user@email.com"},{"description":{"content":"<p>(optional) include the inactive employees as well. Default = false</p>\n","type":"text/plain"},"key":"includeInactive","value":"false"}],"variable":[]}},"response":[{"id":"e46fed19-a91a-42d1-8643-07089fc60508","name":"list users","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"c7411097-e001-4a36-9ce5-d3cf52a34753\",\n            \"name\": \"User 1\",\n            \"callerId\": \"00055\",\n            \"phone\": \"+32 14 00 00 00\",\n            \"email\": \"userone@adminpulse.eu\",\n            \"internalPrice\": 50.00000,\n            \"priceProfileName\": \"Senior\",\n            \"tags\": [\n                \"admin\"\n            ],\n            \"role\": 0,\n            \"companyId\": \"214edae6-16e3-457c-8d24-f274f26ae5f7\",\n            \"startDate\": \"01012000\",\n            \"endDate\": null,\n            \"employeeNumber\": \"001\",\n            \"remark\": null,\n            \"employeeType\": 1,\n            \"teams\": [\n                {\n                    \"id\": \"c0421fe3-3eac-4e34-9ef5-5b31dc1a9f78\",\n                    \"name\": \"West-Vlaanderen\",\n                    \"canViewInvoices\": true\n                },\n                {\n                    \"id\": \"892d6fcc-6d26-4d73-a155-617def01798b\",\n                    \"name\": \"Antwerpen\",\n                    \"canViewInvoices\": true\n                }\n            ]\n        },\n        {\n            \"id\": \"7c77f3b7-8ce7-48b9-bc73-9388c0b7d766\",\n            \"name\": \"User 2\",\n            \"callerId\": null,\n            \"phone\": \"\",\n            \"email\": \"usertwo@adminpulse.eu\",\n            \"internalPrice\": 0.00000,\n            \"priceProfileName\": \"Demo\",\n            \"tags\": [],\n            \"role\": 2,\n            \"companyId\": \"214edae6-16e3-457c-8d24-f274f26ae5f7\",\n            \"startDate\": \"13082019\",\n            \"endDate\": \"08012020\",\n            \"employeeNumber\": \"002\",\n            \"teams\": [\n                {\n                    \"id\": \"a3de4584-9f50-4a2a-8603-505e702f72c7\",\n                    \"name\": \"Audit\",\n                    \"canViewInvoices\": true\n                }\n            ]\n        }\n    ],\n    \"pageCount\": 1,\n    \"pageSize\": 50,\n    \"totalRowCount\": 2\n}"}],"_postman_id":"7dc3f264-8c6a-46a8-98e2-fd40b1be82f7"},{"name":"list teams","id":"a936b502-1f85-48fb-b0f3-3c3fa373e0ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/teams","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","teams"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"82ac3299-3ff0-4cb2-b286-d8e6a7d74df2","name":"list teams","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1915b24c-ef43-4d88-a60b-aa30000c9957\",\n        \"name\": \"Waasland\",\n        \"parentTeamId\": null,\n        \"order\": 1,\n        \"childTeams\": [\n            {\n                \"id\": \"5d169d1f-a9cb-4d5d-a143-c071087ba05a\",\n                \"name\": \"Team 2\",\n                \"parentTeamId\": \"1915b24c-ef43-4d88-a60b-aa30000c9957\",\n                \"order\": 1,\n                \"childTeams\": [],\n                \"employees\": [\n                    {\n                        \"id\": \"cfc0991b-9205-4ed3-b496-74029567b2e6\",\n                        \"email\": \"userone@adminpulse.eu\",\n                        \"firstName\": \"User\",\n                        \"lastName\": \"One\",\n                        \"canViewInvoices\": true,\n                        \"employeeId\": \"1eb9fa29-3f90-4351-ab42-0f56a495787b\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"f8d9879d-cdcd-4715-83c7-f9d832e8c0df\",\n                \"name\": \"Team 1\",\n                \"parentTeamId\": \"1915b24c-ef43-4d88-a60b-aa30000c9957\",\n                \"order\": 2,\n                \"childTeams\": [],\n                \"employees\": [\n                    {\n                        \"id\": \"c4f13e31-3360-45e0-812b-ff8332c8c2d7\",\n                        \"email\": \"usertwo@adminpulse.eu\",\n                        \"firstName\": \"User\",\n                        \"lastName\": \"Two\",\n                        \"canViewInvoices\": true,\n                        \"employeeId\": \"6bf6aa65-8553-46ef-8650-11c5c5aefc83\"\n                    }\n                ]\n            }\n        ],\n        \"employees\": [\n            {\n                \"id\": \"2fc35bd1-f915-4069-9c5c-8472c91d3eb0\",\n                \"email\": \"userthree@adminpulse.eu\",\n                \"firstName\": \"User\",\n                \"lastName\": \"Three\",\n                \"canViewInvoices\": true,\n                \"employeeId\": \"5ce5a45f-298a-4a42-ac74-87d34e34d59e\"\n            },\n            {\n                \"id\": \"ac2bf4de-8a46-4d04-b463-7bd5bd5ce97b\",\n                \"email\": \"userfour@adminpulse.eu\",\n                \"firstName\": \"User\",\n                \"lastName\": \"Four\",\n                \"canViewInvoices\": true,\n                \"employeeId\": \"32db189c-0a1d-4ff4-838b-f3d110391c46\"\n            },\n            {\n                \"id\": \"94077060-ed16-4e63-b366-02d331f43680\",\n                \"email\": \"bart.dekeersmaeker@syneton.be\",\n                \"firstName\": \"Bart\",\n                \"lastName\": \"De Keersmaeker\",\n                \"canViewInvoices\": true,\n                \"employeeId\": \"2f197dd5-70cd-4e92-aea9-5f441baddbfe\"\n            }\n        ]\n    },\n    {\n        \"id\": \"a497c0b6-01a9-44dc-8aa0-673588e76eec\",\n        \"name\": \"Senior\",\n        \"parentTeamId\": null,\n        \"order\": 3,\n        \"childTeams\": [],\n        \"employees\": [\n            {\n                \"id\": \"51b9c2b6-c2b0-ec11-826d-0003ff20605f\",\n                \"email\": \"userone@adminpulse.eu\",\n                \"firstName\": \"User\",\n                \"lastName\": \"One\",\n                \"canViewInvoices\": true,\n                \"employeeId\": \"53b9c2b6-c2b0-ec11-826d-0003ff20605f\"\n            },\n            {\n                \"id\": \"0138ae79-95a3-468b-942f-72b4d1e76760\",\n                \"email\": \"userone@adminpulse.eu\",\n                \"firstName\": \"User\",\n                \"lastName\": \"One\",\n                \"canViewInvoices\": true,\n                \"employeeId\": \"1e79227b-72b7-4160-8a72-d369ea561301\"\n            }\n        ]\n    }\n]"}],"_postman_id":"a936b502-1f85-48fb-b0f3-3c3fa373e0ae"},{"name":"add user to team","id":"d29096c5-9bbb-4fa5-b9a5-f06b67c5d128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/teams/{{teamId}}","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","{{userIdOrEmail}}","teams","{{teamId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"736fb3fa-ed99-4e8e-bff1-ec3f135e8079","name":"add user to team","originalRequest":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/teams/{{teamId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d29096c5-9bbb-4fa5-b9a5-f06b67c5d128"},{"name":"remove user from team","id":"cdb3ae68-ec23-46dd-a4d5-0990a77e7b33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/teams/{{teamId}}","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","{{userIdOrEmail}}","teams","{{teamId}}"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e70cfa0-bd35-46cb-a5ee-93bd1d7f6f82","name":"remove user from team","originalRequest":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/teams/{{teamId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cdb3ae68-ec23-46dd-a4d5-0990a77e7b33"},{"name":"get user timetable","id":"dfe59789-7b31-4fa4-bce2-ea1bd2ee8bcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","{{userIdOrEmail}}","timetable"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ed606c63-f491-48d7-983c-77f80c6c0153","name":"user timetable","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"dateFrom\": \"2020-01-01T00:00:00\",\n    \"mondayStartMorning\": \"08:00:00\",\n    \"mondayEndMorning\": \"12:00:00\",\n    \"mondayStartAfternoon\": \"13:00:00\",\n    \"mondayEndAfternoon\": \"17:00:00\",\n    \"mondayWorkingMinutes\": 480,\n    \"mondayHomeWorkingMinutes\": 0,\n    \"tuesdayStartMorning\": \"08:00:00\",\n    \"tuesdayEndMorning\": \"12:00:00\",\n    \"tuesdayStartAfternoon\": \"13:00:00\",\n    \"tuesdayEndAfternoon\": \"17:00:00\",\n    \"tuesdayWorkingMinutes\": 480,\n    \"tuesdayHomeWorkingMinutes\": 0,\n    \"wednesdayStartMorning\": \"07:00:00\",\n    \"wednesdayEndMorning\": \"11:00:00\",\n    \"wednesdayStartAfternoon\": \"00:00:00\",\n    \"wednesdayEndAfternoon\": \"00:00:00\",\n    \"wednesdayWorkingMinutes\": 240,\n    \"wednesdayHomeWorkingMinutes\": 0,\n    \"thursdayStartMorning\": \"08:00:00\",\n    \"thursdayEndMorning\": \"12:00:00\",\n    \"thursdayStartAfternoon\": \"13:00:00\",\n    \"thursdayEndAfternoon\": \"17:00:00\",\n    \"thursdayWorkingMinutes\": 480,\n    \"thursdayHomeWorkingMinutes\": 0,\n    \"fridayStartMorning\": \"08:00:00\",\n    \"fridayEndMorning\": \"12:00:00\",\n    \"fridayStartAfternoon\": \"13:00:00\",\n    \"fridayEndAfternoon\": \"17:00:00\",\n    \"fridayWorkingMinutes\": 480,\n    \"fridayHomeWorkingMinutes\": 0,\n    \"saturdayStartMorning\": \"00:00:00\",\n    \"saturdayEndMorning\": \"00:00:00\",\n    \"saturdayStartAfternoon\": \"00:00:00\",\n    \"saturdayEndAfternoon\": \"00:00:00\",\n    \"saturdayWorkingMinutes\": 0,\n    \"saturdayHomeWorkingMinutes\": 0,\n    \"sundayStartMorning\": \"00:00:00\",\n    \"sundayEndMorning\": \"00:00:00\",\n    \"sundayStartAfternoon\": \"00:00:00\",\n    \"sundayEndAfternoon\": \"00:00:00\",\n    \"sundayWorkingMinutes\": 0,\n    \"sundayHomeWorkingMinutes\": 0\n}"}],"_postman_id":"dfe59789-7b31-4fa4-bce2-ea1bd2ee8bcc"},{"name":"update user timetable","id":"e26773cb-cf9e-4e46-8adc-0469b3d7ca1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"dateFrom\": \"2020-01-01T00:00:00\",\r\n    \"mondayStartMorning\": \"08:00:00\",\r\n    \"mondayEndMorning\": \"12:00:00\",\r\n    \"mondayStartAfternoon\": \"13:00:00\",\r\n    \"mondayEndAfternoon\": \"17:00:00\",\r\n    \"mondayWorkingMinutes\": 480,\r\n    \"mondayHomeWorkingMinutes\": 0,\r\n    \"tuesdayStartMorning\": \"08:00:00\",\r\n    \"tuesdayEndMorning\": \"12:00:00\",\r\n    \"tuesdayStartAfternoon\": \"13:00:00\",\r\n    \"tuesdayEndAfternoon\": \"17:00:00\",\r\n    \"tuesdayWorkingMinutes\": 480,\r\n    \"tuesdayHomeWorkingMinutes\": 0,\r\n    \"wednesdayStartMorning\": \"07:00:00\",\r\n    \"wednesdayEndMorning\": \"11:00:00\",\r\n    \"wednesdayStartAfternoon\": \"00:00:00\",\r\n    \"wednesdayEndAfternoon\": \"00:00:00\",\r\n    \"wednesdayWorkingMinutes\": 240,\r\n    \"wednesdayHomeWorkingMinutes\": 0,\r\n    \"thursdayStartMorning\": \"08:00:00\",\r\n    \"thursdayEndMorning\": \"12:00:00\",\r\n    \"thursdayStartAfternoon\": \"13:00:00\",\r\n    \"thursdayEndAfternoon\": \"17:00:00\",\r\n    \"thursdayWorkingMinutes\": 480,\r\n    \"thursdayHomeWorkingMinutes\": 0,\r\n    \"fridayStartMorning\": \"08:00:00\",\r\n    \"fridayEndMorning\": \"12:00:00\",\r\n    \"fridayStartAfternoon\": \"13:00:00\",\r\n    \"fridayEndAfternoon\": \"17:00:00\",\r\n    \"fridayWorkingMinutes\": 480,\r\n    \"fridayHomeWorkingMinutes\": 0,\r\n    \"saturdayStartMorning\": \"00:00:00\",\r\n    \"saturdayEndMorning\": \"00:00:00\",\r\n    \"saturdayStartAfternoon\": \"00:00:00\",\r\n    \"saturdayEndAfternoon\": \"00:00:00\",\r\n    \"saturdayWorkingMinutes\": 0,\r\n    \"saturdayHomeWorkingMinutes\": 0,\r\n    \"sundayStartMorning\": \"00:00:00\",\r\n    \"sundayEndMorning\": \"00:00:00\",\r\n    \"sundayStartAfternoon\": \"00:00:00\",\r\n    \"sundayEndAfternoon\": \"00:00:00\",\r\n    \"sundayWorkingMinutes\": 0,\r\n    \"sundayHomeWorkingMinutes\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","{{userIdOrEmail}}","timetable"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f060fd1e-22ee-4a5b-b9ec-b960a47a4b8b","name":"user timetable","originalRequest":{"method":"PUT","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e26773cb-cf9e-4e46-8adc-0469b3d7ca1c"},{"name":"create user timetable","id":"e50ec385-8e2b-4cae-abd3-1fb8aa19ca47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"dateFrom\": \"2020-01-01T00:00:00\",\r\n    \"mondayStartMorning\": \"08:00:00\",\r\n    \"mondayEndMorning\": \"12:00:00\",\r\n    \"mondayStartAfternoon\": \"13:00:00\",\r\n    \"mondayEndAfternoon\": \"17:00:00\",\r\n    \"mondayWorkingMinutes\": 480,\r\n    \"mondayHomeWorkingMinutes\": 0,\r\n    \"tuesdayStartMorning\": \"08:00:00\",\r\n    \"tuesdayEndMorning\": \"12:00:00\",\r\n    \"tuesdayStartAfternoon\": \"13:00:00\",\r\n    \"tuesdayEndAfternoon\": \"17:00:00\",\r\n    \"tuesdayWorkingMinutes\": 480,\r\n    \"tuesdayHomeWorkingMinutes\": 0,\r\n    \"wednesdayStartMorning\": \"07:00:00\",\r\n    \"wednesdayEndMorning\": \"11:00:00\",\r\n    \"wednesdayStartAfternoon\": \"00:00:00\",\r\n    \"wednesdayEndAfternoon\": \"00:00:00\",\r\n    \"wednesdayWorkingMinutes\": 240,\r\n    \"wednesdayHomeWorkingMinutes\": 0,\r\n    \"thursdayStartMorning\": \"08:00:00\",\r\n    \"thursdayEndMorning\": \"12:00:00\",\r\n    \"thursdayStartAfternoon\": \"13:00:00\",\r\n    \"thursdayEndAfternoon\": \"17:00:00\",\r\n    \"thursdayWorkingMinutes\": 480,\r\n    \"thursdayHomeWorkingMinutes\": 0,\r\n    \"fridayStartMorning\": \"08:00:00\",\r\n    \"fridayEndMorning\": \"12:00:00\",\r\n    \"fridayStartAfternoon\": \"13:00:00\",\r\n    \"fridayEndAfternoon\": \"17:00:00\",\r\n    \"fridayWorkingMinutes\": 480,\r\n    \"fridayHomeWorkingMinutes\": 0,\r\n    \"saturdayStartMorning\": \"00:00:00\",\r\n    \"saturdayEndMorning\": \"00:00:00\",\r\n    \"saturdayStartAfternoon\": \"00:00:00\",\r\n    \"saturdayEndAfternoon\": \"00:00:00\",\r\n    \"saturdayWorkingMinutes\": 0,\r\n    \"saturdayHomeWorkingMinutes\": 0,\r\n    \"sundayStartMorning\": \"00:00:00\",\r\n    \"sundayEndMorning\": \"00:00:00\",\r\n    \"sundayStartAfternoon\": \"00:00:00\",\r\n    \"sundayEndAfternoon\": \"00:00:00\",\r\n    \"sundayWorkingMinutes\": 0,\r\n    \"sundayHomeWorkingMinutes\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","{{userIdOrEmail}}","timetable"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"069929c2-362f-4273-b558-55ed2403a8bc","name":"user timetable","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e50ec385-8e2b-4cae-abd3-1fb8aa19ca47"},{"name":"delete user timetable","id":"2ff5ee67-d622-4ead-91da-140d9cf7b210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable","description":"<p>Required scope: <strong>users.read</strong></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["users","{{userIdOrEmail}}","timetable"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"80e7836b-26af-4583-b217-cbfe9f83bea5","name":"user timetable","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/users/{{userIdOrEmail}}/timetable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2ff5ee67-d622-4ead-91da-140d9cf7b210"}],"id":"fb476ae0-9278-4feb-8954-a9123e841d26","_postman_id":"fb476ae0-9278-4feb-8954-a9123e841d26","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Companies","item":[{"name":"list all companies","id":"bc715405-e00a-4cc7-8614-8bbbb510e5c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/companies","description":"<p>Returns a list of all companies in the AdminPulse account that belongs to the API key / authorization token</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["companies"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a8c39d4c-433e-4aff-87a3-41eb9354df99","name":"list all companies","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/companies"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"id\": \"db9f4bac-4246-4c9d-98de-28b1b58e7a16\",\r\n        \"name\": \"Company 1\"\r\n    },\r\n    {\r\n        \"id\": \"bf85e040-ec7e-495d-9d8b-7e9fa1194dc1\",\r\n        \"name\": \"Company 2\"\r\n    }\r\n]"}],"_postman_id":"bc715405-e00a-4cc7-8614-8bbbb510e5c4"}],"id":"4d6b0f32-c8cc-46e8-a50e-723e853356de","description":"<ul>\n<li><p>One AdminPulse environment can have multiple <em>own companies</em>. Each and every company of your environment can have a different VAT number, and will allow you to have company based settings. More information can be found <a href=\"https://adminpulse.zendesk.com/hc/articles/5434832135698\">here</a>.</p>\n</li>\n<li><p>These are created to facilitate different invoicing options, etc.</p>\n</li>\n</ul>\n","_postman_id":"4d6b0f32-c8cc-46e8-a50e-723e853356de","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Settings","item":[{"name":"list invoice schedules","id":"7f4c3c44-0a28-4b20-b89f-74591a531487","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/settings/invoiceschedules","description":"<p>Required scope: <strong>settings.read.</strong></p>\n<p>Returns a list of invoice schedules with the following attributes. The invoice schedule can be set on a relation using the <em>/relations/invoiceschedule/add</em> endpoint</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The identifier of the invoice schedule</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The name of the invoice schedule</td>\n</tr>\n<tr>\n<td>invoicingType</td>\n<td>number</td>\n<td>Registration based = 0  <br />FixedAmount (forfait) = 1  <br />AdvanceSettlement = 2</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["settings","invoiceschedules"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2460bd53-2508-4f6f-95f9-331b31721e0e","name":"list invoice schedules","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/settings/invoiceschedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"581e6bd3-dc3a-eb11-8fed-0003ff20399c\",\n        \"name\": \"Forfait - 1x jaar\",\n        \"invoicingType\": 1\n    },\n    {\n        \"id\": \"190cfcb9-66c7-eb11-ba5e-00155d0eeb6e\",\n        \"name\": \"Forfait - Dagelijks\",\n        \"invoicingType\": 1\n    },\n    {\n        \"id\": \"1533d638-73f5-4bce-bfac-08dc1d898106\",\n        \"name\": \"Regie - Dagelijks*\",\n        \"invoicingType\": 0\n    },\n    {\n        \"id\": \"e68a5a39-9c99-4dcc-b0fd-180c1defa33a\",\n        \"name\": \"Fixed amount - 6/year\",\n        \"invoicingType\": 1\n    },\n    {\n        \"id\": \"0e49df3d-a890-4bc5-bde3-52dee88d2846\",\n        \"name\": \"Registration based - 4/year\",\n        \"invoicingType\": 0\n    },\n    {\n        \"id\": \"9cb5dc60-0e94-4331-ac51-5ecb6297ce59\",\n        \"name\": \"Fixed amount - 4/year\",\n        \"invoicingType\": 1\n    },\n    {\n        \"id\": \"2948836d-5bbf-410a-9c5e-68bb10e5df83\",\n        \"name\": \"Advance – 6/year + Settlement 12/31\",\n        \"invoicingType\": 2\n    },\n    {\n        \"id\": \"ba9b765f-6680-4c06-8a2e-90e10c7ab7c2\",\n        \"name\": \"Registration based - 12/year\",\n        \"invoicingType\": 0\n    },\n    {\n        \"id\": \"690a661d-2960-4733-8a14-ace2cb3a1d3f\",\n        \"name\": \"Advance – 12/year + Settlement 12/31\",\n        \"invoicingType\": 2\n    },\n    {\n        \"id\": \"b46c1631-3e34-4a07-90ed-af4eb2a0d9c8\",\n        \"name\": \"Fixed amount - 12/year\",\n        \"invoicingType\": 1\n    },\n    {\n        \"id\": \"62083342-0564-487f-a216-dba7b7a117f4\",\n        \"name\": \"Advance – 4/year + Settlement 12/31\",\n        \"invoicingType\": 2\n    },\n    {\n        \"id\": \"a76eb43e-bb4e-48cf-9cb5-e223f2f85ba7\",\n        \"name\": \"Registration based - 6/year\",\n        \"invoicingType\": 0\n    }\n]"}],"_postman_id":"7f4c3c44-0a28-4b20-b89f-74591a531487"},{"name":"list assignment templates","id":"8768eb82-f78f-405d-ab1d-c885d3cc4b03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/settings/assignmenttemplates","description":"<p>Required scope: <strong>settings.read.</strong></p>\n<p>Returns a list of assignment templates. The assignment template code can be used to create an invoice schedule for a specific assignment on a relation using the <em>/relations/invoiceschedule/add</em> endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Info</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The identifier of the assignment template</td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td>The code of the assignment template</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The name of the assignment template</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["settings","assignmenttemplates"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d4a35f4b-1d92-46dd-b83b-085d3da0177e","name":"list invoice schedules","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/settings/invoiceschedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"f54c9a2c-3684-ec11-b820-00155d0f25d3\",\n        \"code\": \"HR\",\n        \"name\": \"Human resources\"\n    },\n    {\n        \"id\": \"df29e5ad-c146-4504-5dd1-08dce75ea9d2\",\n        \"code\": \"AD\",\n        \"name\": \"Advies\"\n    }\n]"}],"_postman_id":"8768eb82-f78f-405d-ab1d-c885d3cc4b03"}],"id":"844313e7-4b08-46b9-b123-f7ee47a220c3","_postman_id":"844313e7-4b08-46b9-b123-f7ee47a220c3","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}},{"name":"Webhooks","item":[{"name":"create webhook","id":"9a7ad413-fb05-4e76-a0c6-444f9159d037","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"webhookUrl\": \"https://\",\n    \"events\": [\"updated\", \"created\"],\n    \"entities\": [\"registration\", \"relation\", \"task\", \"invoice\", \"document\", \"documentContent\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/webhooks","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["webhooks"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"aa282bf5-8b10-4b14-a25b-5bdde03e0017","name":"create webhook","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"webhookUrl\": \"https://google.com\",\n    \"events\": [\"updated\", \"created\"],\n    \"entities\": [\"relation\", \"task\", \"invoice\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiEndpointUrl}}/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6a6a5be4-81a9-459f-de41-08dcea0133e6\",\n    \"appId\": \"office.client\",\n    \"appKey\": \"xxx\",\n    \"webhookUrl\": \"https://google.com\",\n    \"events\": [\n        \"updated\",\n        \"created\"\n    ],\n    \"entities\": [\n        \"registration\",\n        \"relation\",\n        \"task\",\n        \"invoice\",\n        \"document\", \n        \"documentContent\"\n    ]\n}"}],"_postman_id":"9a7ad413-fb05-4e76-a0c6-444f9159d037"},{"name":"list webhooks","id":"3f22cc1f-9201-4e73-91e1-00fb36866d06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/webhooks","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["webhooks"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"503952bd-3ad7-4b72-87d2-12c14c2221e4","name":"list webhooks","originalRequest":{"method":"GET","header":[],"url":"{{apiEndpointUrl}}/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"tenantId\": \"0e90b316-82f5-4ca5-5bf9-08dcce659548\",\r\n        \"appId\": \"office.client\",\r\n        \"appKey\": \"XXX\",\r\n        \"webhookUrl\": \"https://google.com\",\r\n        \"enabled\": true,\r\n        \"id\": \"cdb9b65b-0976-45ba-fb17-08dcce4d8fd8\",\r\n        \"entities\": [\r\n            \"relation\",\r\n            \"task\",\r\n            \"invoice\"\r\n        ],\r\n        \"events\": [\r\n            \"created\",\r\n            \"updated\"\r\n        ]\r\n    }\r\n]"}],"_postman_id":"3f22cc1f-9201-4e73-91e1-00fb36866d06"},{"name":"delete webhook","id":"90f3c8b3-3f2b-4cc2-8fce-1fcfed828264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/webhooks/d1a451ca-04ec-40a1-2175-08db86f9e0aa","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}},"urlObject":{"path":["webhooks","d1a451ca-04ec-40a1-2175-08db86f9e0aa"],"host":["{{apiEndpointUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d365b60b-8fee-4268-88a5-3e5c8f0ec9d9","name":"delete webhook","originalRequest":{"method":"DELETE","header":[],"url":"{{apiEndpointUrl}}/webhooks/d1a451ca-04ec-40a1-2175-08db86f9e0aa"},"code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"90f3c8b3-3f2b-4cc2-8fce-1fcfed828264"}],"id":"bd777bb2-f44a-4fe7-8296-39b52cfbf416","description":"<ul>\n<li><p>When a webhook is triggered, it initiates a call to your designated endpoint, providing valuable information about events that have occurred within our system.</p>\n</li>\n<li><p>Each webhook call will return a structured list of items, each describing a specific event.</p>\n</li>\n<li><p><strong>Item Structure</strong></p>\n<ul>\n<li><p>Each item in the webhook response carries essential details:</p>\n<ul>\n<li><p><strong>Event :</strong> This indicates the nature of the event that took place. It provides insight into the type of change or action that occurred.</p>\n<ul>\n<li><em>updated, created, deleted</em></li>\n</ul>\n</li>\n<li><p><strong>EntityType:</strong> The entity type associated with the event. This signifies the specific aspect of your data that was affected.</p>\n<ul>\n<li><em>Registration, Relation, Invoice, Task, Document, DocumentContent, User</em></li>\n</ul>\n</li>\n<li><p><strong>EntityId</strong> : The id of the object</p>\n</li>\n</ul>\n</li>\n<li><p>Please note that the webhook response does not include the actual values related to the event. To obtain the latest version of the affected entity and its associated information, you should make a subsequent call to our API using the provided details.</p>\n</li>\n<li><p>Our webhook system provides a way for your application to stay updated about important changes in real time, allowing you to efficiently synchronize your data and respond promptly to any relevant modifications.</p>\n</li>\n</ul>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"AppId\": \"pat.client\",\n\"Items\": [\n{ \"EntityId\": \"ba3ed335-d724-ee11-a81c-0022488ac8b7\", \"Event\": \"updated\", \"EntityType\": \"relation\" },\n{ \"EntityId\": \"7d89a7bb-2940-ee11-a81c-000d3aa97f2f\", \"Event\": \"created\", \"EntityType\": \"relation\"\n} ]}\n\n</code></pre>\n","_postman_id":"bd777bb2-f44a-4fe7-8296-39b52cfbf416","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","id":"afc5d66a-7284-46de-9d3c-92bc9f5ffb96","name":"AdminPulse API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{}},"event":[{"listen":"prerequest","script":{"id":"1aea89c5-0b2a-4961-bae4-06fe388da4c2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"16eb6cc5-2d43-41ab-97cd-b1bc9a6d33ab","type":"text/javascript","exec":[""]}}],"variable":[{"key":"tagName","value":"{tagName}"}]}