{"info":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","description":"<html><head></head><body><h1 id=\"aprovall-edge-api-the-restful-api\">Aprovall 'EDGE' API, the restful API</h1>\n<p><a href=\"https://developers.aprovall.com/\">https://developers.aprovall.com/</a></p>\n<p>The REST / Json e-Attestations API is used to <strong>interface</strong> a <strong>client</strong> information system with the e-Attestations platform following the HTTP protocol.</p>\n<p>Our APIs contain predictable resource-oriented URLs, accept request bodies encoded in [JSON] format , return encoded responses [JSON] and uses standard HTTP response codes, authentication and verbs.</p>\n<p>'Client' applications using the Aprovall REST API enrich the Client Information System with the catalog of Aprovall data and services in a secure and very flexible manner.</p>\n<p>The API can also be used by integrators, software publishers, SAAS solutions or connectors.</p>\n<h2 id=\"postman-collection\">Postman collection</h2>\n<p>This collection of Postman scripts can ease testing phase.</p>\n<h3 id=\"requests-and-scenarios\">Requests and Scenarios</h3>\n<p>We provide you with a set of requests for very common scenario you will find with the use of Aprovall EDGE API.</p>\n<p>Of course they are quite simple examples.</p>\n<p>For each endpoint, there are one or more examples, you can see theme on the right panel :</p>\n<img src=\"https://public-ressources.e-attestations.com/ressources/developers/postman_examples.gif\">\n\n<p>More document evidences examples can be found in the <code>Dossier's Evidences &amp; Files Evidences</code> section in this documentation : SIS-ID, Trustpair etc.<br>Indeed, automatic processing provides additional information :</p>\n<img src=\"https://public-ressources.e-attestations.com/ressources/developers/postman_examples_evidences.png\">\n\n<p>Feel free to contact us for more advanced questions.</p>\n<h3 id=\"postman-environment-and-variables\">Postman environment and variables</h3>\n<p>All requests will fetch a new access_token automatically based on variables in your Postman environment.</p>\n<p>This collection use a script that will automatic fetches for you :</p>\n<ul>\n<li><p>access_token : the JWT access token needed for each request</p>\n</li>\n<li><p>account_id : the first account found in account_ids from the JWT</p>\n</li>\n</ul>\n<p>This 2 variables are mandatory and generated automatically for each request.</p>\n<p>You can swicth from environment to another and load values for the following variables.</p>\n<ul>\n<li><p>username : your username</p>\n</li>\n<li><p>password : your password</p>\n</li>\n<li><p>ea_auth_serv : the url for e-Attestations authorizer</p>\n</li>\n<li><p>ea_api_serv : the url for API services</p>\n</li>\n</ul>\n<p>This credentials are provided by e-Attestations. Please contact us : <a href=\"https://developers.aprovall.com/contact\">https://developers.aprovall.com/contact</a></p>\n<h3 id=\"quick-start\">Quick start</h3>\n<ol>\n<li>Download this Postman collection :</li>\n</ol>\n<img src=\"https://public-ressources.e-attestations.com/ressources/developers/postman_start.gif\">\n\n<ol>\n<li>Select the Aprovall environment (EA-Production) and fill your username and password in the environment variables section :</li>\n</ol>\n<img src=\"https://public-ressources.e-attestations.com/ressources/developers/postman_start2.gif\">\n\n<ol>\n<li>You can test your integration by using a test environment ( contact e-Attestations API Manager by email if you need it). To do so, you have to configure a new Postman environement :</li>\n</ol>\n<img src=\"https://public-ressources.e-attestations.com/ressources/developers/postman_start3.gif\">\n\n<ul><li><div>ea_auth_serv : https://auth.e-attestations.com to <b>https://auth.test-e-attestations.com</b></div></li><li><div>ea_api_serv : https://edge.e-attestations.com to <b>https://edge.test-e-attestations.com</b></div></li><li><div>username and password for the demo environement ( provided by Aprovall)<br></div></li></ul>\n\n<ol>\n<li>Now, you can test all endpoints and switch from one environment to another</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Aprovall 'EDGE' API, the restful API","slug":"aprovall-edge-api-the-restful-api"}],"owner":"2727694","collectionId":"09c3026f-15d2-437f-98f1-db710241baa9","publishedId":"Tz5ndeyb","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-02-19T17:54:22.000Z"},"item":[{"name":"Authenticate","item":[{"name":"Authenticate","event":[{"listen":"test","script":{"id":"c34f886a-68ed-4697-80cb-4987e0b36885","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"token\", jsonData.access_token);","pm.environment.set(\"processId\", \"\");","pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7f6bbdbd-c406-4c06-a14d-be0bd52807eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"ea-api-edge","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}]},"url":"{{ea_auth_serv}}/auth/realms/eat_realm/protocol/openid-connect/token","description":"<h2 id=\"authenticate-to-the-api\">Authenticate to the API</h2>\n<p>To use our API, you must first authenticate via <strong>OAuth 2.0</strong> using the <strong>Resource Owner Password Credentials (ROPC)</strong> grant.</p>\n<p>Upon successful authentication, the server returns a <strong>JWT (JSON Web Token)</strong> that must be included in all subsequent API requests.</p>\n<h3 id=\"security\">Security</h3>\n<ul>\n<li><p>The JWT is signed using <strong>RSA256</strong> (asymmetric key), allowing the server to verify token authenticity</p>\n</li>\n<li><p>Tokens have a limited lifetime, indicated by the <code>expires_in</code> field (in seconds)</p>\n</li>\n<li><p>Use the <code>refresh_token</code> to obtain a new access token without re-entering credentials</p>\n</li>\n</ul>\n<h3 id=\"get-a-jwt-access-token\">Get a JWT access token</h3>\n<p>Send a POST request with your credentials to the authentication server:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://auth.e-attestations.com/auth/realms/eat_realm/protocol/openid-connect/token\nContent-Type: application/x-www-form-urlencoded\ngrant_type=password\nclient_id=ea-api-edge\nusername=&lt;your-username&gt;\npassword=&lt;your-password&gt;\n\n</code></pre><p>The server returns a JWT access token along with a refresh token.</p>\n<h3 id=\"use-the-token\">Use the token</h3>\n<p>Include the access token in the <code>Authorization</code> header for all API requests:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer &lt;access_token&gt;\n\n</code></pre><h3 id=\"refresh-the-token\">Refresh the token</h3>\n<p>To obtain a new access token using the refresh token:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://auth.e-attestations.com/auth/realms/eat_realm/protocol/openid-connect/token\nContent-Type: application/x-www-form-urlencoded\ngrant_type=refresh_token\nclient_id=ea-api-edge\nrefresh_token=&lt;your-refresh-token&gt;\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["auth","realms","eat_realm","protocol","openid-connect","token"],"host":["{{ea_auth_serv}}"],"query":[],"variable":[]}},"response":[{"id":"2889a84c-2082-4e1d-b312-b15fceb98c3c","name":"Authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"ea-api-edge","type":"text"},{"key":"username","value":"changeme","type":"text"},{"key":"password","value":"changeme","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}]},"url":"https://auth.e-attestations.com/auth/realms/eat_realm/protocol/openid-connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Sep 2020 16:13:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2564"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=18yvN6fnm+YSa4wgqnZvN3QHR9D+34bum6++c2wLu5RlKApOBOeUPQ8PiyqKWOBVJMU7m1uNWBYpovuumF2OFE7W3jsfyWNzClP8uv4zCSjsXlysdkiHKaUtMGZY; Expires=Tue, 29 Sep 2020 16:13:48 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=18yvN6fnm+YSa4wgqnZvN3QHR9D+34bum6++c2wLu5RlKApOBOeUPQ8PiyqKWOBVJMU7m1uNWBYpovuumF2OFE7W3jsfyWNzClP8uv4zCSjsXlysdkiHKaUtMGZY; Expires=Tue, 29 Sep 2020 16:13:48 GMT; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"KC_RESTART=; Version=1; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Max-Age=0; Path=/auth/realms/eat_realm/; Secure; HttpOnly"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJSUzI1...\",\n    \"expires_in\": 1800,\n    \"refresh_expires_in\": 1800,\n    \"refresh_token\": \"eyJhbGciOiJIU...\",\n    \"token_type\": \"bearer\",\n    \"not-before-policy\": 1560246290,\n    \"session_state\": \"f8def82c-5c56-4de1-9653-3ce0d551ee78\",\n    \"scope\": \"profile email\"\n}"}],"_postman_id":"7f6bbdbd-c406-4c06-a14d-be0bd52807eb"}],"id":"d6ce1eb9-62fb-41da-8a94-8865afe80420","_postman_id":"d6ce1eb9-62fb-41da-8a94-8865afe80420","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Account information","item":[{"name":"Account(s)","event":[{"listen":"test","script":{"id":"9e3f67ae-690a-498d-8795-7c694e04a6be","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"46333d21-d697-4d16-8205-b23e4f8cca40","exec":[""],"type":"text/javascript"}}],"id":"02305e9f-2eba-479f-92bd-023442fd9b43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account","description":"<p>GET a request for the default account</p>\n","urlObject":{"path":["api","v1","account"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"0bb38faf-b054-4824-9e87-5899a853d2e9","name":"Account(s)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 23 Sep 2020 14:21:08 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 119631,\n            \"creation\": \"2015-04-02T10:56:07.736\",\n            \"account\": \"CPTDO2E2FFC774EDD6637F\",\n            \"name\": \"Compte Test\",\n            \"company\": \"Compte Test\",\n            \"maxDossiers\": 10,\n            \"subscriptionDate\": \"2019-05-24T13:01:31.514\",\n            \"subscriptionStatus\": \"ACTIVE\",\n            \"subscriptions\": [\n                {\n                    \"accountId\": 119631,\n                    \"key\": \"APIEDGE\",\n                    \"endSubscriptionDate\": null,\n                    \"startSubscriptionDate\": \"2019-05-24T13:01:31.514\",\n                    \"status\": \"ACTIVE\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"02305e9f-2eba-479f-92bd-023442fd9b43"},{"name":"Account statistics","event":[{"listen":"test","script":{"id":"67e1a59c-1790-4d2b-ae36-78101b13c218","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"3654919c-7148-4d29-8940-6408a5820adf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}","description":"<p>Requests one account's detailed statistics and indicators.\nIndicator \"I001\" correspond to dossiers  related to undeclared work reglementation.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"16d5d99c-6fdd-46b1-a07d-aa6fb6dcc571","name":"Account statistics","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 23 Sep 2020 14:22:43 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"accountId\": 119631,\n        \"numberOfThirdparties\": 22,\n        \"numberOfCompleteDossiers\": 7,\n        \"numberOfCompleteThirdparties\": 9,\n        \"numberOfDossiers\": 41,\n        \"numberOfSubscribedThirdparties\": 14,\n        \"listIndicatorsStatistics\": [\n            {\n                \"indicatorCode\": \"I001\",\n                \"numberOfDossiers\": 11,\n                \"numberOfSubscribedThirdparties\": 7,\n                \"numberOfCompleteDossiers\": 5,\n                \"numberOfCompleteThirdparties\": 1,\n                \"numberOfThirdparties\": 7\n            }\n        ]\n    }\n}"}],"_postman_id":"3654919c-7148-4d29-8940-6408a5820adf"},{"name":"Account dossier types list","event":[{"listen":"test","script":{"id":"67e1a59c-1790-4d2b-ae36-78101b13c218","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"999a5558-0dd9-4556-993e-f3a3cf86376e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossierTypes","description":"<p>Requests one account's dossier types.</p>\n<p>A dossier type is a defined set of documents that you can attach to a dossier to manage your requirements more easily.</p>\n<p>To create and manage your dossier types, please contact your key account manager.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossierTypes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"9708270d-aa01-4038-93bf-26d12d5311a0","name":"Reponse","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossierTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 23 Sep 2020 14:22:43 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 1,\n            \"code\": \"TESTRIB\",\n            \"libelle\": \"TEST RIB\",\n            \"requirements\": [\n                {\n                    \"documentId\": 49,\n                    \"accountId\": 119631,\n                    \"code\": \"RIB_IBAN\",\n                    \"name\": \"InternationalBankAccountNumberIBAN\",\n                    \"descriptionCategoryFr\": \"COORDONNEES BANCAIRES\",\n                    \"descriptionCategoryEn\": \"BANK ACCOUNT\",\n                    \"descriptionFr\": \"Coordonnées bancaires\",\n                    \"descriptionEn\": \"International Bank Account Number (IBAN)\"\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"code\": \"TEST LSE\",\n            \"libelle\": \"TESTLSE\",\n            \"requirements\": [\n                {\n                    \"documentId\": 5,\n                    \"accountId\": 119631,\n                    \"code\": \"LST_SAL_ETR\",\n                    \"name\": \"Autorisationsdetravail\",\n                    \"descriptionCategoryFr\": \"TRAVAIL DISSIMULE\",\n                    \"descriptionCategoryEn\": \"ILLEGAL WORK\",\n                    \"descriptionFr\": \"Liste nominative des salariés étrangers soumis à autorisation de travail\",\n                    \"descriptionEn\": \"List of names of posted workers subjected to work permit\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"999a5558-0dd9-4556-993e-f3a3cf86376e"},{"name":"Account attributes","id":"b011dc9e-f940-4dab-9a40-a19a231cab58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/attributes?bondType=thirdparty","description":"<p>Get all account attributes.</p>\n<p>An attribute is linked to a third party or un dossier (a set of documents)</p>\n<p>The <strong>bondType</strong> query param determine the attribute type :</p>\n<ul>\n<li><p>thirdparty : for third party attributes</p>\n</li>\n<li><p>dossier : for dossier attributes</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"9162e053-e9d8-41dc-8f5c-9e94521eeecb","id":"9162e053-e9d8-41dc-8f5c-9e94521eeecb","name":"Account information","type":"folder"}},"urlObject":{"path":["api","v1","account","{{account_id}}","attributes"],"host":["{{ea_api_serv}}"],"query":[{"key":"bondType","value":"thirdparty"}],"variable":[]}},"response":[{"id":"c63d641a-a305-4ec5-abee-5fcbf0913d20","name":"Account attributes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/attributes?bondType=thirdparty","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","attributes"],"query":[{"key":"bondType","value":"thirdparty"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 800,\n            \"accountId\": 111,\n            \"type\": \"boolean\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"STRATEGIC\",\n            \"creationDate\": \"2024-02-29T14:54:09.677+00:00\"\n        },\n        {\n            \"id\": 801,\n            \"accountId\": 111,\n            \"type\": \"date\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"CONTACT_DATE\",\n            \"creationDate\": \"2024-02-29T14:54:20.389+00:00\"\n        },\n        {\n            \"id\": 884,\n            \"accountId\": 111,\n            \"type\": \"percentage\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"PERCENTAGE_ATTRIBUTE\",\n            \"creationDate\": \"2024-06-10T16:53:05.625+00:00\"\n        },\n        {\n            \"id\": 912,\n            \"accountId\": 111,\n            \"type\": \"decimal\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"TURNOVER_LAST_YEAR\",\n            \"creationDate\": \"2024-07-31T12:37:57.565+00:00\"\n        },\n        {\n            \"id\": 913,\n            \"accountId\": 111,\n            \"type\": \"list_unique\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"REGION\",\n            \"creationDate\": \"2024-07-31T12:38:29.522+00:00\",\n            \"values\": [\n                {\n                    \"id\": 2952,\n                    \"value\": \"Option_1\"\n                },\n                {\n                    \"id\": 2953,\n                    \"value\": \"Option_2\"\n                },\n                {\n                    \"id\": 2954,\n                    \"value\": \"Option_3\"\n                }\n            ]\n        },\n        {\n            \"id\": 916,\n            \"accountId\": 111,\n            \"type\": \"string\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"CATEGORY\",\n            \"creationDate\": \"2024-08-09T13:20:19.297+00:00\"\n        },\n        {\n            \"id\": 921,\n            \"accountId\": 111,\n            \"type\": \"list_multiple\",\n            \"bondType\": \"thirdparty\",\n            \"label\": \"RISK\",\n            \"creationDate\": \"2024-09-03T07:45:52.709+00:00\",\n            \"values\": [\n                {\n                    \"id\": 2958,\n                    \"value\": \"High\"\n                },\n                {\n                    \"id\": 2959,\n                    \"value\": \"Moderate\"\n                },\n                {\n                    \"id\": 2960,\n                    \"value\": \"Low\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"b011dc9e-f940-4dab-9a40-a19a231cab58"}],"id":"9162e053-e9d8-41dc-8f5c-9e94521eeecb","description":"<p>Informations about your e-Attestations Account and statistics like the number of thirdparties you monitore on e-Attestations</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"3006af65-21e6-4e82-8770-96e2401d12eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"acc41080-33c1-4dad-a1e2-e3c0f9b057d4","type":"text/javascript","exec":[""]}}],"_postman_id":"9162e053-e9d8-41dc-8f5c-9e94521eeecb"},{"name":"Requirements","item":[{"name":"Requirements for the account","event":[{"listen":"test","script":{"id":"cde92c9a-8b5a-4cb4-bcaa-b16544dddddf","exec":["pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});","","// getting Requirements from response json","var codes = pm.response.json().content.map(req => req[\"code\"]);","console.log(codes);","pm.test(\"Verify the contents of the response contains some requirements\", function () { ","    pm.expect(codes).to.include(\"ATT_VIGI\");","    pm.expect(codes).to.include(\"JUSTIF_IMM\");","    pm.expect(codes).to.include(\"LST_SAL_ETR\");","});","",""],"type":"text/javascript"}}],"id":"0ce19dfd-f40a-488e-8137-3ff29ff0cbec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/requirements","description":"<p>Request account's allowed requierements which are the documents that you can use to compose dossiers.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","requirements"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"0129f987-259d-4296-94c9-0eaf98a3a5a7","name":"Requirements for the account","originalRequest":{"method":"GET","header":[],"url":"https://edge.qa-e-attestations.com/api/v1/account/119631/requirements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"documentId\": 1,\n            \"accountId\": 119631,\n            \"code\": \"ATT_VIGI\",\n            \"name\": \"Attestationdevigilance6mois\",\n            \"descriptionCategoryFr\": \"TRAVAIL DISSIMULE\",\n            \"descriptionCategoryEn\": \"ILLEGAL WORK\",\n            \"descriptionFr\": \"Attestation de vigilance (6 mois)\",\n            \"descriptionEn\": \"Attestation de vigilance (6 mois)\"\n        },\n        {\n            \"documentId\": 5,\n            \"accountId\": 119631,\n            \"code\": \"LST_SAL_ETR\",\n            \"name\": \"Autorisationsdetravail\",\n            \"descriptionCategoryFr\": \"TRAVAIL DISSIMULE\",\n            \"descriptionCategoryEn\": \"ILLEGAL WORK\",\n            \"descriptionFr\": \"Liste nominative des salariés étrangers soumis à autorisation de travail\",\n            \"descriptionEn\": \"List of names of posted workers subjected to work permit\"\n        },\n        {\n            \"documentId\": 49,\n            \"accountId\": 119631,\n            \"code\": \"RIB_IBAN\",\n            \"name\": \"InternationalBankAccountNumberIBAN\",\n            \"descriptionCategoryFr\": \"COORDONNEES BANCAIRES\",\n            \"descriptionCategoryEn\": \"IBAN\",\n            \"descriptionFr\": \"Coordonnées bancaires - RIB\",\n            \"descriptionEn\": \"International Bank Account Number (IBAN)\"\n        }\n    ]\n}"}],"_postman_id":"0ce19dfd-f40a-488e-8137-3ff29ff0cbec"},{"name":"Requirements of one dossier","event":[{"listen":"test","script":{"id":"db1407be-480a-4028-b066-58a5e27d61f9","exec":["pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});","","// getting Requirements from response json","var codes = pm.response.json().content.map(req => req[\"code\"]);","console.log(codes);","pm.test(\"Verify the contents of the response contains some requirements\", function () { ","    console.log(codes)","    pm.expect(codes).to.include(\"ADO\");","    pm.expect(codes).to.include(\"JUSTIF_IMM\");","    //pm.expect(codes).to.include(\"LST_SAL_ETR\");","});","",""],"type":"text/javascript"}}],"id":"da6aee50-94f6-4d8f-993f-37a79067e5bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossierId}}/requirements","description":"<p>Request one dossier's requirements/allowed documents to use in account's dossiers</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossierId}}","requirements"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"d38cfde7-0415-40b7-8ac7-ee3cba903637","name":"Requirements of one dossier (840158)","originalRequest":{"method":"GET","header":[],"url":"https://edge.qa-e-attestations.com/api/v1/account/119631/dossiers/840158/requirements"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"documentId\": 105,\n            \"accountId\": 119631,\n            \"code\": \"I9\",\n            \"name\": \"Certificat ISO 9001\",\n            \"nameEn\": \"ISO 9001 certification\",\n            \"dossierId\": 840158\n        },\n        {\n            \"documentId\": 1024,\n            \"accountId\": 119631,\n            \"code\": \"VT\",\n            \"name\": \"Vincent teste\",\n            \"nameEn\": \"Vincent teste\",\n            \"dossierId\": 840158\n        },\n        {\n            \"documentId\": 2,\n            \"accountId\": 119631,\n            \"code\": \"JUSTIF_IMM\",\n            \"name\": \"Justificatif d’immatriculation\",\n            \"nameEn\": \"Justificatif d’immatriculation\",\n            \"dossierId\": 840158\n        },\n        {\n            \"documentId\": 194,\n            \"accountId\": 119631,\n            \"code\": \"ADO\",\n            \"name\": \"Attestation d'inscription ORIAS\",\n            \"nameEn\": \"Attestation d'inscription ORIAS\",\n            \"dossierId\": 840158\n        },\n        {\n            \"documentId\": 135,\n            \"accountId\": 119631,\n            \"code\": \"CDSCP\",\n            \"name\": \"Contrat de sous-traitance QOVANS SERVICES\",\n            \"nameEn\": \"Contrat de sous-traitance QOVANS SERVICES\",\n            \"dossierId\": 840158\n        },\n        {\n            \"documentId\": 470,\n            \"accountId\": 119631,\n            \"code\": \"TDCDDTEMP(\",\n            \"name\": \"Attestation CARSAT accidents du travail et maladies professionnelles (AT/MP)\",\n            \"nameEn\": \"Attestation CARSAT accidents du travail et maladies professionnelles (AT/MP)\",\n            \"dossierId\": 840158\n        }\n    ]\n}"}],"_postman_id":"da6aee50-94f6-4d8f-993f-37a79067e5bf"}],"id":"d04be594-f0bb-4a1d-9e2b-5c97b5aaf574","description":"<p>Account's requirements are the documents you are allowed to ask to your thirdpartis in your dossiers.</p>\n<p>It depends on your e-Attestations configuration that you've designed with the help of you key account manager or automaticaly with your e-attestations subscription.</p>\n","event":[{"listen":"prerequest","script":{"id":"22397320-4182-46ab-b0c4-3595a4538636","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cb66eb54-6245-421d-b39b-785d16a752d7","type":"text/javascript","exec":[""]}}],"_postman_id":"d04be594-f0bb-4a1d-9e2b-5c97b5aaf574","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Thirdparties","item":[{"name":"Search for new thirdparty","event":[{"listen":"test","script":{"id":"d534c37b-6487-41bc-9419-5942bb2494de","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"thirdpartyId\", jsonData.content[0].thirdpartyId);","","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"83864301-967e-4baf-850e-1f423ddd7e11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"countryCode\": \"FR\",\n    \"searchBy\": \"VAT\",\n    \"value\": \"FR69503829368\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/search","description":"<p>Before creating a new dossier, you have to know a third party identifier : VAT number, DUNS etc.</p>\n<p>This endpoint allows you to search for third party with different methods :</p>\n<table><tbody><tr><th>Parameter</th><th>Type</th><th>Description</th></tr><tr><td><div>countryCode\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string (2-alpha code)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>ISO 3166 country code. List here : <a href=\"https://developers.aprovall.com/guides/dictionary/countries\">https://developers.aprovall.com/guides/dictionary/countries</a>Example : \"FR\", \"US\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>searchBy\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>This parameter must be one of the following values :<br /></p><ul><li><p><b>NAME</b> : Search by thirdparty name</p></li><li><p><b>DUNS</b> : Dun &amp; Bradstreet identifier</p></li><li><p><b>SIRET</b> : 14 digit number referring to your business location (SIREN + 5 digits). <i>countryCode</i> must be <code>FR</code></p></li><li><p><b>SIREN</b> : unique French business identification number (9 digits). <i>countryCode</i> must be <code>FR</code></p></li><li><p><b>VAT</b> : identifier used in many countries, including the countries of the European Union.</p></li><li><p><b>LOCAL_ID</b> : local identifier for a specified country</p></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>value\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>value of the previously chosen type (<code>searchBy</code>) : DUNS, SIRET, SIREN, VAT, LOCAL_ID or NAME</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p>In the JSON response :</p>\n<ul>\n<li><p>monitored : <code>true</code> for a followed third party, which have at least one active dossier in this account</p>\n</li>\n<li><p>present : <code>true</code> for a third party, already followed by e-Attestations</p>\n</li>\n<li><p>isIdEncrypted : <code>true</code> : for a non-french third party, without providing a DUNS number. If true, the DUNS number will be encrypted</p>\n</li>\n<li><p>id : may be :</p>\n  <ul><li><div>a SIRET number for a french third party</div></li><li><div>a DUNS number (if specified) for a non-french third party,</div></li><li><div>an encrypted DUNS for a non-french third party without providing DUNS number.</div></li></ul></li>\n</ul>\n<p>Possibles 400 errors :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E1002</td>\n<td>SIREN or SIRET type must be used with FR countryCode</td>\n</tr>\n<tr>\n<td>E1004</td>\n<td>Impossible to import a french third party with local ID. Use SIRET or SIREN instead</td>\n</tr>\n<tr>\n<td>E1005</td>\n<td>Invalid value</td>\n</tr>\n<tr>\n<td>E1006</td>\n<td>Service temporarily unavailable</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","search"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"32ca4d68-3ebb-462c-bfc0-a784a4ddce07","name":"Search by name","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"countryCode\": \"BE\",\n    \"searchBy\" : \"NAME\",\n    \"value\" : \"COCA\"\n}","options":{"raw":{"language":"json"}}},"url":"https://edge.qa-e-attestations.com/api/v1/account/119631/thirdparties/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"monitored\": true,\n        \"present\": false,\n        \"name\": \"Cok Evelyn\",\n        \"addressStreet\": \"Sint-Amandsplein 5\",\n        \"addressCity\": \"Grimbergen (Strombeek-Bever )\",\n        \"addressPostCode\": \"1853\",\n        \"headquarter\": true,\n        \"id\": \"u486vsDrNDWh4G2TyQ5Cyw==\",\n        \"isIdEncrypted\": true,\n        \"localIdValue\": \"0683869999\",\n        \"localIdType\": \"BE_ENTERPRISE_NUMBER\",\n        \"website\": null,\n        \"isdCode\": null,\n        \"nationalPhone\": \"049999999999\",\n        \"activityCode\": null,\n        \"activityLabel\": null,\n        \"source\": \"DNB\",\n        \"thirdPartyId\": 491345,\n        \"registrationNumbers\": [\n            {\n                \"number\": \"0683869999\",\n                \"code\": 800,\n                \"libelle\": \"Enterprise Number (BE)\"\n            }\n        ]\n    },\n    {\n        \"monitored\": false,\n        \"present\": false,\n        \"name\": \"Coca-Cola European Partners Belgium\",\n        \"addressStreet\": \"Chaussée de Mons 1424\",\n        \"addressCity\": \"Bruxelles\",\n        \"addressPostCode\": \"1070\",\n        \"headquarter\": true,\n        \"id\": \"QG4fRP+kZektI+VlJup5lA==\",\n        \"isIdEncrypted\": true,\n        \"localIdValue\": \"BE0425079999\",\n        \"localIdType\": \"BE_VAT_NUMBER\",\n        \"website\": null,\n        \"isdCode\": null,\n        \"nationalPhone\": \"0299999999\",\n        \"activityCode\": null,\n        \"activityLabel\": null,\n        \"source\": \"DNB\",\n        \"thirdPartyId\": null,\n        \"registrationNumbers\": [\n            {\n                \"number\": \"BE0425079999\",\n                \"code\": 99,\n                \"libelle\": \"Value Added Tax Number (BE)\"\n            }\n        ]\n    }\n]"},{"id":"280d67d0-a964-4dde-8086-768e207a5868","name":"Search by SIRET","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"countryCode\": \"FR\",\n    \"searchBy\" : \"SIRET\",\n    \"value\" : \"50382936800045\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"monitored\": true,\n        \"present\": false,\n        \"name\": \"E-ATTESTATIONS.COM\",\n        \"addressStreet\": \"2 RUE DU CHEMIN DES FEMMES\",\n        \"addressCity\": \"MASSY\",\n        \"addressPostCode\": \"91300\",\n        \"headquarter\": true,\n        \"id\": \"50382936800045\",\n        \"isIdEncrypted\": false,\n        \"localIdValue\": \"50382936800045\",\n        \"localIdType\": \"FRANCE_SIRET_NUMBER\",\n        \"website\": null,\n        \"isdCode\": null,\n        \"nationalPhone\": null,\n        \"activityCode\": \"5829C\",\n        \"activityLabel\": \"Edition de logiciels applicatifs\",\n        \"source\": \"ALTARES\",\n        \"thirdPartyId\": 875,\n        \"registrationNumbers\": []\n    }\n]"},{"id":"23858728-004a-447a-b8e6-798df433f01f","name":"Search by VAT","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"countryCode\": \"FR\",\n    \"searchBy\" : \"SIRET\",\n    \"value\" : \"50382936800045\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"monitored\": true,\n        \"present\": false,\n        \"name\": \"Cammaert Elastische Voegwerken Renovatie\",\n        \"addressStreet\": \"Galgenbergstraat 50, Internal Mail Reference A\",\n        \"addressCity\": \"Berlare\",\n        \"addressPostCode\": \"9290\",\n        \"headquarter\": true,\n        \"id\": \"ICLv2ewmE6fXsAw1dmgGRA==\",\n        \"isIdEncrypted\": true,\n        \"localIdValue\": \"BE0423924840\",\n        \"localIdType\": \"BE_VAT_NUMBER\",\n        \"website\": null,\n        \"isdCode\": null,\n        \"nationalPhone\": \"052999999\",\n        \"activityCode\": null,\n        \"activityLabel\": null,\n        \"source\": \"DNB\",\n        \"thirdPartyId\": 445308,\n        \"registrationNumbers\": [\n            {\n                \"number\": \"BE0423924840\",\n                \"code\": 99,\n                \"libelle\": \"Value Added Tax Number (BE)\"\n            }\n        ]\n    }\n]"},{"id":"835984a6-6efe-4769-ba2c-4fdeaa623e98","name":"Error 400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"countryCode\": \"BLABLABLA\",\n    \"searchBy\": \"NAME\",\n    \"value\": \"EMERIA\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/search"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 13:19:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E1006\",\n                \"message\": \"Service temporarily unavailable \",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"83864301-967e-4baf-850e-1f423ddd7e11"},{"name":"Append a new third party in my portfolio","id":"639cad99-6e3d-4f11-ab70-d8ab06b80ce7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"companyIdType\":\"CIT001\",\n    \"companyIdValue\":\"50382936800052\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties","description":"<p>Import a new third party in my porffolio</p>\n<p>The body contains several attributes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyIdType</td>\n<td>yes</td>\n<td>String</td>\n<td>CIT001  <br />for a SIRET number (french companies), composed of 14 numbers. Ex : 50382936800045  <br />CIT002  <br />for an intra-community VAT number, composed of two letters (country code), followed by numbers. Ex : FR69503829368  <br />CIT003  <br />for a DUNS number, composed of 9 numbers. Ex : 260004250. Or you can use an encrypted DUNS, found by using the <em>Thirdparties Search for new thirdparty</em> endpoint</td>\n</tr>\n<tr>\n<td>companyIdValue</td>\n<td>yes</td>\n<td>String</td>\n<td>SIRET, TVA or DUNS value</td>\n</tr>\n<tr>\n<td>companyIdEncrypted</td>\n<td>no</td>\n<td>Boolean</td>\n<td>true for encrypted DUNS, fetched with Thirdparties Search for new thirdparty endpoint. This parameter is optional and is false by default. If you know the DUNS number, skip this parameter. companyIdType must be CIT003</td>\n</tr>\n<tr>\n<td>thirdpartyCode</td>\n<td>no</td>\n<td>String</td>\n<td>A reference code from an external system or database. If a third party code already exists (set in another dossier), let this field empty</td>\n</tr>\n</tbody>\n</table>\n</div><p>List of error codes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error code</strong></th>\n<th><strong>Error description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E002</td>\n<td>Unknown parameter</td>\n</tr>\n<tr>\n<td>E003</td>\n<td>Empty parameter</td>\n</tr>\n<tr>\n<td>E010</td>\n<td>Wrong format</td>\n</tr>\n<tr>\n<td>E030</td>\n<td>Invalid E-mail domain</td>\n</tr>\n<tr>\n<td>E101</td>\n<td>Error qualifying the company</td>\n</tr>\n<tr>\n<td>E102</td>\n<td>Company does not exist</td>\n</tr>\n<tr>\n<td>E103</td>\n<td>Company is closed</td>\n</tr>\n<tr>\n<td>E105</td>\n<td>Company ID has change to</td>\n</tr>\n<tr>\n<td>E111</td>\n<td>Thirdparty code (supplierCode) is different regarding the existing one</td>\n</tr>\n<tr>\n<td>E112</td>\n<td>Thirdparty code (supplierCode) is already used for another thirdparty</td>\n</tr>\n<tr>\n<td>E113</td>\n<td>Thirdparty account disabled</td>\n</tr>\n<tr>\n<td>E122</td>\n<td>Impossible to import an international company. 'The international' option is not activated.</td>\n</tr>\n<tr>\n<td>E202</td>\n<td>Reference exists for third party</td>\n</tr>\n<tr>\n<td>E1002</td>\n<td>SIREN or SIRET type must be used with FR countryCode</td>\n</tr>\n<tr>\n<td>E1003</td>\n<td>Impossible to import a french third party with a VAT number. Use SIRET or SIREN instead</td>\n</tr>\n<tr>\n<td>E1004</td>\n<td>Impossible to import a french third party with local ID. Use SIRET or SIREN instead</td>\n</tr>\n<tr>\n<td>E1005</td>\n<td>Invalid value</td>\n</tr>\n<tr>\n<td>E1006</td>\n<td>Service temporarily unavailable</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"d58e848e-94d8-4106-832b-aef192fef29c","name":"Append a new third party in my portfolio","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"companyIdType\":\"CIT001\",\n    \"companyIdValue\":\"50382936800052\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"authorizingRoles\": [],\n        \"thirdpartyId\": 875,\n        \"accountId\": 15601,\n        \"companyIdType\": \"CIT001\",\n        \"siret\": \"50382936800052\",\n        \"siren\": \"503829368\",\n        \"tva\": \"FR69503829368\",\n        \"duns\": \"260004250\",\n        \"dateCreation\": \"2010-11-24\",\n        \"companyStartDate\": \"2008-04-07\",\n        \"followingDate\": \"2012-12-27\",\n        \"legalCategoryLabel\": \"Société par actions simplifiée\",\n        \"legalCategoryCode\": \"5710\",\n        \"acronym\": null,\n        \"brandName\": null,\n        \"addressingName\": \"E-ATTESTATIONS.COM CERTICORPS\",\n        \"activityLabel\": \"Edition de logiciels applicatifs\",\n        \"activityCode\": \"5829C\",\n        \"etabActivityCode\": \"5829C\",\n        \"etabActivityType\": \"CODE_APE\",\n        \"etabActivityLabel\": \"Edition de logiciels applicatifs\",\n        \"ceo\": null,\n        \"principals\": [\n            {\n                \"name\": \"Dupont\",\n                \"firstname\": \"Philippe\",\n                \"function\": \"Directeur général\",\n                \"companyName\": null\n            }\n        ],\n        \"capital\": 111,\n        \"capitalCurrency\": \"EUR\",\n        \"turnover\": 1111111,\n        \"turnoverCurrency\": \"EUR\",\n        \"lastBalanceSheetDate\": \"2022-12-31T01:00:00.000\",\n        \"workforce\": 24,\n        \"companyIdValue\": \"50382936800052\",\n        \"thirdpartyCode\": \"tp code example\",\n        \"monitored\": true,\n        \"onboarded\": true,\n        \"stoppingDate\": \"2023-06-27\",\n        \"stoppingReason\": null,\n        \"isMonitored\": \"true\",\n        \"name\": \"E-ATTESTATIONS.COM\",\n        \"addressStreet\": \"27 AVENUE CARNOT\",\n        \"addressCity\": \"MASSY\",\n        \"addressPostCode\": \"91300\",\n        \"addressCountryCode\": \"FR\",\n        \"etabPhoneNumber\": \"0158060010\",\n        \"website\": null,\n        \"headquarter\": true,\n        \"groupCompanyName\": null,\n        \"groupSiren\": null,\n        \"groupPercentageOwnership\": null,\n        \"registered\": true,\n        \"isRegistered\": \"true\",\n        \"registrationDate\": \"2010-11-24\",\n        \"active\": true,\n        \"isActive\": \"true\",\n        \"outOfBusiness\": false,\n        \"isOutOfBusiness\": \"false\",\n        \"stateLastChangeDate\": \"2023-10-30\",\n        \"complete\": false,\n        \"isComplete\": \"false\",\n        \"category\": \"PME\",\n        \"subCategory\": \"PE\",\n        \"thirdpartyAlerts\": \"NEANT\",\n        \"totalDossiers\": 18,\n        \"thirdpartyUsers\": [\n            {\n                \"userId\": 981739,\n                \"firstName\": \"Jean\",\n                \"lastName\": \"DUPONT\",\n                \"email\": \"j.dupont@email.com\",\n                \"phone\": \"+33 6 11 11 11 11\",\n                \"accountId\": 875\n            }\n        ],\n        \"listRegistrationNumber\": [],\n        \"lastStateSuivi\": null,\n        \"dunsEncrypted\": false\n    }\n}"},{"id":"b2a09b72-5416-4c2f-972f-8d441e1655ec","name":"Errors 400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"companyIdType\":\"CIT001\",\n    \"companyIdValue\":\"50382936d800052\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E010\",\n                \"message\": \"Wrong format (companyIDValue/50382936d800052)\",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"639cad99-6e3d-4f11-ab70-d8ab06b80ce7"},{"name":"Append a new unmanaged third party in my portfolio","id":"af068aee-fd66-406e-aa87-38ca50a9db77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"companyIdType\":\"CIT004\",\n   \"unmanagedSupplierInformation\":{\n      \"etabActivityCode\":\"011\",\n      \"addressStreet\":\"2 rue de la Gare\",\n      \"capital\":\"1000\",\n      \"addressCountryCode\":\"FR\",\n      \"headquarter\":true,\n      \"companyIdValue\":\"123456789\",\n      \"legalCategoryCode\":\"1000\",\n      \"addressPostCode\":\"58745\",\n      \"name\":\"My third party\",\n      \"category\":\"PME\",\n      \"addressCity\":\"CLAM\",\n      \"capitalCurrency\":\"EUR\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties","description":"<p>Import a third party manually without linking it to an external business registry such as Altares or Dun &amp; Bradstreet (D&amp;B).</p>\n<p>Only use this endpoint if the third party does not exist in Altares or DNB registries (CIT001, CIT002, CIT003).</p>\n<p>The body contains several attributes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyIdType</td>\n<td>yes</td>\n<td>String</td>\n<td><strong>CIT004</strong></td>\n</tr>\n<tr>\n<td>unmanagedSupplierInformation</td>\n<td>yes</td>\n<td>JSON object</td>\n<td>third party informations</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>unmanagedSupplierInformation</strong> :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>yes</td>\n<td>String</td>\n<td><strong>CIT004</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td>yes</td>\n<td>JSON object</td>\n<td>City</td>\n</tr>\n<tr>\n<td>addressCountryCode</td>\n<td>yes</td>\n<td>String</td>\n<td>ISO country code (e.g., FR, US). See all countries code here : <a href=\"https://developers.aprovall.com/guides/dictionary/countries\">https://developers.aprovall.com/guides/dictionary/countries</a></td>\n</tr>\n<tr>\n<td>addressPostCode</td>\n<td>yes</td>\n<td>String</td>\n<td>Postal/ZIP code</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td>yes</td>\n<td>String</td>\n<td>Street address</td>\n</tr>\n<tr>\n<td>capital</td>\n<td>no</td>\n<td>String</td>\n<td>Share capital amount</td>\n</tr>\n<tr>\n<td>capitalCurrency</td>\n<td>no</td>\n<td>String</td>\n<td>Currency code (e.g., EUR, USD). See all currencies code here : <a href=\"https://developers.aprovall.com/guides/dictionary/currencies\">https://developers.aprovall.com/guides/dictionary/currencies</a></td>\n</tr>\n<tr>\n<td>category</td>\n<td>no</td>\n<td>String</td>\n<td>Values: <strong>PME</strong> (Small/Medium), <strong>ETI</strong> (Mid-sized), <strong>GE</strong> (Large)</td>\n</tr>\n<tr>\n<td>companyIdValue</td>\n<td>no</td>\n<td>String</td>\n<td>Company identifier (e.g., SIRET, VAT etc)</td>\n</tr>\n<tr>\n<td>etabActivityCode</td>\n<td>yes</td>\n<td>String</td>\n<td>Activity code from a specific list : <a href=\"https://developers.aprovall.com/guides/dictionary/activities\">https://developers.aprovall.com/guides/dictionary/activities</a></td>\n</tr>\n<tr>\n<td>headquarter</td>\n<td>yes</td>\n<td>Boolean</td>\n<td>HQ or not</td>\n</tr>\n<tr>\n<td>legalCategoryCode</td>\n<td>no</td>\n<td>String</td>\n<td>Legal form code from a specific list : <a href=\"https://developers.aprovall.com/guides/dictionary/legal-categories\">https://developers.aprovall.com/guides/dictionary/legal-categories</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"c33efa47-2764-4f77-bed0-72126f6ca8fa","name":"Append a new unmanaged third party in my portfolio","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"companyIdType\":\"CIT004\",\n   \"unmanagedSupplierInformation\":{\n      \"etabActivityCode\":\"011\",\n      \"addressStreet\":\"2 rue de la Gare\",\n      \"capital\":\"1000\",\n      \"addressCountryCode\":\"FR\",\n      \"headquarter\":true,\n      \"companyIdValue\":\"123456789\",\n      \"legalCategoryCode\":\"1000\",\n      \"addressPostCode\":\"58745\",\n      \"name\":\"My third party\",\n      \"category\":\"PME\",\n      \"addressCity\":\"CLAM\",\n      \"capitalCurrency\":\"EUR\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"content\": {\n        \"authorizingRoles\": [],\n        \"thirdpartyId\": 516873,\n        \"accountId\": 15601,\n        \"companyIdType\": \"CIT004\",\n        \"siret\": null,\n        \"localIdValue\": null,\n        \"localIdType\": null,\n        \"siren\": null,\n        \"tva\": null,\n        \"duns\": null,\n        \"dateCreation\": \"2026-01-29\",\n        \"companyStartDate\": null,\n        \"followingDate\": \"2026-01-29\",\n        \"legalCategoryLabel\": \"Entrepreneur individuel\",\n        \"legalCategoryCode\": \"1000\",\n        \"acronym\": null,\n        \"brandName\": null,\n        \"addressingName\": null,\n        \"activityLabel\": \"Cash grains\",\n        \"activityCode\": \"011\",\n        \"etabActivityCode\": \"011\",\n        \"etabActivityType\": \"SIC\",\n        \"etabActivityLabel\": \"Cash grains\",\n        \"ceo\": null,\n        \"principals\": [],\n        \"capital\": 1000,\n        \"capitalCurrency\": \"EUR\",\n        \"turnover\": null,\n        \"turnoverCurrency\": null,\n        \"lastBalanceSheetDate\": null,\n        \"workforce\": null,\n        \"companyIdValue\": \"123456789\",\n        \"thirdpartyCode\": null,\n        \"monitored\": false,\n        \"onboarded\": true,\n        \"stoppingDate\": null,\n        \"stoppingReason\": null,\n        \"isMonitored\": \"false\",\n        \"name\": \"MY THIRD PARTY\",\n        \"addressStreet\": \"2 rue de la Gare\",\n        \"addressCity\": \"CLAM\",\n        \"addressPostCode\": \"58745\",\n        \"addressCountryCode\": \"FR\",\n        \"additionalAddressDetails\": null,\n        \"province\": null,\n        \"etabPhoneNumber\": null,\n        \"website\": null,\n        \"headquarter\": true,\n        \"groupCompanyName\": null,\n        \"groupSiren\": null,\n        \"groupPercentageOwnership\": null,\n        \"registered\": false,\n        \"isRegistered\": \"false\",\n        \"registrationDate\": null,\n        \"active\": true,\n        \"isActive\": \"true\",\n        \"outOfBusiness\": false,\n        \"isOutOfBusiness\": \"false\",\n        \"stateLastChangeDate\": \"2026-01-29\",\n        \"complete\": null,\n        \"isComplete\": \"n/a\",\n        \"category\": \"PME\",\n        \"subCategory\": null,\n        \"thirdpartyAlerts\": null,\n        \"totalDossiers\": 0,\n        \"thirdpartyUsers\": [],\n        \"listRegistrationNumber\": [],\n        \"lastStateSuivi\": null,\n        \"financialHistory\": null,\n        \"hasRestrictedDisclosure\": false,\n        \"dunsEncrypted\": false\n    }\n}"}],"_postman_id":"af068aee-fd66-406e-aa87-38ca50a9db77"},{"name":"Update a thirdparty code","id":"3bb85660-821a-4b68-8bfa-ff3115f231e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"supplierCode\": \"NEW_SUPPLIER_CODE_1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}","description":"<p>Modify a thirdparty code ( or supplier code)</p>\n<p>This code must be unique</p>\n<p>Possible 400 errors :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter supplierCode</td>\n</tr>\n<tr>\n<td>E011</td>\n<td>Maximum size exceeded</td>\n</tr>\n<tr>\n<td>E112</td>\n<td>Thirdparty code (supplierCode) is already used for another thirdparty</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"f75c2d6a-b66d-4715-b3a0-3364157fb833","name":"Update a thirdparty code","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"companyIdType\":\"CIT001\",\n    \"companyIdValue\":\"50382936800052\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"fc5416d2-2b13-4e88-b7be-e3482cc139fb","name":"Error 404 : Third party not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"test\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/1581809/attributes;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"404 : [{\\\"timestamp\\\":\\\"2024-11-08T10:13:40.417+00:00\\\",\\\"status\\\":404,\\\"error\\\":\\\"Not Found\\\",\\\"message\\\":\\\"\\\",\\\"path\\\":\\\"/api/account/15601/dossier/1581809/attributes\\\"}]\"\n        }\n    ]\n}"},{"id":"09f2a7d0-3b92-4b61-b615-1e8f381caa7b","name":"Error 400","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 13:08:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E001\",\n                \"message\": \"Missing parameter (thirdpartyCode)\",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"3bb85660-821a-4b68-8bfa-ff3115f231e0"},{"name":"Add or update a thirdparty attribute","id":"a08292bd-4c24-417b-964e-d2be501605e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"4. Purchase Annual Amount\",\n    \"values\":[\"+5K€\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes","description":"<p>Add or update a thirdparty attribute.</p>\n<ul>\n<li><p>label : attribute name, you can find this name by using the following endpoint : <strong>Account attributes</strong></p>\n</li>\n<li><p>values : an array of values, multiples values can be added a <strong>list_multiple</strong> attribute type</p>\n</li>\n</ul>\n<p>Il you want to set an empty value, you can set the following value : \"values\":[null]</p>\n<p>Possible 400 errors codes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E011</td>\n<td>For non multiple attribute, juste one value must be present in the values array</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","attributes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"4e1bbc06-f8a3-4da8-8d84-f7556c2401f3","name":"Add or update a thirdparty attribute","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"4. Purchase Annual Amount\",\n    \"values\":[\"+5K€\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"2b90a3d7-9ec5-4baa-8bab-71d8387f1340","name":"Errors 400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"test\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:12:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E010\",\n                \"message\": \"Wrong format (values/Should be one or multiple of the following values [aaa, aaaa].)\",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"},{"id":"9bada612-cfda-49dd-9d88-26c87d10656c","name":"Error 404 : Third party or attribute label not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"test\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/1581809/attributes;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"404 : [{\\\"timestamp\\\":\\\"2024-11-08T10:13:40.417+00:00\\\",\\\"status\\\":404,\\\"error\\\":\\\"Not Found\\\",\\\"message\\\":\\\"\\\",\\\"path\\\":\\\"/api/account/15601/dossier/1581809/attributes\\\"}]\"\n        }\n    ]\n}"}],"_postman_id":"a08292bd-4c24-417b-964e-d2be501605e0"},{"name":"Archive a third party","id":"b8210e23-3bf2-425c-9f3a-de1363853510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deactivationReason\":\"we no longer work with this thirdparty\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/stop","description":"<p>Archive a new third party in my porffolio</p>\n<p>The body contains several attributes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deactivationReason</td>\n<td>no</td>\n<td>String</td>\n<td>Reason for third-party deactivation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","stop"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"93712183-6958-4248-aa7a-3c753e5a9bd2","name":"Archive a third party","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deactivationReason\":\"we no longer work with this thirdparty\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"authorizingRoles\": [],\n        \"thirdpartyId\": 875,\n        \"accountId\": 15601,\n        \"companyIdType\": \"CIT001\",\n        \"siret\": \"50382936800052\",\n        \"siren\": \"503829368\",\n        \"tva\": \"FR69503829368\",\n        \"duns\": \"260004250\",\n        \"dateCreation\": \"2010-11-24\",\n        \"companyStartDate\": \"2008-04-07\",\n        \"followingDate\": \"2012-12-27\",\n        \"legalCategoryLabel\": \"Société par actions simplifiée\",\n        \"legalCategoryCode\": \"5710\",\n        \"acronym\": null,\n        \"brandName\": null,\n        \"addressingName\": \"E-ATTESTATIONS.COM CERTICORPS\",\n        \"activityLabel\": \"Edition de logiciels applicatifs\",\n        \"activityCode\": \"5829C\",\n        \"etabActivityCode\": \"5829C\",\n        \"etabActivityType\": \"CODE_APE\",\n        \"etabActivityLabel\": \"Edition de logiciels applicatifs\",\n        \"ceo\": null,\n        \"principals\": [\n            {\n                \"name\": \"Dupont\",\n                \"firstname\": \"Philippe\",\n                \"function\": \"Directeur général\",\n                \"companyName\": null\n            }\n        ],\n        \"capital\": 111,\n        \"capitalCurrency\": \"EUR\",\n        \"turnover\": 1111111,\n        \"turnoverCurrency\": \"EUR\",\n        \"lastBalanceSheetDate\": \"2022-12-31T01:00:00.000\",\n        \"workforce\": 24,\n        \"companyIdValue\": \"50382936800052\",\n        \"thirdpartyCode\": \"tp code example\",\n        \"monitored\": true,\n        \"onboarded\": true,\n        \"stoppingDate\": \"2023-06-27\",\n        \"stoppingReason\": null,\n        \"isMonitored\": \"true\",\n        \"name\": \"E-ATTESTATIONS.COM\",\n        \"addressStreet\": \"27 AVENUE CARNOT\",\n        \"addressCity\": \"MASSY\",\n        \"addressPostCode\": \"91300\",\n        \"addressCountryCode\": \"FR\",\n        \"etabPhoneNumber\": \"0158060010\",\n        \"website\": null,\n        \"headquarter\": true,\n        \"groupCompanyName\": null,\n        \"groupSiren\": null,\n        \"groupPercentageOwnership\": null,\n        \"registered\": true,\n        \"isRegistered\": \"true\",\n        \"registrationDate\": \"2010-11-24\",\n        \"active\": true,\n        \"isActive\": \"true\",\n        \"outOfBusiness\": false,\n        \"isOutOfBusiness\": \"false\",\n        \"stateLastChangeDate\": \"2023-10-30\",\n        \"complete\": false,\n        \"isComplete\": \"false\",\n        \"category\": \"PME\",\n        \"subCategory\": \"PE\",\n        \"thirdpartyAlerts\": \"NEANT\",\n        \"totalDossiers\": 18,\n        \"thirdpartyUsers\": [\n            {\n                \"userId\": 981739,\n                \"firstName\": \"Jean\",\n                \"lastName\": \"DUPONT\",\n                \"email\": \"j.dupont@email.com\",\n                \"phone\": \"+33 6 11 11 11 11\",\n                \"accountId\": 875\n            }\n        ],\n        \"listRegistrationNumber\": [],\n        \"lastStateSuivi\": null,\n        \"dunsEncrypted\": false\n    }\n}"},{"id":"e1609a5b-cfdc-4626-a217-248562a50687","name":"Error 404 : Third party or attribute label not found Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"test\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/1581809/attributes;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"404 : [{\\\"timestamp\\\":\\\"2024-11-08T10:13:40.417+00:00\\\",\\\"status\\\":404,\\\"error\\\":\\\"Not Found\\\",\\\"message\\\":\\\"\\\",\\\"path\\\":\\\"/api/account/15601/dossier/1581809/attributes\\\"}]\"\n        }\n    ]\n}"}],"_postman_id":"b8210e23-3bf2-425c-9f3a-de1363853510"},{"name":"Account thirdparties","event":[{"listen":"test","script":{"id":"d534c37b-6487-41bc-9419-5942bb2494de","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"thirdpartyId\", jsonData.content[0].thirdpartyId);","","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"91ed1765-b6e8-4069-8042-944180de1b45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?page=0&pageSize=5","description":"<p>Get the list of your thirdparties.\nThe result is paginated with 10 entries per page by default.</p>\n<p>You can specify the page size et page number with the following parameters.</p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>pageSize</td>\n<td>integer</td>\n<td>the number of results returned by the request (default is 10)</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>parameter to specify the number of the page you want to access (default is 0)</td>\n</tr>\n<tr>\n<td>insee</td>\n<td>boolean</td>\n<td>this parameter is not a search criteria but enable to get complementary information for french thirdparties, like insee code. All INSEE informations will be present in the <code>insee</code> section of the JSON response\n</td>\n</tr>\n<tr>\n<td>finess</td>\n<td>boolean</td>\n<td>this parameter is not a search criteria but enable to get complementary information for a FINESS (Fichier national des établissements sanitaires et sociaux) third party. All FINESS informations will be present in the <code>finess</code> section of the JSON response\n</td>\n</tr>\n</table>\n\n<p>Note : </p>\n<ul>\n<li>\n<code>\"companyIdType\": \"CIT001\"</code> for french thirdparties with <code>companyIdValue</code> = SIRET\n</li>\n<li>\n<code>\"companyIdType\": \"CIT002\"</code> for NON french thirdparties. When an intra-community VAT exists, it will appear in the <code>companyIdValue</code> field, otherwise it will be a null value for a DUNS without VAT. The DUNS is not yet returned\n</li>\n</ul>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"}],"variable":[]}},"response":[{"id":"e1772c30-ff74-4694-9e20-db6c08a8e951","name":"Thirdparties","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?page=0&pageSize=5","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 487744,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"48293649900999\",\n            \"thirdpartyCode\": null,\n            \"siren\": \"482999999\",\n            \"siret\": \"48293649900999\",\n            \"tva\": \"FR49482999999\",\n            \"name\": \"COMPANY NAME\",\n            \"dateCreation\": \"2021-05-19\",\n            \"companyStartDate\": \"2003-10-15\",\n            \"legalCategoryLabel\": \"Profession libérale\",\n            \"legalCategoryCode\": \"1500\",\n            \"acronym\": null,\n            \"activityLabel\": \"Activités spécialisées, scientifiques et techniques diverses\",\n            \"activityCode\": \"7490B\",\n            \"etabActivityCode\": \"7490B\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Activités spécialisées, scientifiques et techniques diverses\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"DUPONT\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Exploitant\"\n                }\n            ],\n            \"capital\": 0,\n            \"capitalCurrency\": null,\n            \"turnover\": null,\n            \"turnoverCurrency\": null,\n            \"lastBalanceSheetDate\": null,\n            \"workforce\": 1,\n            \"addressStreet\": \"32 QUAI ANDRE\",\n            \"addressCity\": \"ST GINNNN\",\n            \"addressPostCode\": \"74500\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": \"0699999999\",\n            \"website\": null,\n            \"category\": null,\n            \"subCategory\": null,\n            \"thirdpartyUsers\": [{\n                \"userId\": 981739,\n                \"firstName\": \"Thierry\",\n                \"lastName\": \"Adey\",\n                \"email\": \"t.adey@e-attestations.com\",\n                \"phone\": \"+33 1 01 01 01 01\",\n                \"accountId\": 875\n            }],\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n            },\n            {\n            \"thirdpartyId\": 445308,\n            \"companyIdType\": \"CIT002\",\n            \"companyIdValue\": \"BE0423929999\",\n            \"thirdpartyCode\": null,\n            \"siren\": null,\n            \"siret\": null,\n            \"tva\": \"BE0423929999\",\n            \"name\": \"Cammaert Elastische\",\n            \"dateCreation\": \"2019-09-30\",\n            \"companyStartDate\": \"1983-04-01\",\n            \"legalCategoryLabel\": \"Corporation\",\n            \"legalCategoryCode\": null,\n            \"acronym\": \"Cauwaert\",\n            \"activityLabel\": \"Floor laying and floor work, nec\",\n            \"activityCode\": \"17520000\",\n            \"etabActivityCode\": \"17520000\",\n            \"etabActivityType\": \"SIC\",\n            \"etabActivityLabel\": \"Floor laying and floor work, nec\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"XXX\",\n                    \"firstname\": \"XXXX\",\n                    \"function\": \"Manager\"\n                }\n            ],\n            \"capital\": null,\n            \"capitalCurrency\": null,\n            \"turnover\": 3684155.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2019-12-31\",\n            \"workforce\": 12,\n            \"addressStreet\": \"Galgenbergstraat 50 AAA\",\n            \"addressCity\": \"Berlare\",\n            \"addressPostCode\": \"9290\",\n            \"addressCountryCode\": \"BE\",\n            \"etabPhoneNumber\": \"32 77778599\",\n            \"website\": \"www.blablabla.be\",\n            \"category\": null,\n            \"subCategory\": null,\n            \"headquarter\": false,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": [\n                {\n                    \"number\": \"1472583697\",\n                    \"code\": 1800,\n                    \"libelle\": \"Branch Unit Number (BE)\"\n                },\n                {\n                    \"number\": \"BE0423929999\",\n                    \"code\": 99,\n                    \"libelle\": \"Value Added Tax Number (BE)\"\n                },\n                {\n                    \"number\": \"147258369\",\n                    \"code\": 800,\n                    \"libelle\": \"Enterprise Number (BE)\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"485ac3e3-6d33-4026-a791-f4346f861848","name":"Thirdparties with INSEE informations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?page=0&pageSize=5&insee=true","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"},{"key":"insee","value":"true"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANY NAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"thirdpartyUsers\": [{\n                \"userId\": 981739,\n                \"firstName\": \"Thierry\",\n                \"lastName\": \"Adey\",\n                \"email\": \"t.adey@e-attestations.com\",\n                \"phone\": \"+33 1 01 01 01 01\",\n                \"accountId\": 875\n            }],\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": [],\n            \"insee\": {\n                \"economieSocialeSolidaire\": false,\n                \"codeInsee\": \"98727\"\n            }\n        },\n        {\n            \"thirdpartyId\": 1186,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300998\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841998\",\n            \"siret\": \"49384180300998\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANY NAME 2\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE 2\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75002\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": [],\n            \"insee\": {\n                \"economieSocialeSolidaire\": true,\n                \"codeInsee\": \"98728\"\n            }\n        }\n    ]\n}"},{"id":"2c62a668-a9cb-4be2-b69e-1c392490d909","name":"Thirdparties with FINESS informations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?page=0&pageSize=5&finess=true","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"},{"key":"finess","value":"true"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANY NAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"thirdpartyUsers\": [{\n                \"userId\": 981739,\n                \"firstName\": \"Thierry\",\n                \"lastName\": \"Adey\",\n                \"email\": \"t.adey@e-attestations.com\",\n                \"phone\": \"+33 1 01 01 01 01\",\n                \"accountId\": 875\n            }],\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": [],\n            \"finess\": [\n                {\n                    \"catEtabLabel\": \"Service d'Accompagnement à la Vie Sociale (S.A.V.S.)\",\n                    \"numFinessET\": \"147258369\",\n                    \"updateDate\": \"2018-10-08T00:00:00\"\n                },\n                {\n                    \"catEtabLabel\": \"Autre Résidence Sociale (hors Maison Relais, Pension de Fami\",\n                    \"numFinessET\": \"1472588996\",\n                    \"updateDate\": \"2012-07-10T00:00:00\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"4e138b42-5b2d-4276-9618-caefad6154f3","name":"French thirdparty","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?page=0&pageSize=5","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 487744,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"48293649900999\",\n            \"thirdpartyCode\": null,\n            \"siren\": \"482999999\",\n            \"siret\": \"48293649900999\",\n            \"tva\": \"FR49482999999\",\n            \"name\": \"COMPANY NAME\",\n            \"dateCreation\": \"2021-05-19\",\n            \"companyStartDate\": \"2003-10-15\",\n            \"legalCategoryLabel\": \"Profession libérale\",\n            \"legalCategoryCode\": \"1500\",\n            \"acronym\": null,\n            \"activityLabel\": \"Activités spécialisées, scientifiques et techniques diverses\",\n            \"activityCode\": \"7490B\",\n            \"etabActivityCode\": \"7490B\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Activités spécialisées, scientifiques et techniques diverses\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"DUPONT\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Exploitant\"\n                }\n            ],\n            \"capital\": 0,\n            \"capitalCurrency\": null,\n            \"turnover\": null,\n            \"turnoverCurrency\": null,\n            \"lastBalanceSheetDate\": null,\n            \"workforce\": 1,\n            \"addressStreet\": \"32 QUAI ANDRE\",\n            \"addressCity\": \"ST GINNNN\",\n            \"addressPostCode\": \"74500\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": \"0699999999\",\n            \"website\": null,\n            \"category\": null,\n            \"subCategory\": null,\n            \"thirdpartyUsers\": [{\n                \"userId\": 981739,\n                \"firstName\": \"Thierry\",\n                \"lastName\": \"Adey\",\n                \"email\": \"t.adey@e-attestations.com\",\n                \"phone\": \"+33 1 01 01 01 01\",\n                \"accountId\": 875\n            }],\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n            },\n            {\n            \"thirdpartyId\": 445308,\n            \"companyIdType\": \"CIT002\",\n            \"companyIdValue\": \"BE0423929999\",\n            \"thirdpartyCode\": null,\n            \"siren\": null,\n            \"siret\": null,\n            \"tva\": \"BE0423929999\",\n            \"name\": \"Cammaert Elastische\",\n            \"dateCreation\": \"2019-09-30\",\n            \"companyStartDate\": \"1983-04-01\",\n            \"legalCategoryLabel\": \"Corporation\",\n            \"legalCategoryCode\": null,\n            \"acronym\": \"Cauwaert\",\n            \"activityLabel\": \"Floor laying and floor work, nec\",\n            \"activityCode\": \"17520000\",\n            \"etabActivityCode\": \"17520000\",\n            \"etabActivityType\": \"SIC\",\n            \"etabActivityLabel\": \"Floor laying and floor work, nec\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"XXX\",\n                    \"firstname\": \"XXXX\",\n                    \"function\": \"Manager\"\n                }\n            ],\n            \"capital\": null,\n            \"capitalCurrency\": null,\n            \"turnover\": 3684155.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2019-12-31\",\n            \"workforce\": 12,\n            \"addressStreet\": \"Galgenbergstraat 50 AAA\",\n            \"addressCity\": \"Berlare\",\n            \"addressPostCode\": \"9290\",\n            \"addressCountryCode\": \"BE\",\n            \"etabPhoneNumber\": \"32 77778599\",\n            \"website\": \"www.blablabla.be\",\n            \"category\": null,\n            \"subCategory\": null,\n            \"headquarter\": false,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": [\n                {\n                    \"number\": \"1472583697\",\n                    \"code\": 1800,\n                    \"libelle\": \"Branch Unit Number (BE)\"\n                },\n                {\n                    \"number\": \"BE0423929999\",\n                    \"code\": 99,\n                    \"libelle\": \"Value Added Tax Number (BE)\"\n                },\n                {\n                    \"number\": \"147258369\",\n                    \"code\": 800,\n                    \"libelle\": \"Enterprise Number (BE)\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"6a72d451-cba1-4187-b1c1-386afd04ddd1","name":"Non french thirdparty","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?page=0&pageSize=5","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n            {\n            \"thirdpartyId\": 445308,\n            \"companyIdType\": \"CIT002\",\n            \"companyIdValue\": \"BE0423929999\",\n            \"thirdpartyCode\": null,\n            \"siren\": null,\n            \"siret\": null,\n            \"tva\": \"BE0423929999\",\n            \"name\": \"Cammaert Elastische\",\n            \"dateCreation\": \"2019-09-30\",\n            \"companyStartDate\": \"1983-04-01\",\n            \"legalCategoryLabel\": \"Corporation\",\n            \"legalCategoryCode\": null,\n            \"acronym\": \"Cauwaert\",\n            \"activityLabel\": \"Floor laying and floor work, nec\",\n            \"activityCode\": \"17520000\",\n            \"etabActivityCode\": \"17520000\",\n            \"etabActivityType\": \"SIC\",\n            \"etabActivityLabel\": \"Floor laying and floor work, nec\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"XXX\",\n                    \"firstname\": \"XXXX\",\n                    \"function\": \"Manager\"\n                }\n            ],\n            \"capital\": null,\n            \"capitalCurrency\": null,\n            \"turnover\": 3684155.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2019-12-31\",\n            \"workforce\": 12,\n            \"addressStreet\": \"Galgenbergstraat 50 AAA\",\n            \"addressCity\": \"Berlare\",\n            \"addressPostCode\": \"9290\",\n            \"addressCountryCode\": \"BE\",\n            \"etabPhoneNumber\": \"32 77778599\",\n            \"website\": \"www.blablabla.be\",\n            \"category\": null,\n            \"subCategory\": null,\n            \"headquarter\": false,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": [\n                {\n                    \"number\": \"1472583697\",\n                    \"code\": 1800,\n                    \"libelle\": \"Branch Unit Number (BE)\"\n                },\n                {\n                    \"number\": \"BE0423929999\",\n                    \"code\": 99,\n                    \"libelle\": \"Value Added Tax Number (BE)\"\n                },\n                {\n                    \"number\": \"147258369\",\n                    \"code\": 800,\n                    \"libelle\": \"Enterprise Number (BE)\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"91ed1765-b6e8-4069-8042-944180de1b45"},{"name":"Search for my account thirdparties by criterias","event":[{"listen":"test","script":{"id":"2bccc36d-ddf3-4463-982c-3d07fa4a1782","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"76a19b7c-4bb2-47ee-ba30-f1927b8d4f3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties","description":"<p>Requests thirdparties by search criteria.</p>\n<p>You can view multiple examples on the right and select them with the dropdown.</p>\n<p>The list of search criteria :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>the thirdparty company name</td>\n</tr>\n<tr>\n<td>siren</td>\n<td>String</td>\n<td>the thirdparty company siren (french company id)</td>\n</tr>\n<tr>\n<td>siret</td>\n<td>String</td>\n<td>the thirdparty siret (french thirdparty id)</td>\n</tr>\n<tr>\n<td>tva</td>\n<td>String</td>\n<td>the thirdparty VAT number</td>\n</tr>\n<tr>\n<td>duns</td>\n<td>String</td>\n<td>the thirdparty DUNS number (D&amp;B identifier)</td>\n</tr>\n<tr>\n<td>thirdpartyCode</td>\n<td>String</td>\n<td>the thirdparty code (supplier code defined by the client)</td>\n</tr>\n<tr>\n<td>monitored</td>\n<td>boolean</td>\n<td>search for thirdparties your currently monitoring Aprovall. If monitored=false, you can request for thirdparties your no longer monitoring on e-Attestations. Monitored=true for all third parties who have at least one active dossier</td>\n</tr>\n<tr>\n<td>onboarded</td>\n<td>boolean</td>\n<td>search for onboarded thirdparties. If onboarded=true, returns thirdparties that are currently followed. If onboarded=false, returns archived thirdparties</td>\n</tr>\n<tr>\n<td>complete</td>\n<td>boolean</td>\n<td>complete=true for all third parties who have complete dossiers / complete=false for all third parties who have at least one incomplete dossier</td>\n</tr>\n<tr>\n<td>registered</td>\n<td>boolean</td>\n<td>search for thirdparties based on their registration status on Aprovall portal</td>\n</tr>\n<tr>\n<td>isCollectiveProceeding</td>\n<td>boolean</td>\n<td>search for thirdparties that are in collective proceeding (redressement judiciaire, liquidation, etc.)</td>\n</tr>\n<tr>\n<td>stateLastChangeDate</td>\n<td>String (format yyyy-MM-dd)</td>\n<td>enable to search for third parties which state has changed since the specified date (the date must be formatted like this : '2021-06-02'). Example : one dossier has changed state to incomplete on February 1 2022, therefore stateLastChangeDate will be 2022-02-01</td>\n</tr>\n<tr>\n<td>identityLastChangeDate</td>\n<td>String (format yyyy-MM-dd)</td>\n<td>enable to search for thirdparties who's identity information has change since the specified date (address, principals, ...)</td>\n</tr>\n<tr>\n<td>companyClosedDate</td>\n<td>String (format yyyy-MM-dd)</td>\n<td>search for thirdparties whose company has been closed since the specified date</td>\n</tr>\n<tr>\n<td>fromCreationDate</td>\n<td>String (format yyyy-MM-dd)</td>\n<td>search for thirdparties created (followed) since the specified date</td>\n</tr>\n<tr>\n<td>attributeLabel</td>\n<td>String</td>\n<td>the label of a custom attribute to filter on (must be used with attributeValue or fromAttributeChangeDate)</td>\n</tr>\n<tr>\n<td>attributeValue</td>\n<td>String</td>\n<td>the value of the custom attribute to filter on (must be used with attributeLabel)</td>\n</tr>\n<tr>\n<td>fromAttributeChangeDate</td>\n<td>String (format yyyy-MM-dd)</td>\n<td>search for thirdparties whose custom attribute value has changed since the specified date</td>\n</tr>\n<tr>\n<td>eventNames</td>\n<td>List</td>\n<td>Filter third parties that have specific events in their history. You can specify one or more event types separated by commas. See available event types here : <a href=\"https://developers.aprovall.com/guides/dictionary/events\">https://developers.aprovall.com/guides/dictionary/events</a></td>\n</tr>\n<tr>\n<td>eventOccurrenceStartDate</td>\n<td>String (format yyyy-MM-dd'T'HH:mm:ss.SSS)</td>\n<td>start date for event occurrence filter (must be used with eventNames and eventOccurrenceEndDate)</td>\n</tr>\n<tr>\n<td>eventOccurrenceEndDate</td>\n<td>String (format yyyy-MM-dd'T'HH:mm:ss.SSS)</td>\n<td>end date for event occurrence filter (must be used with eventNames and eventOccurrenceStartDate)</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>the page number for pagination (default: 0)</td>\n</tr>\n<tr>\n<td>pageSize</td>\n<td>Integer</td>\n<td>the number of results per page</td>\n</tr>\n<tr>\n<td>insee</td>\n<td>boolean</td>\n<td>this parameter is not a search criteria but enable to get complementary information for french thirdparties, like insee code. All INSEE informations will be present in the insee section of the JSON response</td>\n</tr>\n<tr>\n<td>finess</td>\n<td>boolean</td>\n<td>this parameter is not a search criteria but enable to get complementary information for a FINESS (Fichier national des établissements sanitaires et sociaux) third party. All FINESS informations will be present in the finess section of the JSON response</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"59f2c45a-d3fd-458c-85f9-a7dbf7572c21","name":"Search for monitored thirdparties","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?monitored=true","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"monitored","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANY NAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n        },\n        {\n            \"thirdpartyId\": 1186,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300998\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841998\",\n            \"siret\": \"49384180300998\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANY NAME 2\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE 2\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75002\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 50\n}"},{"id":"848f0370-e8a8-4f52-bffe-75e4e5af0504","name":"Search by company name","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?name=COMPANYNAME","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"name","value":"COMPANYNAME"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANYNAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 1\n}"},{"id":"3d41d2a7-f2a1-4e01-b12f-7e0c0d7387bd","name":"Search by siret","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?siret=49384180300999","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"siret","value":"49384180300999"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANYNAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 1\n}"},{"id":"da2bfc60-228a-438a-b53b-4b1ce855ea44","name":"Search by VAT number","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?tva=FR92493841803","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"tva","value":"FR92493841803"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANYNAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 1\n}"},{"id":"1bf2ad96-1856-442f-a085-bf5897adae99","name":"Search by last change date","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties?stateLastChangeDate=2020-06-01","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties"],"query":[{"key":"stateLastChangeDate","value":"2020-06-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300999\",\n            \"thirdpartyCode\": \"20192511\",\n            \"siren\": \"493841999\",\n            \"siret\": \"49384180300999\",\n            \"tva\": \"FR92493841803\",\n            \"name\": \"COMPANYNAME\",\n            \"dateCreation\": \"2010-11-26\",\n            \"companyStartDate\": \"2006-11-20\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": \"5720\",\n            \"acronym\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"ceo\": \"DUPONT Jean\",\n            \"principals\": [\n                {\n                    \"name\": \"Dupont\",\n                    \"firstname\": \"Jean\",\n                    \"function\": \"Président\"\n                }\n            ],\n            \"capital\": 5000,\n            \"capitalCurrency\": \"EUR\",\n            \"turnover\": 128204.0,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2012-12-31\",\n            \"workforce\": 0,\n            \"addressStreet\": \"6 ALLEE DE LA GARE\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"etabPhoneNumber\": null,\n            \"website\": null,\n            \"category\": \"PME\",\n            \"subCategory\": \"MICRO\",\n            \"headquarter\": true,\n            \"groupCompanyName\": null,\n            \"groupSiren\": null,\n            \"groupPercentageOwnership\": null,\n            \"listRegistrationNumber\": []\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 1\n}"}],"_postman_id":"76a19b7c-4bb2-47ee-ba30-f1927b8d4f3f"},{"name":"Account thirdparthy details","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{}}}],"id":"46214351-7c1c-414c-89e2-f728b72c06e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}","description":"<p>Request one thirdparty details by the given id</p>\n<p>You can specify the page size et page number with the following parameters.</p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<td>insee</td>\n<td>boolean</td>\n<td>this parameter is not a search criteria but enable to get complementary information for french thirdparties, like insee code. All INSEE informations will be present in the <code>insee</code> section of the JSON response</td>\n\n<tr>\n<td>finess</td>\n<td>boolean</td>\n<td>this parameter is not a search criteria but enable to get complementary information for a FINESS (Fichier national des établissements sanitaires et sociaux) third party. All FINESS informations will be present in the <code>finess</code> section of the JSON response\n</td>\n</tr>\n</table>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"2dc55afd-1c67-463e-a2d6-77f5682932c6","name":"Account thirdparties details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"thirdpartyId\": 875,\n        \"accountId\": 119631,\n        \"companyIdType\": \"CIT001\",\n        \"siret\": \"50382936800045\",\n        \"siren\": \"503829368\",\n        \"tva\": \"FR69503829368\",\n        \"dateCreation\": \"2010-11-24\",\n        \"legalCategoryLabel\": \"Société par actions simplifiée\",\n        \"legalCategoryCode\": \"5710\",\n        \"acronym\": null,\n        \"activityLabel\": \"Edition de logiciels applicatifs\",\n        \"activityCode\": \"5829C\",\n        \"ceo\": null,\n        \"capital\": 545444,\n        \"capitalCurrency\": \"EUR\",\n        \"turnover\": 4891866,\n        \"turnoverCurrency\": \"EUR\",\n        \"lastBalanceSheetDate\": \"2019-12-31T01:00:00.000\",\n        \"workforce\": 18,\n        \"companyIdValue\": \"50382936800045\",\n        \"thirdpartyCode\": \"123\",\n        \"monitored\": true,\n        \"isMonitored\": \"true\",\n        \"name\": \"E-ATTESTATIONS.COM\",\n        \"addressStreet\": \"2 RUE DU CHEMIN DES FEMMES\",\n        \"addressCity\": \"MASSY\",\n        \"addressPostCode\": \"91300\",\n        \"addressCountryCode\": \"FR\",\n        \"registered\": true,\n        \"isRegistered\": \"true\",\n        \"registrationDate\": \"2010-11-24\",\n        \"active\": true,\n        \"isActive\": \"true\",\n        \"outOfBusiness\": false,\n        \"isOutOfBusiness\": \"false\",\n        \"stateLastChangeDate\": \"2021-05-11\",\n        \"complete\": false,\n        \"isComplete\": \"false\",\n        \"category\": \"PME\",\n        \"subCategory\": \"PE\",\n        \"thirdpartyUsers\": [\n            {\n                \"userId\": 3241,\n                \"firstName\": \"Test\",\n                \"lastName\": \"Test\",\n                \"email\": \"test@e-attestations.com\",\n                \"phone\": \"+33 1 00 00 00 00\",\n                \"accountId\": 875\n            }\n        ]\n    }\n}"}],"_postman_id":"46214351-7c1c-414c-89e2-f728b72c06e4"},{"name":"Add un new thirdparty contact","id":"be930c43-e2fb-4d1a-9592-73110261ed3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\" : \"email@domain.com\",\n    \"lang\" : \"en\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/contacts","description":"<p>Invite a new contact for a specific third party</p>\n<p><strong>lang</strong> parameter can take the following values :</p>\n<ul>\n<li><p>en : english</p>\n</li>\n<li><p>fr : french</p>\n</li>\n<li><p>es : spanish</p>\n</li>\n<li><p>de : german</p>\n</li>\n<li><p>it : italian</p>\n</li>\n<li><p>pt : portuguese</p>\n</li>\n<li><p>nl : dutch</p>\n</li>\n</ul>\n<p>An invitation email will be send in this lang</p>\n<p>Possible 400 errors</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E1005</td>\n<td>Invalid value (Invalid email address)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","contacts"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"f5b98965-a7d5-4f86-bd5d-dfadd6c0c3dd","name":"Add un new thirdparty contact","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\" : \"email@domain.com\",\n    \"lang\" : \"en\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"6fb3c331-033c-402c-9848-621b4d308868","name":"Error 400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\" : \"emaidain.com\",\n    \"lang\" : \"en\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/contacts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 12:53:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E1005\",\n                \"message\": \"Invalid value (Invalid email address)\",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"be930c43-e2fb-4d1a-9592-73110261ed3c"},{"name":"Account thirdparthy contacts","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7a58c436-fa6b-4ca1-b505-074e9493479e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/contacts","description":"<p>Returns the list of <strong>contacts (users)</strong> attached to a given third party.</p>\n<p><strong>Path params</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>accountId</code></td>\n<td>Long</td>\n<td>Account (prime contractor) id</td>\n</tr>\n<tr>\n<td><code>thirdpartyId</code></td>\n<td>Long</td>\n<td>Third party id</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","contacts"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"a6a1c7bc-6e2c-495f-9962-b60eefe3b828","name":"Account thirdparties contacts","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"userId\": 111111,\n            \"pcuId\": 11111,\n            \"firstName\": \"Prenom_338196\",\n            \"lastName\": \"Nom_338196\",\n            \"function\": \"Fonction_338196\",\n            \"roles\": [],\n            \"email\": \"338196@e-attestations.com\",\n            \"phone\": \"+33101010101\",\n            \"invitationDate\": \"2017-04-24T15:33:26.111\",\n            \"status\": \"INSCRIT\",\n            \"lastActivityDate\": \"2026-04-15T11:30:30.924\",\n            \"tpName\": \"API\",\n            \"tpId\": \"81230712200026\",\n            \"tpIdType\": \"Siret\",\n            \"tpAccountId\": 11111\n        }\n    ]\n}"}],"_postman_id":"7a58c436-fa6b-4ca1-b505-074e9493479e"},{"name":"Delete Account thirdparthy contact","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"04252d60-fb2d-423a-8828-b756b748b786","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/contacts","description":"<p>Removes one or more <strong>contacts</strong> from a given third party (detaches the listed users).</p>\n<p><strong>Path params</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>accountId</code></td>\n<td>Long</td>\n<td>Account (prime contractor) id</td>\n</tr>\n<tr>\n<td><code>thirdpartyId</code></td>\n<td>Long</td>\n<td>Third party id</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body:</strong> a JSON array of <strong>user ids</strong> to remove (the <code>userId</code> field returned by <code>GET …/contacts</code>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>[338196, 412050]\n\n</code></pre><p><strong>Response:</strong> <code>200 OK</code>, empty body (no content).</p>\n<blockquote>\n</blockquote>\n<p>The ids in the body are <code>userId</code> values (e.g. <code>338196</code> from the contacts list), <strong>not</strong> <code>pcuId</code>. To remove a single contact, send an array with one element: <code>[338196]</code>.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","contacts"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04252d60-fb2d-423a-8828-b756b748b786"},{"name":"Account thirdparthy attributes","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{}}}],"id":"c1b95051-e294-4f54-8e6d-0d5ff0ee0a79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes","description":"<p>Get all attributes for a specifc thirdparty</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","attributes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"1c9e210f-949f-4e69-a3b4-9260d3ca0445","name":"Account thirdparthy attributes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [ \n        {\n            \"id\": 6896,\n            \"attributeId\": 784,\n            \"label\": \"4. Purchase Annual Amount\",\n            \"type\": \"list_unique\",\n            \"bondType\": \"thirdparty\",\n            \"creationDate\": \"2024-10-10T09:00:46.469+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"+5K€\"\n            ]\n        },\n        {\n            \"id\": 6898,\n            \"attributeId\": 911,\n            \"label\": \"Attribut_numérique_1\",\n            \"type\": \"decimal\",\n            \"bondType\": \"thirdparty\",\n            \"creationDate\": \"2024-10-10T09:00:55.361+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"12\"\n            ]\n        },\n        {\n            \"id\": 6588,\n            \"attributeId\": 800,\n            \"label\": \"BOOLEEN\",\n            \"type\": \"boolean\",\n            \"bondType\": \"thirdparty\",\n            \"creationDate\": \"2024-02-29T15:26:51.503+00:00\",\n            \"updateDate\": \"2024-10-10T09:00:59.467+00:00\",\n            \"values\": [\n                \"true\"\n            ]\n        },\n        {\n            \"id\": 6899,\n            \"attributeId\": 801,\n            \"label\": \"DATE\",\n            \"type\": \"date\",\n            \"bondType\": \"thirdparty\",\n            \"creationDate\": \"2024-10-10T09:01:09.347+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"2024-10-11\"\n            ]\n        },\n        {\n            \"id\": null,\n            \"attributeId\": 916,\n            \"label\": \"Text attribute\",\n            \"type\": \"string\",\n            \"bondType\": \"thirdparty\",\n            \"creationDate\": null,\n            \"updateDate\": null,\n            \"values\": [\"Text attribute value\"]\n        }\n    ]\n}"}],"_postman_id":"c1b95051-e294-4f54-8e6d-0d5ff0ee0a79"},{"name":"Account thirdparthy calculated attributes","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{}}}],"id":"325d0e6c-3690-48cb-844c-f564aa029078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/calculated-attributes","description":"<p>Get all calculted attributes for a specific thirdparty.</p>\n<p>Response details :</p>\n<ul>\n<li><p>name : attribute name</p>\n</li>\n<li><p>resultType : result type of the attribute :</p>\n<ul>\n<li><p>STRING : for a text value</p>\n</li>\n<li><p>ARITHMETIC_FORMULA_OUTPUT : for a double value</p>\n</li>\n</ul>\n</li>\n<li><p>resultValue : attribute value, depending of the type ( text or double)</p>\n</li>\n<li><p>resultColorCode: hexa code color displayed in the SAAS application for this attribute</p>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","calculated-attributes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"20adea41-3400-4dd4-af21-0e4bea7b4569","name":"Account thirdparthy calculated attributes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/calculated-attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 111,\n            \"calculationId\": null,\n            \"name\": \"text attribute\",\n            \"resultType\": \"STRING\",\n            \"resultValue\": \"France\",\n            \"resultColorCode\": \"#9900ef\",\n            \"resultLastUpdateDate\": \"2024-05-15T16:05:57.187+00:00\"\n        },\n        {\n            \"id\": 222,\n            \"calculationId\": null,\n            \"name\": \"numeric label\",\n            \"resultType\": \"ARITHMETIC_FORMULA_OUTPUT\",\n            \"resultValue\": \"4.5\",\n            \"resultColorCode\": \"\",\n            \"resultLastUpdateDate\": \"2024-07-23T10:22:33.969+00:00\"\n        }\n    ]\n}"}],"_postman_id":"325d0e6c-3690-48cb-844c-f564aa029078"},{"name":"Account thirdparthy indicators","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{}}}],"id":"841fe48c-114e-4a46-96a1-04418d12c3ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/indicators","description":"<p>Get all indicators for a specific thirdparty.</p>\n<p>Response details :</p>\n<ul>\n<li><p>name : indicator name</p>\n</li>\n<li><p>resultType : result type of the indicator :</p>\n<ul>\n<li><p>STRING : for a text value</p>\n</li>\n<li><p>ARITHMETIC_FORMULA_OUTPUT : for a double value</p>\n</li>\n</ul>\n</li>\n<li><p>resultValue : indicator value, depending of the type ( text or double)</p>\n</li>\n<li><p>resultColorCode: hexa code color displayed in the SAAS application for this indicator</p>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","indicators"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"514c9800-662f-45d0-91dd-65162406648d","name":"Account thirdparthy indicators","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 12,\n            \"calculationId\": null,\n            \"name\": \"Indued_ACT\",\n            \"resultType\": \"STRING\",\n            \"resultValue\": \"MEDIUM\",\n            \"resultColorCode\": \"#fcb900\",\n            \"resultLastUpdateDate\": \"2024-04-27T22:06:13.936+00:00\"\n        },\n        {\n            \"id\": 23,\n            \"calculationId\": null,\n            \"name\": \"RISK_CYBER\",\n            \"resultType\": \"STRING\",\n            \"resultValue\": \"DEFAVORABLE\",\n            \"resultColorCode\": \"#eb144c\",\n            \"resultLastUpdateDate\": \"2023-12-11T13:43:54.794+00:00\"\n        },\n        {\n            \"id\": 313,\n            \"calculationId\": null,\n            \"name\": \"TEST_INDICATOR\",\n            \"resultType\": \"STRING\",\n            \"resultValue\": \"Default\",\n            \"resultColorCode\": \"\",\n            \"resultLastUpdateDate\": \"2024-03-22T08:09:33.603+00:00\"\n        },\n        {\n            \"id\": 131,\n            \"calculationId\": null,\n            \"name\": \"SIS-ID\",\n            \"resultType\": \"STRING\",\n            \"resultValue\": \"OK\",\n            \"resultColorCode\": \"#00d084\",\n            \"resultLastUpdateDate\": \"2024-10-01T07:01:04.602+00:00\"\n        },\n        {\n            \"id\": 2423,\n            \"calculationId\": null,\n            \"name\": \"ARITHMETIC INDICATOR\",\n            \"resultType\": \"ARITHMETIC_FORMULA_OUTPUT\",\n            \"resultValue\": \"12345\",\n            \"resultColorCode\": \"\",\n            \"resultLastUpdateDate\": \"2024-07-26T15:54:50.188+00:00\"\n        }\n    ]\n}"}],"_postman_id":"841fe48c-114e-4a46-96a1-04418d12c3ce"},{"name":"Account thirdparthy scores","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript","packages":{}}}],"id":"79bbcac7-c368-417c-b883-4a2bbaf25a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/scores","description":"<p>Get all scores from external sources : DNB, Ecovadis, Transparency etc.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","scores"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"ffaddf64-0a8c-4567-ac1e-2e0984e9783a","name":"Account thirdparthy scores","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/scores"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"datablocks_financial_strength\": {\n            \"scoreDate\": \"2024-07-03\",\n            \"score\": \"1\",\n            \"isFailureScore\": false,\n            \"rating\": \"HH1\",\n            \"financialStrength\": \"HH\",\n            \"riskLevel\": \"very_low\",\n            \"riskSegmentDescription\": \"Minimum Risk - Proceed with transaction – offer extended terms if required\",\n            \"riskSegmentDescriptionFr\": \"Risque minimum - Poursuivre la transaction - proposer des conditions prolongées si nécessaire\",\n            \"financialStrengthDescription\": \"This entity has minimal Capital (Under 12K€).\",\n            \"financialStrengthDescriptionFr\": \"Ce tiers dispose d'un capital minimal (moins de 12K€).\",\n            \"dnbAssessment\": {\n                \"failureScore\": {\n                    \"classScore\": null,\n                    \"classScoreDescription\": null,\n                    \"scoreDate\": \"2024-07-03\",\n                    \"scoreModel\": {\n                        \"description\": \"FR43077\",\n                        \"dnbCode\": null\n                    },\n                    \"nationalPercentile\": null,\n                    \"scoreOverrideReasons\": null,\n                    \"rawScore\": null,\n                    \"riskIncidencePercentage\": null,\n                    \"scoreCommentary\": null\n                },\n                \"delinquencyScore\": {\n                    \"classScore\": null,\n                    \"classScoreDescription\": null,\n                    \"scoreDate\": null,\n                    \"scoreModel\": null,\n                    \"nationalPercentile\": null,\n                    \"scoreOverrideReasons\": null,\n                    \"rawScore\": null,\n                    \"riskIncidencePercentage\": null,\n                    \"scoreCommentary\": null\n                },\n                \"historyRating\": {\n                    \"description\": null,\n                    \"dnbCode\": null\n                },\n                \"standardRating\": {\n                    \"rating\": \"HH1\",\n                    \"scoreDate\": \"2024-07-03\",\n                    \"financialStrength\": \"HH\",\n                    \"riskSegment\": \"1\",\n                    \"ratingOverrideReasons\": null,\n                    \"ratingReason\": null\n                },\n                \"nordicAAARating\": {\n                    \"rating\": null,\n                    \"scoreDate\": null,\n                    \"financialStrength\": null,\n                    \"riskSegment\": null\n                },\n                \"financialCondition\": {\n                    \"description\": null,\n                    \"dnbCode\": null\n                },\n                \"creditLimitRecommendation\": null,\n                \"emergingMarketMediationScore\": null,\n                \"hasSevereNegativeEvents\": null\n            }\n        },\n        \"transparency\": [\n            {\n                \"cpiYear\": 2019,\n                \"countryIso2\": \"FR\",\n                \"countryIso3\": \"FRA\",\n                \"countryScore\": 69,\n                \"countryRank\": 23,\n                \"cpiNumberOfSources\": 8,\n                \"cpiStandardError\": 2,\n                \"countryScorePrecedentVar\": -3,\n                \"countryRankPrecedentVar\": 2,\n                \"countryNosPrecedentVar\": 0,\n                \"color\": \"#E99D20\",\n                \"intervalEnumName\": \"SIXTY_TO_SIXTY_NINE\"\n            },\n            {\n                \"cpiYear\": 2020,\n                \"countryIso2\": \"FR\",\n                \"countryIso3\": \"FRA\",\n                \"countryScore\": 69,\n                \"countryRank\": 23,\n                \"cpiNumberOfSources\": 8,\n                \"cpiStandardError\": 1,\n                \"countryScorePrecedentVar\": 0,\n                \"countryRankPrecedentVar\": 0,\n                \"countryNosPrecedentVar\": 0,\n                \"color\": \"#E99D20\",\n                \"intervalEnumName\": \"SIXTY_TO_SIXTY_NINE\"\n            },\n            {\n                \"cpiYear\": 2021,\n                \"countryIso2\": \"FR\",\n                \"countryIso3\": \"FRA\",\n                \"countryScore\": 71,\n                \"countryRank\": 22,\n                \"cpiNumberOfSources\": 8,\n                \"cpiStandardError\": 1,\n                \"countryScorePrecedentVar\": 2,\n                \"countryRankPrecedentVar\": -1,\n                \"countryNosPrecedentVar\": 0,\n                \"color\": \"#EEB805\",\n                \"intervalEnumName\": \"SEVENTY_TO_SEVENTY_NINE\"\n            },\n            {\n                \"cpiYear\": 2022,\n                \"countryIso2\": \"FR\",\n                \"countryIso3\": \"FRA\",\n                \"countryScore\": 72,\n                \"countryRank\": 21,\n                \"cpiNumberOfSources\": 8,\n                \"cpiStandardError\": 0,\n                \"countryScorePrecedentVar\": 1,\n                \"countryRankPrecedentVar\": -1,\n                \"countryNosPrecedentVar\": 0,\n                \"color\": \"#EEB805\",\n                \"intervalEnumName\": \"SEVENTY_TO_SEVENTY_NINE\"\n            },\n            {\n                \"cpiYear\": 2023,\n                \"countryIso2\": \"FR\",\n                \"countryIso3\": \"FRA\",\n                \"countryScore\": 71,\n                \"countryRank\": 0,\n                \"cpiNumberOfSources\": 0,\n                \"cpiStandardError\": 0,\n                \"countryScorePrecedentVar\": 0,\n                \"countryRankPrecedentVar\": 0,\n                \"countryNosPrecedentVar\": 0,\n                \"color\": \"#EEB805\",\n                \"intervalEnumName\": \"SEVENTY_TO_SEVENTY_NINE\"\n            }\n        ],\n        \"indued\": {\n            \"due_diligence_id\": \"111\",\n            \"due_diligence\": {\n                \"status\": \"fpm_done\",\n                \"fpm_url\": \"https://api-indued.altares.com/v3/entities/...\",\n                \"compliance_score\": 5,\n                \"country_score\": 1,\n                \"activity_score\": 2,\n                \"state\": \"active\",\n                \"pep_score\": 1,\n                \"sanctions_score\": 1,\n                \"adverse_media_score\": 1,\n                \"risk_event_score\": 1,\n                \"report_url\": \"https://api-indued.altares.com/api/v3/reports/...\",\n                \"risk_level\": 2,\n                \"workflow_status\": null,\n                \"failure_score\": null\n            },\n            \"report_id\": \"111\",\n            \"report_data\": {\n                \"status\": \"succeeded\",\n                \"url\": \"https://api-indued.altares.com/api/v3/...\"\n            },\n            \"created_date\": \"2024-10-09T19:30:10.871+00:00\",\n            \"last_modified_date\": \"2024-10-09T19:30:10.871+00:00\"\n        }\n    }\n}"}],"_postman_id":"79bbcac7-c368-417c-b883-4a2bbaf25a43"},{"name":"Account thirdparties legal informations","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript"}}],"id":"c2314fd4-70a3-4f0f-91fc-591f3d16432d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/legalstatus?fromDate=2020-01-01","description":"<p>Get all legal informations about followed third parties : address modification, judicial liquidation...</p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<td>fromDate</td>\n<td>YYYY-MM-DD</td>\n<td>all legal informations from this specified date</td>\n\n</table>","urlObject":{"path":["api","v1","account","{{account_id}}","legalstatus"],"host":["{{ea_api_serv}}"],"query":[{"key":"fromDate","value":"2020-01-01"}],"variable":[]}},"response":[{"id":"a37a1883-582a-47af-84e2-a11ca3753277","name":"Account thirdparties legal informations from 2020-01-01","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/legalstatus?fromDate=2020-01-01","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","legalstatus"],"query":[{"key":"fromDate","value":"2020-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"content\": {\n                \"Raison Sociale\": \"COMPANY NAME FRANCE\",\n                \"Siren\": \"014725836\",\n                \"Évenement\": \"Information légale - Changement d'adresse\",\n                \"Date de parution\": \"29/03/2020\",\n                \"Annonce\": \"N° Annonce XXXX, N° Bodacc XX, N° Parution XXXXXXX\",\n                \"Tribunal\": \"XXXX TRIBUNAL DE COMMERCE DE LYON 69\",\n                \"Descriptif\": \"Nouveau siège. Mise en activité de la société. Origine : Fonds reçu en location gérance.\"\n            },\n            \"category\": \"Modifications\"\n        },\n        {\n            \"content\": {\n                \"Raison Sociale\": \"COMPANY NAME FRANCE\",\n                \"Siren\": \"014725836\",\n                \"Évenement\": \"Information légale - Location gérance reçue d'un fonds de commerce\",\n                \"Date de parution\": \"29/03/2020\",\n                \"Annonce\": \"N° Annonce XXXX, N° Bodacc XX, N° Parution XXXXXXX\",\n                \"Tribunal\": \"PERPIC TRIBUNAL DE COMMERCE DE PERPIGNAN 66\",\n                \"Descriptif\": \"Mise en activité de la société. Origine : Fonds reçu en location gérance.\"\n            },\n            \"category\": \"Modifications\"\n        },\n        {\n            \"content\": {\n                \"Raison Sociale\": \"COMPANY NAME IMMOBILIER\",\n                \"Siren\": \"014725836\",\n                \"Évenement\": \"Information légale - Nomination / modification sur les commissaires aux comptes\",\n                \"Date de parution\": \"29/03/2020\",\n                \"Annonce\": \"N° Annonce XXXX, N° Bodacc XX, N° Parution XXXXXXX\",\n                \"Tribunal\": \"XXXXX TRIBUNAL DE COMMERCE DE VERSAILLES 78\",\n                \"Descriptif\": \"Modification survenue sur l'administration.\"\n            },\n            \"category\": \"Modifications\"\n        }\n    ]\n}"}],"_postman_id":"c2314fd4-70a3-4f0f-91fc-591f3d16432d"},{"name":"Account thirdparties location history","event":[{"listen":"test","script":{"id":"734d7dc4-c9f1-4159-9f20-dbde185534b4","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","pm.test(\"Check thirdpartyId is valid\", function () {","    pm.expect(jsonData.content).not.to.be.empty","    pm.expect(jsonData.content.thirdpartyId).to.eq(pm.environment.get(\"thirdpartyId\"))","})"],"type":"text/javascript"}}],"id":"56fbb6a4-e6ff-4f13-b1bc-8a7e16231672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/history","description":"<p>Get the history of this thirdparty's locations</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","history"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"a71f4a29-fa93-4c47-b1d9-42cd528e7d20","name":"Account thirdparties localtion history","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}//thirdparties/{{thirdparty_id}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"etablissementId\": 360621,\n            \"thirdpartyId\": 875,\n            \"identifiant\": \"50382936800045\",\n            \"tpStartDate\": \"2017-06-07T02:00:00\",\n            \"tpClosingDate\": null,\n            \"addressStreet\": \"2 RUE DU CHEMIN DES FEMMES\",\n            \"addressCity\": \"MASSY\",\n            \"addressPostCode\": \"91300\",\n            \"addressCountryCode\": \"FR\",\n            \"active\": true\n        },\n        {\n            \"etablissementId\": 684534,\n            \"thirdpartyId\": 875,\n            \"identifiant\": \"50382936800052\",\n            \"tpStartDate\": \"2021-10-01T02:00:00\",\n            \"tpClosingDate\": null,\n            \"addressStreet\": \"27 AVENUE CARNOT\",\n            \"addressCity\": \"MASSY\",\n            \"addressPostCode\": \"91300\",\n            \"addressCountryCode\": \"FR\",\n            \"active\": true\n        },\n        {\n            \"etablissementId\": 930,\n            \"thirdpartyId\": 875,\n            \"identifiant\": \"50382936800037\",\n            \"tpStartDate\": \"2010-06-24T02:00:00\",\n            \"tpClosingDate\": \"2017-06-07T02:00:00\",\n            \"addressStreet\": \"VILLA DE LOURCINE\",\n            \"addressCity\": \"PARIS 14E ARRONDISSEMENT\",\n            \"addressPostCode\": \"75014\",\n            \"addressCountryCode\": \"FR\",\n            \"active\": false\n        }\n    ]\n}"}],"_postman_id":"56fbb6a4-e6ff-4f13-b1bc-8a7e16231672"}],"id":"a40569ac-d749-41e2-8c87-46d3c045478c","description":"<p>Account's thirdparties list and details.</p>\n","event":[{"listen":"prerequest","script":{"id":"cca7ef93-bde6-45a5-b235-412decf890f0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dcd3ebe-f5a1-4197-9748-e0a5f3428884","type":"text/javascript","exec":[""]}}],"_postman_id":"a40569ac-d749-41e2-8c87-46d3c045478c","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Dossiers","item":[{"name":"Dossiers ALL","event":[{"listen":"test","script":{"id":"83982e40-7a9e-4734-a4cf-2f732d53b016","exec":["var jsonData = JSON.parse(responseBody);","","pm.globals.set(\"dossierReference\", jsonData.content[0].dossierReference);","pm.globals.set(\"companyIdType\", jsonData.content[0].companyIdType);","pm.globals.set(\"companyIdValue\", jsonData.content[0].companyIdValue);","pm.globals.set(\"dossierId\", jsonData.content[0].dossierId);","","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"80e8a93c-92dc-4d56-b5f7-3d49d7117e3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/all","description":"<p>Requests all dossiers at once (not paginated)</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","all"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"d5e16081-9a93-46d9-be2c-480d84bd1fff","name":"All Dossiers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"dossierId\": 1433524,\n            \"accountId\": 119631,\n            \"siren\": \"542107800\",\n            \"siret\": \"54210780003943\",\n            \"tva\": \"FR72542107800\",\n            \"thirdpartyId\": 320479,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"54210780003943\",\n            \"thirdpartyCode\": \"9833\",\n            \"thirdpartyState\": true,\n            \"thirdpartyName\": \"E-ATTESTATIONS.COM\",\n            \"thirdpartyActivityCode\": \"5829C\",\n            \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"companyCountryCode\": \"FR\",\n            \"monitored\": false,\n            \"isMonitored\": \"false\",\n            \"dossierReference\": \"TEST\",\n            \"description\": \"description_1433524\",\n            \"purchasingCategory\": \"ttttt\",\n            \"creationDate\": \"2018-07-16T11:04:59.756\",\n            \"startingDate\": null,\n            \"expirationDate\": null,\n            \"stoppingDate\": \"2020-03-17T10:55:42.411\",\n            \"stoppingReason\": \"ACTION_VOLONTAIRE\",\n            \"state\": null,\n            \"isComplete\": \"true\",\n            \"stateLastChangeDate\": null,\n            \"notes\": [\n                {\n                    \"dateCreation\": \"2018-09-18T14:41:33.193+00:00\",\n                    \"prenomNom\": \"Jean Dupont\",\n                    \"userOid\": 14785,\n                    \"contenu\": \"this is a note\"\n                },\n                {\n                    \"dateCreation\": \"2018-09-18T14:43:56.742+00:00\",\n                    \"prenomNom\": \"Jean Dupont\",\n                    \"userOid\": 14785,\n                    \"contenu\": \"This is a second note\"\n                }\n            ],\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2020-03-17T10:47:37.585\"\n                }\n            ],\n            \"documents\": [],\n            \"statusCode\": \"VALID\"\n        },\n        {\n            \"dossierId\": 1504311,\n            \"accountId\": 119631,\n            \"siren\": \"480470152\",\n            \"siret\": \"48047015200012\",\n            \"tva\": \"FR71480470152\",\n            \"thirdpartyId\": 86049,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"48047015200012\",\n            \"thirdpartyCode\": null,\n            \"companyCountryCode\": \"FR\",\n            \"thirdpartyState\": true,\n            \"thirdpartyName\": \"GOOGLE\",\n            \"thirdpartyActivityCode\": \"5829C\",\n            \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"monitored\": true,\n            \"isMonitored\": \"true\",\n            \"dossierReference\": \"-\",\n            \"description\": \"\",\n            \"purchasingCategory\": \"\",\n            \"creationDate\": \"2018-07-16T11:04:59.756\",\n            \"startingDate\": null,\n            \"expirationDate\": null,\n            \"stoppingDate\": null,\n            \"stoppingReason\": \"NA\",\n            \"state\": true,\n            \"isComplete\": \"true\",\n            \"stateLastChangeDate\": \"2021-05-26T13:58:04.688\",\n            \"notes\": [],\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2021-05-26T13:58:04.688\"\n                }\n            ],\n            \"documents\": [\n                {\n                    \"documentId\": 11675833,\n                    \"dossierId\": 1504311,\n                    \"documentCode\": \"RIB_IBAN\",\n                    \"documentName\": \"Coordonnées bancaires - RIB\",\n                    \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n                    \"requestDate\": \"2021-05-26T13:58:05.312\",\n                    \"present\": true,\n                    \"isPresent\": \"true\",\n                    \"evidences\": [\n                        {\n                            \"id\": 2704163,\n                            \"responseId\": 2238768,\n                            \"uploadDate\": \"2017-04-25T10:45:16.537\",\n                            \"fileUUID\": \"a3218884b699c5074ce07e111c6eb43ddb3ddcf2\",\n                            \"fileName\": \"file:/data/CCDocs/50382936800045/20190306-110611_50382936800045_NDA_e-attestations.com.pdf\",\n                            \"fileCreation\": \"2017-04-25T10:45:16.520\",\n                            \"fileSize\": 25999,\n                            \"expirationDate\": \"2022-04-25T23:59:59.999\",\n                            \"formdata\": [\n                                {\n                                    \"type\": \"iban\",\n                                    \"key\": \"f_49_bn_0\",\n                                    \"title\": \"IBAN\",\n                                    \"order\": 0,\n                                    \"value\": \"FR76 XXXX XXXX XXXX XXXX XXXX XXX\"\n                                }\n                            ],\n                            \"format\": \"ORIGINALNUMERIQUE\",\n                            \"issuer\": \"DO\",\n                            \"transmitter\": \"FOURNISSEUR\",\n                            \"metadata\": {\n                                \"bank_data_country_iso\": \"FR\",\n                                \"bank_data_bank\": \"STE GENERALE\",\n                                \"sepa_data_cor1\": \"NO\",\n                                \"verified\": \"true\",\n                                \"sepa_data_sct\": \"YES\",\n                                \"bank_data_country\": \"\",\n                                \"bank_data_address\": \"28 R DES ARTS\",\n                                \"bank_data_account\": \"XXXXXXXXX\",\n                                \"bank_data_phone\": \"\",\n                                \"bank_data_zip\": \"XXXXX\",\n                                \"bank_data_city\": \"LILLE\",\n                                \"bank_data_bic\": \"XXXXXX\",\n                                \"bank_data_fax\": \"\",\n                                \"sepa_data_b2b\": \"YES\",\n                                \"bank_data_www\": \"\",\n                                \"sepa_data_scc\": \"YES\",\n                                \"sepa_data_sdd\": \"YES\",\n                                \"date_verification\": \"25/04/2017\",\n                                \"bank_data_email\": \"\"\n                            }\n                        }\n                    ]\n                }\n            ],\n         \"statusCode\": \"VALID\"\n        }\n    ]\n}\n        "}],"_postman_id":"80e8a93c-92dc-4d56-b5f7-3d49d7117e3e"},{"name":"Dossiers","event":[{"listen":"test","script":{"id":"83ecb2cd-0909-41e2-bda9-1aed8830fddf","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"dossierId\", jsonData.content[0].dossierId);","/*","pm.environment.set(\"dossierReference\", jsonData.content[0].dossierReference);","pm.environment.set(\"companyIdType\", jsonData.content[0].companyIdType);","pm.environment.set(\"companyIdValue\", jsonData.content[0].companyIdValue);","*/","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"a2362ae3-e31a-4933-b84c-4a5f023c6c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers?page=0&pageSize=5","description":"<p>Get the list of your dossiers.\nThe result is paginated with 10 entries per page by default.</p>\n<p>You can specify the page size et page number with the following parameters.</p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>pageSize</td>\n<td>integer</td>\n<td>the number of results returned by the request (default is 10)</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>parameter to specify the number of the page you want to access (default is 0)</td>\n</tr>\n</table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"}],"variable":[]}},"response":[{"id":"46abc0f5-093d-41c5-8748-6a6e7b9ce591","name":"Account dossiers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers?page=2&pageSize=5","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","dossiers"],"query":[{"key":"page","value":"2"},{"key":"pageSize","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"dossierId\": 1433524,\n            \"accountId\": 119631,\n            \"siren\": \"542107800\",\n            \"siret\": \"54210780003943\",\n            \"tva\": \"FR72542107800\",\n            \"thirdpartyId\": 320479,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"54210780003943\",\n            \"thirdpartyCode\": \"9833\",\n            \"thirdpartyState\": true,\n            \"thirdpartyName\": \"COMPANY NAME\",\n            \"thirdpartyActivityCode\": \"5829C\",\n            \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"companyCountryCode\": \"FR\",\n            \"monitored\": false,\n            \"isMonitored\": \"false\",\n            \"dossierReference\": \"TEST\",\n            \"description\": \"description_1433524\",\n            \"purchasingCategory\": \"ttttt\",\n            \"creationDate\": \"2018-07-16T11:04:59.756\",\n            \"startingDate\": null,\n            \"expirationDate\": null,\n            \"stoppingDate\": \"2020-03-17T10:55:42.411\",\n            \"stoppingReason\": \"ACTION_VOLONTAIRE\",\n            \"state\": null,\n            \"isComplete\": \"true\",\n            \"stateLastChangeDate\": null,\n            \"notes\": [],\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2020-03-17T10:47:37.585\"\n                }\n            ],\n            \"documents\": [],\n            \"statusCode\": \"VALID\"\n        },\n        {\n            \"dossierId\": 1504311,\n            \"accountId\": 119631,\n            \"siren\": \"480470152\",\n            \"siret\": \"48047015200012\",\n            \"tva\": \"FR71480470152\",\n            \"thirdpartyId\": 86049,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"48047015200012\",\n            \"thirdpartyCode\": null,\n            \"companyCountryCode\": \"FR\",\n            \"monitored\": true,\n            \"isMonitored\": \"true\",\n            \"dossierReference\": \"-\",\n            \"description\": \"\",\n            \"purchasingCategory\": \"\",\n            \"startingDate\": null,\n            \"expirationDate\": null,\n            \"stoppingDate\": null,\n            \"stoppingReason\": \"NA\",\n            \"state\": true,\n            \"isComplete\": \"true\",\n            \"stateLastChangeDate\": \"2021-05-26T13:58:04.688\",\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2021-05-26T13:58:04.688\"\n                }\n            ],\n            \"documents\": [\n                {\n                    \"documentId\": 11675833,\n                    \"dossierId\": 1504311,\n                    \"documentCode\": \"RIB_IBAN\",\n                    \"documentName\": \"Coordonnées bancaires - RIB\",\n                    \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n                    \"requestDate\": \"2021-05-26T13:58:05.312\",\n                    \"present\": true,\n                    \"isPresent\": \"true\",\n                    \"evidences\": [\n                        {\n                            \"id\": 2704163,\n                            \"responseId\": 2238768,\n                            \"uploadDate\": \"2017-04-25T10:45:16.537\",\n                            \"fileUUID\": \"a3218884b699c5074ce07e111c6eb43ddb3ddcf2\",\n                            \"fileName\": \"file:/data/CCDocs/50382936800045/20190306-110611_50382936800045_NDA_e-attestations.com.pdf\",\n                            \"fileCreation\": \"2017-04-25T10:45:16.520\",\n                            \"fileSize\": 25999,\n                            \"expirationDate\": \"2022-04-25T23:59:59.999\",\n                            \"formdata\": [\n                                {\n                                    \"type\": \"iban\",\n                                    \"key\": \"f_49_bn_0\",\n                                    \"title\": \"IBAN\",\n                                    \"order\": 0,\n                                    \"value\": \"FR76 XXXX XXXX XXXX XXXX XXXX XXX\"\n                                }\n                            ],\n                            \"format\": \"ORIGINALNUMERIQUE\",\n                            \"issuer\": \"DO\",\n                            \"transmitter\": \"FOURNISSEUR\",\n                            \"metadata\": {\n                                \"bank_data_country_iso\": \"FR\",\n                                \"bank_data_bank\": \"STE GENERALE\",\n                                \"sepa_data_cor1\": \"NO\",\n                                \"verified\": \"true\",\n                                \"sepa_data_sct\": \"YES\",\n                                \"bank_data_country\": \"\",\n                                \"bank_data_address\": \"28 R DES ARTS\",\n                                \"bank_data_account\": \"XXXXXXXXX\",\n                                \"bank_data_phone\": \"\",\n                                \"bank_data_zip\": \"XXXXX\",\n                                \"bank_data_city\": \"LILLE\",\n                                \"bank_data_bic\": \"XXXXXX\",\n                                \"bank_data_fax\": \"\",\n                                \"sepa_data_b2b\": \"YES\",\n                                \"bank_data_www\": \"\",\n                                \"sepa_data_scc\": \"YES\",\n                                \"sepa_data_sdd\": \"YES\",\n                                \"date_verification\": \"25/04/2017\",\n                                \"bank_data_email\": \"\"\n                            }\n                        }\n                    ]\n                }\n            ],\n        \"statusCode\": \"VALID\"\n        }\n    ]\n}\n        "}],"_postman_id":"a2362ae3-e31a-4933-b84c-4a5f023c6c3d"},{"name":"Dossiers by criterias","event":[{"listen":"test","script":{"id":"91ecde2e-3e55-4680-a504-c97b06112ef2","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"66fd7060-b3e2-407a-9739-727f0532d1db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers?monitored=false","description":"<p>Requests dossiers by search criterias.</p>\n<p>The list of search criterias :</p>\n<table><tbody><tr><th>Parameter</th><th>Type</th><th>Description</th></tr><tr><td><div>siren</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>third party company siren (french company id)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siret</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>third party siret (third party SIRET number)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>tva</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>third party intra-Community VAT number</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>duns</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Dun &amp; Bradstreet DUNS number</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>stateLastChangeDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String (format : YYYY-MM-DD)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>enable to search for dossiers which <b>state</b> has changed since the specified date (the date must be formatted like this : '2021-06-02'). ( state incomplete to complete for example)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>state</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>true : search for <b>active</b> and <b>complete</b> dossiers., or false for <b>incomplete</b> or inative <b>dossier</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>monitored</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>get all <b>active</b> dossiers (complete or incomplete)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>thirdpartyId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>technical third party ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>thirdpartyCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>third party code : defined during dossier creation or update</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>documentCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Find all dossiers including a document (search by document <b>code</b> (to find it, use this endpoint <code>Requirements Requirements for the account</code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>dossierTypeCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If you have enable dossier types on your account, you can search by the code of the dossier type</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>fromUploadedDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String (format : YYYY-MM-DD)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>find all dossiers which a document has been uploaded greater than or equal to this date. Example : find all dossiers including an IBAN document (documentCode=RIB_IBAN) , uploaded today (fromUploadedDate=2021-01-01)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>dossierReference</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>dossier reference : defined during dossier creation or update</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>op</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Possible values : 'like', 'ends' or 'starts'.<br />This parameter works with these parameters : thirdpartyCode and/or dossierReference.<br />For example : ?thirdpartyCode=\"OOG\"&amp;op=like returns all dossiers with thirdpartyCode = \"GOOGLE\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pageSize</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>the number of results returned by the request (default is 10)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>parameter to specify the number of the page you want to access (default is 0)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>eventNames</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of strings</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Filter dossiers that have specific events in their history. You can specify one or more event types separated by commas. See available event types here : <a href=\"https://developers.aprovall.com/guides/dictionary/events\">https://developers.aprovall.com/guides/dictionary/events</a></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>eventOccurrenceStartDate</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of strings</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Start date for filtering events. Format: yyyy-MM-dd'T'HH:mm:ss.SSS (e.g., \"2024-01-01T00:00:00.000\")</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>eventOccurrenceEndDate</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of strings</div><div><div><div><div></div></div></div><div></div></div></td><td><div>End date for filtering events. Format: yyyy-MM-dd'T'HH:mm:ss.SSS (e.g., \"2024-12-31T23:59:59.000\")</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>withEvidenceFileUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When true, the API generates and attaches a downloadable file URL for each evidence (the actual uploaded document file) in the response.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>withHistoric</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When true, the response includes the historical (past) versions of each document's evidences (historicEvidences) — i.e. evidences from previous/closed requests, not only the current ongoing one. Default false returns only the active evidences.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p>Example :</p>\n<p><code>``/dossiers?</code><strong><code>stateLastChangeDate=</code></strong><code>2021-05-01&amp;</code><strong><code>monitored=</code></strong><code>true&amp;</code><strong><code>siren=</code></strong><code>493841803&amp;</code><strong><code>thirdpartyCode=</code></strong><code>2019&amp;</code><strong><code>op=</code></strong><code>starts``</code></p>\n<p>This request returns :</p>\n<ul><li><div>all active dossiers of the third party with SIREN = 493841803</div></li><li><div>with a change since May 1, 2021</div></li><li><div>with a third party code that starts with \"2019\"</div></li></ul>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers"],"host":["{{ea_api_serv}}"],"query":[{"key":"monitored","value":"false"}],"variable":[]}},"response":[{"id":"c4657b59-4998-4b84-9054-d68d7f15b7d9","name":"Account dossiers by criterias : dossierReference","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers?dossierReference=TESTAPI&op=like","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","dossiers"],"query":[{"key":"dossierReference","value":"TESTAPI"},{"key":"op","value":"like"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"dossierId\": 1331486,\n            \"accountId\": 119631,\n            \"siren\": \"753368935\",\n            \"siret\": \"75336893500015\",\n            \"tva\": \"FR27753368935\",\n            \"thirdpartyId\": 177931,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"75336893500015\",\n            \"thirdpartyCode\": \"FO1001\",\n            \"thirdpartyState\": true,\n            \"thirdpartyName\": \"TAXY COMPANY NAME\",\n            \"thirdpartyActivityCode\": \"5829C\",\n            \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"companyCountryCode\": \"FR\",\n            \"monitored\": false,\n            \"isMonitored\": \"false\",\n            \"dossierReference\": \"TESTAPI1.1\",\n            \"description\": \"description_1331486\",\n            \"purchasingCategory\": \"Taxi\",\n            \"creationDate\": \"2018-07-16T11:04:59.756\",\n            \"startingDate\": null,\n            \"expirationDate\": \"2021-12-31T00:00:00.000\",\n            \"stoppingDate\": \"2019-11-28T09:24:24.914\",\n            \"stoppingReason\": \"ACTION_VOLONTAIRE\",\n            \"state\": null,\n            \"isComplete\": \"false\",\n            \"stateLastChangeDate\": null,\n            \"notes\": [],\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2019-11-26T15:43:40.118\"\n                }\n            ],\n            \"documents\": [],\n            \"statusCode\": \"VALID\"\n        },\n        {\n            \"dossierId\": 1331488,\n            \"accountId\": 119631,\n            \"siren\": \"753368935\",\n            \"siret\": \"75336893500015\",\n            \"tva\": \"FR27753368935\",\n            \"thirdpartyId\": 177931,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"75336893500015\",\n            \"thirdpartyCode\": \"FO1001\",\n            \"thirdpartyState\": true,\n            \"thirdpartyName\": \"TAXY COMPANY NAME\",\n            \"thirdpartyActivityCode\": \"5829C\",\n            \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"companyCountryCode\": \"FR\",\n            \"monitored\": false,\n            \"isMonitored\": \"false\",\n            \"dossierReference\": \"TESTAPI1.1002\",\n            \"description\": \"description_1331488\",\n            \"purchasingCategory\": \"Ambulance\",\n            \"creationDate\": \"2018-07-16T11:04:59.756\",\n            \"startingDate\": null,\n            \"expirationDate\": \"2021-12-31T00:00:00.000\",\n            \"stoppingDate\": \"2019-11-28T09:24:34.377\",\n            \"stoppingReason\": \"ACTION_VOLONTAIRE\",\n            \"state\": null,\n            \"isComplete\": \"false\",\n            \"stateLastChangeDate\": null,\n            \"notes\": [],\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2019-11-26T15:45:34.130\"\n                }\n            ],\n            \"documents\": [],\n            \"statusCode\": \"VALID\"\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 1\n}"},{"id":"4c8106d8-51d8-4aa2-815f-b2a5028075a3","name":"Account dossiers by criterias : multi criterias","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers?stateLastChangeDate=2021-05-01&monitored=true&siren=493841803&thirdpartyCode=2019&op=starts","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","dossiers"],"query":[{"key":"stateLastChangeDate","value":"2021-05-01"},{"key":"monitored","value":"true"},{"key":"siren","value":"493841803"},{"key":"thirdpartyCode","value":"2019"},{"key":"op","value":"starts"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"dossierId\": 782514,\n            \"accountId\": 119631,\n            \"siren\": \"493841803\",\n            \"siret\": \"49384180300056\",\n            \"tva\": \"FR92493841803\",\n            \"thirdpartyId\": 1185,\n            \"companyIdType\": \"CIT001\",\n            \"companyIdValue\": \"49384180300056\",\n            \"thirdpartyCode\": \"20192511\",\n            \"thirdpartyState\": true,\n            \"thirdpartyName\": \"TAXY COMPANY NAME\",\n            \"thirdpartyActivityCode\": \"5829C\",\n            \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"companyCountryCode\": \"FR\",\n            \"monitored\": true,\n            \"isMonitored\": \"true\",\n            \"dossierReference\": \"CCIRB\",\n            \"description\": \"description_782514\",\n            \"purchasingCategory\": \"\",\n            \"creationDate\": \"2018-07-16T11:04:59.756\",\n            \"startingDate\": null,\n            \"expirationDate\": null,\n            \"stoppingDate\": null,\n            \"stoppingReason\": \"NA\",\n            \"state\": false,\n            \"isComplete\": \"false\",\n            \"stateLastChangeDate\": \"2021-05-28T00:06:52.635\",\n            \"notes\": [],\n            \"indicators\": [\n                {\n                    \"indicatorCode\": \"I001\",\n                    \"state\": true,\n                    \"isComplete\": \"true\",\n                    \"lastChangeDate\": \"2020-04-09T14:09:13.947\"\n                }\n            ],\n            \"documents\": [\n                {\n                    \"documentId\": 11207811,\n                    \"dossierId\": 782514,\n                    \"documentCode\": \"JUSTIF_IMM\",\n                    \"documentName\": \"Justificatif d’immatriculation\",\n                    \"documentNameEn\": \"Justificatif d’immatriculation\",\n                    \"requestDate\": \"2020-03-05T11:06:02.422\",\n                    \"present\": true,\n                    \"isPresent\": \"true\",\n                    \"evidences\": [\n                        {\n                            \"id\": 6876637,\n                            \"uploadDate\": \"2020-12-08T16:15:13.571\",\n                            \"fileUUID\": \"80e19221-beb6-4092-9604-347329367a06\",\n                            \"fileName\": \"file:/data/CCDocs/50382936800045/20190306-110611_50382936800045_NDA_e-attestations.com.pdf\",\n                            \"fileCreation\": \"2020-12-08T16:15:13.551\",\n                            \"fileSize\": 72446,\n                            \"expirationDate\": \"2021-06-08T23:59:59.999\",\n                            \"formdata\": [],\n                            \"format\": \"ORIGINALNUMERIQUE\",\n                            \"issuer\": \"DO\",\n                            \"transmitter\": \"FOURNISSEUR\",\n                            \"metadata\": {\n                                \"siren\": \"493841803\",\n                                \"date_certification\": \"08/12/2020\"\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"documentId\": 11304620,\n                    \"dossierId\": 782514,\n                    \"documentCode\": \"FDRPLGA\",\n                    \"documentName\": \"Fiche de référencement pour le GROUPE ARCADE - VYV\",\n                    \"documentNameEn\": \"Fiche de référencement pour le GROUPE ARCADE - VYV\",\n                    \"requestDate\": \"2020-03-23T13:40:33.000\",\n                    \"present\": false,\n                    \"isPresent\": \"false\",\n                    \"evidences\": []\n                }\n            ],\n            \"statusCode\": \"VALID\"\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 1\n}"}],"_postman_id":"66fd7060-b3e2-407a-9739-727f0532d1db"},{"name":"Dossier details","event":[{"listen":"test","script":{"id":"c835e414-4786-4319-91a5-c60986529fda","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bbdc9243-8bac-479a-bf63-4c8dc5257661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}","description":"<p>Requests one dossier details by its id</p>\n<table><tbody><tr><th>Parameter</th><th>Type</th><th>Description</th></tr><tr><td><div>withEvidenceFileUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When true, the API generates and attaches a downloadable file URL for each evidence (the actual uploaded document file) in the response.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>withHistoric</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When true, the response includes the historical (past) versions of each document's evidences (historicEvidences) — i.e. evidences from previous/closed requests, not only the current ongoing one. Default false returns only the active evidences.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"6c659eed-87f5-4995-946b-51ba3a7a9834","name":"Account dossiers details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"dossierId\": 1433524,\n        \"accountId\": 119631,\n        \"siren\": \"542107800\",\n        \"siret\": \"54210780003943\",\n        \"tva\": \"FR72542107800\",\n        \"thirdpartyId\": 320479,\n        \"companyIdType\": \"CIT001\",\n        \"companyIdValue\": \"54210780003943\",\n        \"thirdpartyCode\": \"9833\",\n        \"thirdpartyState\": true,\n        \"thirdpartyName\": \"TAXY COMPANY NAME\",\n        \"thirdpartyActivityCode\": \"5829C\",\n        \"thirdpartyActivityLabel\": \"Edition de logiciels applicatifs\",\n        \"thirdpartyAlerts\": \"NEANT\",\n        \"companyCountryCode\": \"FR\",\n        \"monitored\": false,\n        \"isMonitored\": \"false\",\n        \"dossierReference\": \"TEST\",\n        \"description\": \"description_1433524\",\n        \"purchasingCategory\": \"ttttt\",\n        \"creationDate\": \"2018-07-16T11:04:59.756\",\n        \"startingDate\": null,\n        \"expirationDate\": null,\n        \"stoppingDate\": \"2020-03-17T10:55:42.411\",\n        \"stoppingReason\": \"ACTION_VOLONTAIRE\",\n        \"state\": null,\n        \"isComplete\": \"true\",\n        \"stateLastChangeDate\": null,\n        \"notes\": [],\n        \"indicators\": [\n            {\n                \"indicatorCode\": \"I001\",\n                \"state\": true,\n                \"isComplete\": \"true\",\n                \"lastChangeDate\": \"2020-03-17T10:47:37.585\"\n            }\n        ],\n        \"documents\": [],\n        \"statusCode\": \"VALID\"\n    }\n}"}],"_postman_id":"bbdc9243-8bac-479a-bf63-4c8dc5257661"},{"name":"Dossier attributes","event":[{"listen":"test","script":{"id":"c835e414-4786-4319-91a5-c60986529fda","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"4e89c4cd-9a6a-4da8-ab3a-09f0e721e539","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/attributes","description":"<p>Get all dossiers attributes</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","attributes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"9fb2ad3d-4be6-4d2b-b073-8f9ea341cd80","name":"Dossier attributes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 6900,\n            \"attributeId\": 157,\n            \"label\": \"multiple liste label\",\n            \"type\": \"list_multiple\",\n            \"bondType\": \"dossier\",\n            \"creationDate\": \"2024-10-10T09:17:05.467+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"aaa\"\n            ]\n        },\n        {\n            \"id\": 6901,\n            \"attributeId\": 903,\n            \"label\": \"Test FLO\",\n            \"type\": \"integer\",\n            \"bondType\": \"dossier\",\n            \"creationDate\": \"2024-10-10T09:17:20.713+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"10\"\n            ]\n        },\n        {\n            \"id\": 6902,\n            \"attributeId\": 96,\n            \"label\": \"Region\",\n            \"type\": \"list_multiple\",\n            \"bondType\": \"dossier\",\n            \"creationDate\": \"2024-10-10T09:18:22.678+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"Ain\"\n            ]\n        },\n        {\n            \"id\": 6903,\n            \"attributeId\": 915,\n            \"label\": \"Responsable de dossier\",\n            \"type\": \"string\",\n            \"bondType\": \"dossier\",\n            \"creationDate\": \"2024-10-10T09:18:35.387+00:00\",\n            \"updateDate\": null,\n            \"values\": [\n                \"text attribute\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"4e89c4cd-9a6a-4da8-ab3a-09f0e721e539"}],"id":"2dd531b1-a0f0-4538-b321-b6873415d20f","description":"<p>All account's dossiers.</p>\n<p>The 'dossier' resource is the materialization of the client / third party relationship.</p>\n<p>In the response :</p>\n<ul>\n<li><code>monitored</code> : active / inactive dossier</li>\n<li><code>state</code> : true for an active and complete dossier</li>\n<li><code>thirdpartyState</code> : true for a registered user</li>\n<li><code>stateLastChangeDate</code> : complete / incomplete date for an active dossier (null for an inative dossier) </li>\n</ul>","_postman_id":"2dd531b1-a0f0-4538-b321-b6873415d20f","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Dossiers creation & Processes","item":[{"name":"Create new dossier (sync)","event":[{"listen":"test","script":{"id":"b002867a-4b94-4a9e-a155-3a4e1da863b4","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"processId\", jsonData.content.processId);","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4bea3b1c-7716-4083-92b9-af4e57e2bf2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"thirdpartyCode\": \"TEST4\",\n  \"dossierReference\": \"TEST#4\",\n  \"description\": \"Optional description\",\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"dossierTypeCode\" : \"TRAVDISS\"\n}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/dossiers","description":"<p>Creates a new dossier with details for an existing third party</p>\n<p>This is an <strong>synchronous</strong> process</p>\n<p>You can use some or all of the attributes depending of your needs and your use cases.</p>\n<p>We have a new attribute <code>dossierTypeCode</code>: you can specify dossier types by contacting your key account manager. This new feature allows to preconfigure a defined set of requirement, to simplify the dossier configuration.</p>\n<p>The body contains several attributes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>thirdpartyCode*</td>\n<td>String</td>\n<td>A reference code from an external system or database. If a third party code already exists (set in another dossier), let this field empty</td>\n</tr>\n<tr>\n<td>dossierReference*</td>\n<td>String</td>\n<td>A dossier that identifies this dossier and that could come from an external system or database for instance</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A free text field for description, or any other use</td>\n</tr>\n<tr>\n<td>purchasingCategory</td>\n<td>String</td>\n<td>Another free text field for dossiers category, or any other use</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>YYYY-MM-DD</td>\n<td>If given this date will be the end of this dossier. The third party won't be monitored with this dossier after this date</td>\n</tr>\n<tr>\n<td>requiredDocuments</td>\n<td>String[]</td>\n<td>This array sets the required documents for this third party managed with this dossier.  <br />Each item in the list is a document <strong>code</strong> (to find it, use this endpoint <code>Requirements Requirements for the account</code></td>\n</tr>\n<tr>\n<td>dossierTypeCode</td>\n<td>String</td>\n<td>If you have enable dossier types on your account, you can specify a dossier type when you create your dossier. List of all dossier types list available by calling this endpoint  <br /><code>Account dossier types list</code></td>\n</tr>\n<tr>\n<td>thirdpartyEmail</td>\n<td>String[]</td>\n<td>third party email addresses. Persons will receive an email.</td>\n</tr>\n<tr>\n<td>usersInCharge</td>\n<td>String[]</td>\n<td>A list of emails of users from your organisation that will receive ownership for this dossier management. Will invite them or send an email.</td>\n</tr>\n</tbody>\n</table>\n</div><p>List of possible errors :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error code</strong></th>\n<th><strong>Error description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E002</td>\n<td>Unknown parameter</td>\n</tr>\n<tr>\n<td>E003</td>\n<td>Empty parameter</td>\n</tr>\n<tr>\n<td>E010</td>\n<td>Wrong format</td>\n</tr>\n<tr>\n<td>E021</td>\n<td>Expiration date is in the past</td>\n</tr>\n<tr>\n<td>E022</td>\n<td>Date in future</td>\n</tr>\n<tr>\n<td>E030</td>\n<td>Invalid E-mail domain</td>\n</tr>\n<tr>\n<td>E101</td>\n<td>Error qualifying the company</td>\n</tr>\n<tr>\n<td>E102</td>\n<td>Company does not exist</td>\n</tr>\n<tr>\n<td>E103</td>\n<td>Company is closed</td>\n</tr>\n<tr>\n<td>E105</td>\n<td>Company ID has change to</td>\n</tr>\n<tr>\n<td>E111</td>\n<td>Thirdparty code (supplierCode) is different regarding the existing one</td>\n</tr>\n<tr>\n<td>E112</td>\n<td>Thirdparty code (supplierCode) is already used for another thirdparty</td>\n</tr>\n<tr>\n<td>E113</td>\n<td>Thirdparty account disabled</td>\n</tr>\n<tr>\n<td>E122</td>\n<td>Impossible to import an international company. 'The international' option is not activated.</td>\n</tr>\n<tr>\n<td>E201</td>\n<td>Dossier disabled</td>\n</tr>\n<tr>\n<td>E202</td>\n<td>Reference exists for third party</td>\n</tr>\n<tr>\n<td>E204</td>\n<td>Dossier already enabled</td>\n</tr>\n<tr>\n<td>E206</td>\n<td>Dossier type not found</td>\n</tr>\n<tr>\n<td>E207</td>\n<td>Updating documents is forbidden on a typed dossier</td>\n</tr>\n<tr>\n<td>E301</td>\n<td>Requirement disabled</td>\n</tr>\n<tr>\n<td>E302</td>\n<td>Requirement not allowed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","{{thirdparty_id}}","dossiers"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"48ca1bb1-f9fb-4c5a-a034-23701759098a","name":"Create new dossier with more details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"thirdpartyCode\": \"TEST3\",\n  \"dossierReference\": \"TEST#3\",\n  \"description\": \"Dossier\",\n  \"purchasingCategory\": \"Dog\",\n  \"expirationDate\": \"2020-05-31\",\n  \"requiredDocuments\": [\"JUSTIF_IMM\"],\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"userInCharge\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"8af2b3c479d77a840179e5a7468401da\"\n    }\n}"},{"id":"77ec1a59-7710-42a0-82df-e73c1ad1fe52","name":"Create new dossier with a dossier type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"thirdpartyCode\": \"TEST3\",\n  \"dossierReference\": \"TEST#3\",\n  \"dossierTypeCode\": \"SECU\",\n  \"description\": \"Dossier\",\n  \"purchasingCategory\": \"Dog\",\n  \"expirationDate\": \"2020-05-31\",\n  \"requiredDocuments\": [\"JUSTIF_IMM\"],\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"userInCharge\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"8af2b3c479d77a840179e5a7468401da\"\n    }\n}"},{"id":"29d3e410-545b-4a31-b798-baa137950d0e","name":"Create dossier (minimal)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"dossierReference\": \"TEST#7\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/{{thirdparty_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"8af2b3c479d77a840179e5a7468401da\"\n    }\n}"}],"_postman_id":"4bea3b1c-7716-4083-92b9-af4e57e2bf2c"},{"name":"Deprecated - Create new dossier with third party identifier (async)","event":[{"listen":"test","script":{"id":"b002867a-4b94-4a9e-a155-3a4e1da863b4","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"processId\", jsonData.content.processId);","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"80371772-42db-40e3-a5db-b1a44a10f3bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"companyIdType\": \"CIT001\",\n  \"companyIdValue\": \"43258335900109\",\n  \"thirdpartyCode\": \"TEST3\",\n  \"dossierReference\": \"TEST#3\",\n  \"description\": \"Dossier\",\n  \"purchasingCategory\": \"Dog\",\n  \"expirationDate\": \"2020-05-31\",\n  \"requiredDocuments\": [\"JUSTIF_IMM\"],\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"userInCharge\": [\"nobody@e-attestations.com\"]\n}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers","description":"<p>Creates a new dossier with a lot of requirement and details.</p>\n<p>This is an <strong>asynchronous</strong> process, so this request return a <strong>processId</strong>. With this ID, you can check the state of the dossier creation with another endpoint ( see \"Dossier creation : state\" )</p>\n<p>With this Postman collection, <strong>we automatically</strong> set the processId variable, so that you can directly call \"Dossier creation : get process by id\" endpoint (you do not have to copy/paste the processId )</p>\n<p>You can use some or all of the attributes depending of your needs and your use cases.</p>\n<p>We have a new attribute <code>dossierTypeCode</code>: you can specify dossier types by contacting your key account manager. This new feature allows to preconfigure a defined set of requirement, to simplify the dossier configuration.</p>\n<p>The body contains several attributes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyIdType*</td>\n<td>String</td>\n<td>Three possible values :  <br />  <br />- CIT001  <br /><em>for a SIRET number (french companies), composed of 14 numbers. Ex : 50382936800045</em>  <br />  <br />- CIT002  <br /><em>for an intra-community VAT number, composed of two letters (country code), followed by numbers. Ex : FR69503829368</em>  <br />  <br />- CIT003  <br /><em>for a DUNS number, composed of 9 numbers. Ex : 260004250. Or you can use an encrypted DUNS, found by using the</em> <code>_Thirdparties Search for new thirdparty_</code> <em>endpoint</em></td>\n</tr>\n<tr>\n<td>companyIdValue*</td>\n<td>String</td>\n<td>SIRET, TVA or DUNS value</td>\n</tr>\n<tr>\n<td>companyIdEncrypted*</td>\n<td>Boolean</td>\n<td><code>true</code> for encrypted DUNS, fetched with <code>Thirdparties Search for new thirdparty</code> endpoint. This parameter is optional and is <code>false</code> by default. If you know the DUNS number, skip this parameter. <code>companyIdType</code> must be <code>CIT003</code></td>\n</tr>\n<tr>\n<td>thirdpartyCode*</td>\n<td>String</td>\n<td>A reference code from an external system or database. If a third party code already exists (set in another dossier), let this field empty</td>\n</tr>\n<tr>\n<td>dossierReference*</td>\n<td>String</td>\n<td>A dossier that identifies this dossier and that could come from an external system or database for instance</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A free text field for description, or any other use</td>\n</tr>\n<tr>\n<td>purchasingCategory</td>\n<td>String</td>\n<td>Another free text field for dossiers category, or any other use</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>YYYY-MM-DD</td>\n<td>If given this date will be the end of this dossier. The third party won't be monitored with this dossier after this date</td>\n</tr>\n<tr>\n<td>requiredDocuments</td>\n<td>String[]</td>\n<td>This array sets the required documents for this third party managed with this dossier.  <br />Each item in the list is a document <strong>code</strong> (to find it, use this endpoint <code>Requirements Requirements for the account</code></td>\n</tr>\n<tr>\n<td>dossierTypeCode</td>\n<td>String</td>\n<td>If you have enable dossier types on your account, you can specify a dossier type when you create your dossier</td>\n</tr>\n<tr>\n<td>thirdpartyEmail</td>\n<td>String[]</td>\n<td>third party email addresses. Persons will receive an email.</td>\n</tr>\n<tr>\n<td>usersInCharge</td>\n<td>String[]</td>\n<td>A list of emails of users from your organisation that will receive ownership for this dossier management. Will invite them or send an email.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"8dea095f-7139-494e-ab7d-9262a419a650","name":"Create new dossier with more details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"companyIdType\": \"CIT001\",\n  \"companyIdValue\": \"43258335900109\",\n  \"thirdpartyCode\": \"TEST3\",\n  \"dossierReference\": \"TEST#3\",\n  \"description\": \"Dossier\",\n  \"purchasingCategory\": \"Dog\",\n  \"expirationDate\": \"2020-05-31\",\n  \"requiredDocuments\": [\"JUSTIF_IMM\"],\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"userInCharge\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"8af2b3c479d77a840179e5a7468401da\"\n    }\n}"},{"id":"2d9c1d61-76b0-4f59-ade9-aad7744b8d5e","name":"Create new dossier with a dossier type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"companyIdType\": \"CIT001\",\n  \"companyIdValue\": \"43258335900109\",\n  \"thirdpartyCode\": \"TEST3\",\n  \"dossierReference\": \"TEST#3\",\n  \"dossierTypeCode\": \"SECU\",\n  \"description\": \"Dossier\",\n  \"purchasingCategory\": \"Dog\",\n  \"expirationDate\": \"2020-05-31\",\n  \"requiredDocuments\": [\"JUSTIF_IMM\"],\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"userInCharge\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"8af2b3c479d77a840179e5a7468401da\"\n    }\n}"},{"id":"2f0c622a-a3b7-46e1-bc89-dddbfba9be02","name":"Create dossier (minimal)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"companyIdType\": \"CIT001\",\n  \"companyIdValue\": \"49384180300056\",\n  \"dossierReference\": \"TEST#7\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"8af2b3c479d77a840179e5a7468401da\"\n    }\n}"},{"id":"5c95d2d1-0755-4c19-9d67-f5d107c036be","name":"Create dossier : non french third party","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"companyIdType\": \"CIT002\",\n  \"companyIdValue\": \"FR69503829368\",\n  \"thirdpartyCode\": \"\",\n  \"dossierReference\": \"DOSSIER_REST_TVA#1\",\n  \"description\": \"Dossier avec TVA\",\n  \"purchasingCategory\": \"\",\n  \"expirationDate\": \"2020-05-31\",\n  \"requiredDocuments\": [ \"JUSTIF_IMM\" ],\n  \"thirdpartyEmail\": [\"nobody@e-attestations.com\"],\n  \"userInCharge\": [\n    \"nobody@e-attestations.com\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"80371772-42db-40e3-a5db-b1a44a10f3bf"},{"name":"Dossier creation : get process by id","event":[{"listen":"test","script":{"id":"ab11ac64-1030-4e3e-8ba2-310201f10231","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"a985fd92-33ce-4fc5-bc32-f124c1f67bcf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"51bf797c-b7dd-42e5-9b57-c67f977ffdcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/process/8af2b4a592fc4d0701930b248bc20000","description":"<p>Get dossier creation result for a given id.</p>\n<p>When the dossier creation is completed (complete=true in the response) :</p>\n<ul><li><div>dossier successfully created (sucess=true in the response). You can find the dossier ID in the response : <code>\"dossierId\": 123456789</code></div></li><li><div>dossier not created : at least one error has occured during the creation (errors in the response). You can find the list in the <b>Error codes</b> section</div></li><li><div>complete : true if the dossier is created</div></li><li><div>success : true if the dossier is created without errors</div></li></ul>\n\n<p>List of possible errors :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error code</strong></th>\n<th><strong>Error description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E002</td>\n<td>Unknown parameter</td>\n</tr>\n<tr>\n<td>E003</td>\n<td>Empty parameter</td>\n</tr>\n<tr>\n<td>E010</td>\n<td>Wrong format</td>\n</tr>\n<tr>\n<td>E021</td>\n<td>Expiration date is in the past</td>\n</tr>\n<tr>\n<td>E022</td>\n<td>Date in future</td>\n</tr>\n<tr>\n<td>E030</td>\n<td>Invalid E-mail domain</td>\n</tr>\n<tr>\n<td>E101</td>\n<td>Error qualifying the company</td>\n</tr>\n<tr>\n<td>E102</td>\n<td>Company does not exist</td>\n</tr>\n<tr>\n<td>E103</td>\n<td>Company is closed</td>\n</tr>\n<tr>\n<td>E105</td>\n<td>Company ID has change to</td>\n</tr>\n<tr>\n<td>E111</td>\n<td>Thirdparty code (supplierCode) is different regarding the existing one</td>\n</tr>\n<tr>\n<td>E112</td>\n<td>Thirdparty code (supplierCode) is already used for another thirdparty</td>\n</tr>\n<tr>\n<td>E113</td>\n<td>Thirdparty account disabled</td>\n</tr>\n<tr>\n<td>E122</td>\n<td>Impossible to import an international company. 'The international' option is not activated.</td>\n</tr>\n<tr>\n<td>E201</td>\n<td>Dossier disabled</td>\n</tr>\n<tr>\n<td>E202</td>\n<td>Reference exists for third party</td>\n</tr>\n<tr>\n<td>E204</td>\n<td>Dossier already enabled</td>\n</tr>\n<tr>\n<td>E206</td>\n<td>Dossier type not found</td>\n</tr>\n<tr>\n<td>E207</td>\n<td>Updating documents is forbidden on a typed dossier</td>\n</tr>\n<tr>\n<td>E301</td>\n<td>Requirement disabled</td>\n</tr>\n<tr>\n<td>E302</td>\n<td>Requirement not allowed</td>\n</tr>\n<tr>\n<td>E1002</td>\n<td>SIREN or SIRET type must be used with FR countryCode</td>\n</tr>\n<tr>\n<td>E1003</td>\n<td>Impossible to import a french third party with a VAT number. Use SIRET or SIREN instead</td>\n</tr>\n<tr>\n<td>E1004</td>\n<td>Impossible to import a french third party with local ID. Use SIRET or SIREN instead</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","process","8af2b4a592fc4d0701930b248bc20000"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"2dde8f52-c860-4c26-a8ac-8d3e8a8e1f6d","name":"Dossier creation succeed","originalRequest":{"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/process/{{processId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"4028818379e5c78b0179e606c12b0001\",\n        \"creation\": \"2021-06-07T10:31:12.895+00:00\",\n        \"complete\": true,\n        \"success\": true,\n        \"isComplete\": \"true\",\n        \"isSuccessful\": \"true\",\n        \"dossierId\": 123456789,\n        \"errors\": [],\n        \"params\": {\n            \"requiredDocuments\": null,\n            \"companyIDValue\": \"ESA79973681\",\n            \"companyIDType\": \"CIT002\",\n            \"purchasingCategory\": null,\n            \"userInCharge\": null,\n            \"supplierCode\": null,\n            \"supplierEmail\": null,\n            \"expirationDate\": null,\n            \"description\": null,\n            \"dossierReference\": \"az2\"\n        }\n    }\n}"},{"id":"21bd7975-156f-4330-b85b-7cbcf1a9d1ed","name":"Dossier creation failed","originalRequest":{"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/process/{{processId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"processId\": \"402881837983edd8017983f01a5e0001\",\n        \"creation\": \"2021-05-19T09:23:41.254+00:00\",\n        \"complete\": true,\n        \"success\": false,\n        \"isComplete\": \"true\",\n        \"isSuccessful\": \"false\",\n        \"errors\": [\n            {\n                \"code\": \"E202\",\n                \"message\": \"Reference exists for third party (AZ1)\",\n                \"request\": null,\n                \"reason\": null\n            }\n        ],\n        \"params\": {\n            \"requiredDocuments\": null,\n            \"companyIDValue\": \"ESA79973681\",\n            \"companyIDType\": \"CIT002\",\n            \"purchasingCategory\": null,\n            \"userInCharge\": null,\n            \"supplierCode\": null,\n            \"supplierEmail\": null,\n            \"expirationDate\": null,\n            \"description\": null,\n            \"dossierReference\": \"az1\"\n        }\n    }\n}"}],"_postman_id":"51bf797c-b7dd-42e5-9b57-c67f977ffdcc"},{"name":"Dossier creation : get processes","event":[{"listen":"test","script":{"id":"5739fa92-8566-4e24-888f-9f791fdebbe0","exec":["var jsonData = JSON.parse(responseBody);","const content = jsonData.content","pm.environment.set(\"processId\", content[content.length - 1].processId);","","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"9e165701-a0be-432c-8598-59632589576f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/processes","description":"<p>Get all dossier creation results (called processes)</p>\n<p>By default, we fetch all processes from today's date.</p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>YYYY-MM-DD</td>\n<td>get all processes from this specified date</td>\n</tr>\n</table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","processes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"10b62d92-1876-43ac-b104-50f7228eebc6","name":"Import dossier - Get Processes","originalRequest":{"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/processes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"processId\": \"8af2b3c479d77a840179e5a7468401da\",\n            \"creation\": \"2021-06-07T08:46:55.619+00:00\",\n            \"complete\": true,\n            \"success\": false,\n            \"isComplete\": \"true\",\n            \"isSuccessful\": \"false\",\n            \"dossierId\": 123456789,\n            \"errors\": [\n                {\n                    \"code\": \"E202\",\n                    \"message\": \"Reference exists for third party (TEST#7)\",\n                    \"request\": null,\n                    \"reason\": null\n                }\n            ],\n            \"params\": {\n                \"requiredDocuments\": null,\n                \"companyIDValue\": \"49384180300056\",\n                \"companyIDType\": \"CIT001\",\n                \"purchasingCategory\": null,\n                \"userInCharge\": null,\n                \"supplierCode\": null,\n                \"supplierEmail\": null,\n                \"expirationDate\": null,\n                \"description\": null,\n                \"dossierReference\": \"TEST#7\"\n            }\n        },\n        {\n            \"processId\": \"8af2b416790d53c201790d57eee50000\",\n            \"creation\": \"2021-04-26T08:42:17.099+00:00\",\n            \"complete\": true,\n            \"success\": true,\n            \"isComplete\": \"true\",\n            \"isSuccessful\": \"true\",\n            \"errors\": [],\n            \"params\": {\n                \"requiredDocuments\": null,\n                \"companyIDValue\": \"RS100870578\",\n                \"companyIDType\": \"CIT002\",\n                \"purchasingCategory\": null,\n                \"userInCharge\": null,\n                \"supplierCode\": null,\n                \"supplierEmail\": null,\n                \"expirationDate\": null,\n                \"description\": null,\n                \"dossierReference\": \"TEST#7\"\n            }\n        }\n    ]\n}"},{"id":"1ebabfc3-dbbd-4261-b4f8-f8d045cdabca","name":"Import dossier - Get Processes from date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/processes?fromDate=2019-01-01","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","dossiers","processes"],"query":[{"key":"fromDate","value":"2019-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"processId\": \"8af2b3c479d77a840179e5a7468401da\",\n            \"creation\": \"2021-06-07T08:46:55.619+00:00\",\n            \"complete\": true,\n            \"success\": false,\n            \"isComplete\": \"true\",\n            \"isSuccessful\": \"false\",\n            \"dossierId\": 123456789,\n            \"errors\": [\n                {\n                    \"code\": \"E202\",\n                    \"message\": \"Reference exists for third party (TEST#7)\",\n                    \"request\": null,\n                    \"reason\": null\n                }\n            ],\n            \"params\": {\n                \"requiredDocuments\": null,\n                \"companyIDValue\": \"49384180300056\",\n                \"companyIDType\": \"CIT001\",\n                \"purchasingCategory\": null,\n                \"userInCharge\": null,\n                \"supplierCode\": null,\n                \"supplierEmail\": null,\n                \"expirationDate\": null,\n                \"description\": null,\n                \"dossierReference\": \"TEST#7\"\n            }\n        },\n        {\n            \"processId\": \"8af2b416790d53c201790d57eee50000\",\n            \"creation\": \"2021-04-26T08:42:17.099+00:00\",\n            \"complete\": true,\n            \"success\": true,\n            \"isComplete\": \"true\",\n            \"isSuccessful\": \"true\",\n            \"dossierId\": 123456789,\n            \"errors\": [],\n            \"params\": {\n                \"requiredDocuments\": null,\n                \"companyIDValue\": \"RS100870578\",\n                \"companyIDType\": \"CIT002\",\n                \"purchasingCategory\": null,\n                \"userInCharge\": null,\n                \"supplierCode\": null,\n                \"supplierEmail\": null,\n                \"expirationDate\": null,\n                \"description\": null,\n                \"dossierReference\": \"TEST#7\"\n            }\n        }\n    ]\n}"}],"_postman_id":"9e165701-a0be-432c-8598-59632589576f"}],"id":"891e0145-6c4b-487a-9df8-192ebb5d353a","description":"<p>Dossier creation is an asynchronous process, you can find more details <a href=\"https://e-attestations.io/docs/t-1-create-dossier\">here</a></p>\n","_postman_id":"891e0145-6c4b-487a-9df8-192ebb5d353a","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Dossiers updates","item":[{"name":"Stop one dossier","event":[{"listen":"test","script":{"id":"ebe93615-ce7f-401b-ba56-7737a06fac10","exec":["// print environment","console.log(pm.globals.get(\"env\"));","","pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});","","// getting answer from response json","console.log(\"test\")","console.log(pm.response.json());","var dossierResponse = pm.response.json().content;","pm.test(\"Verify the contents of the response payload are correct with dossierId and accountId\", function () { ","    pm.expect(dossierResponse.complete).to.eql(true);","     if(dossierResponse.success===false){","        console.log(\"The folder is already activated\")","    }","    else","        if(dossierResponse.success===true){","        console.log(\"You have activated the folder\")","        }","","    ","});",""],"type":"text/javascript","packages":{}}}],"id":"9a50aced-8288-4968-9834-3b16630fec1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/stop","description":"<p>Stop one dossier</p>\n<p>The body may contains one attribute : </p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<td>deactivationReason</td>\n<td>string</td>\n<td>Reason for the stopped file</td>\n\n</table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","stop"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"6b4ed27e-c876-4bc2-b78c-6a9f480eccd1","name":"Error 404 : Dossier not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"dossierReference\": \"EC7BJC6030/5920015318\",\n \"description\": \"NEW DESCRIPTION 1\",\n \"purchasingCategory\": \"NEW PURCHASSING CATEGORY 1\",\n \"expirationDate\": \"2021-03-15\",\n \"thirdpartyCode\": \"2133\",\n \"thirdpartyEmail\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/stop"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/444444;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"accountId-15601dossierId-444444\"\n        }\n    ]\n}"}],"_postman_id":"9a50aced-8288-4968-9834-3b16630fec1a"},{"name":"Activate one dossier","event":[{"listen":"test","script":{"id":"ebe93615-ce7f-401b-ba56-7737a06fac10","exec":["// print environment","console.log(pm.globals.get(\"env\"));","","pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});","","// getting answer from response json","console.log(\"test\")","console.log(pm.response.json());","var dossierResponse = pm.response.json().content;","pm.test(\"Verify the contents of the response payload are correct with dossierId and accountId\", function () { ","    pm.expect(dossierResponse.complete).to.eql(true);","     if(dossierResponse.success===false){","        console.log(\"The folder is already activated\")","    }","    else","        if(dossierResponse.success===true){","        console.log(\"You have activated the folder\")","        }","","    ","});",""],"type":"text/javascript","packages":{}}}],"id":"e72b8a93-8846-4a05-9be6-daace2a51929","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \n}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/reactivate","description":"<p>Activate a stopped dossier</p>\n<p>The body may contains one attribute : </p>\n<table>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<td>expirationDate</td>\n<td>YYYY-MM-DD</td>\n<td>A new expiration date, may be null</td>\n\n</table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","reactivate"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"554bcdb0-5b55-4ddc-a536-32a2c7dcc951","name":"Activate one dossier without expiration date","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/reactivate"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"95a41df8-7156-46b7-9959-1f7c08bb7f5c","name":"Activate one dossier with expiration date","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"expirationDate\": \"2020-01-30\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/reactivate"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a4641723-7586-4267-974c-e28e8b445a06","name":"Error 404 : Dossier not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"dossierReference\": \"EC7BJC6030/5920015318\",\n \"description\": \"NEW DESCRIPTION 1\",\n \"purchasingCategory\": \"NEW PURCHASSING CATEGORY 1\",\n \"expirationDate\": \"2021-03-15\",\n \"thirdpartyCode\": \"2133\",\n \"thirdpartyEmail\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/reactivate"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/444444;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"accountId-15601dossierId-444444\"\n        }\n    ]\n}"}],"_postman_id":"e72b8a93-8846-4a05-9be6-daace2a51929"},{"name":"Update details of one dossier","event":[{"listen":"test","script":{"id":"3b27335a-ae22-4988-b259-5e75df7b2108","exec":["// print environment","console.log(pm.globals.get(\"env\"));","pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});",""],"type":"text/javascript","packages":{}}}],"id":"53ed6624-80c3-445e-9c2a-6b7df6bb1c1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"dossierReference\": \"EC7BJC6030/5920015318-NEW\",\n \"description\": \"NEW DESCRIPTION 1\",\n \"purchasingCategory\": \"NEW PURCHASSING CATEGORY 1\",\n \"expirationDate\": \"2025-03-15\",\n \"thirdpartyCode\": \"2133\",\n \"thirdpartyEmail\": [\"nobody@e-attestations.com\"]\n}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}","description":"<p>Update active dossier informations.</p>\n<p>The body may contains these attributes to update :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dossierReference</td>\n<td>String</td>\n<td>A dossier that identifies this dossier and that could come from an external system or database for instance</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A free text field for description, or any other use</td>\n</tr>\n<tr>\n<td>purchasingCategory</td>\n<td>String</td>\n<td>Another free text field for dossiers category, or any other use</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>YYYY-MM-DD</td>\n<td>If given this date will be the end of this dossier. The third party won't be monitored with this dossier after this date</td>\n</tr>\n<tr>\n<td>thirdpartyCode</td>\n<td>String</td>\n<td>A reference code from an external system or database. If a value is present, the third party code will be updated for all dossiers (concerning this third party)</td>\n</tr>\n<tr>\n<td>thirdpartyEmail</td>\n<td>String[]</td>\n<td>third party email addresses. Persons will receive an email.</td>\n</tr>\n</tbody>\n</table>\n</div><p>List of possible 400 errors :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error code</strong></th>\n<th><strong>Error description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E002</td>\n<td>Unknown parameter</td>\n</tr>\n<tr>\n<td>E003</td>\n<td>Empty parameter</td>\n</tr>\n<tr>\n<td>E010</td>\n<td>Wrong format</td>\n</tr>\n<tr>\n<td>E021</td>\n<td>Expiration date is in the past</td>\n</tr>\n<tr>\n<td>E022</td>\n<td>Date in future</td>\n</tr>\n<tr>\n<td>E030</td>\n<td>Invalid E-mail domain</td>\n</tr>\n<tr>\n<td>E111</td>\n<td>Thirdparty code (supplierCode) is different regarding the existing one</td>\n</tr>\n<tr>\n<td>E112</td>\n<td>Thirdparty code (supplierCode) is already used for another thirdparty</td>\n</tr>\n<tr>\n<td>E201</td>\n<td>Dossier disabled</td>\n</tr>\n<tr>\n<td>E202</td>\n<td>Reference exists for third party</td>\n</tr>\n<tr>\n<td>E206</td>\n<td>Dossier type not found</td>\n</tr>\n<tr>\n<td>E207</td>\n<td>Updating documents is forbidden on a typed dossier</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"d829b8cb-8446-49f3-a002-052fbd3a03d1","name":"Update details of one dossier","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"dossierReference\": \"EC7BJC6030/5920015318\",\n \"description\": \"NEW DESCRIPTION 1\",\n \"purchasingCategory\": \"NEW PURCHASSING CATEGORY 1\",\n \"expirationDate\": \"2021-03-15\",\n \"thirdpartyCode\": \"2133\",\n \"thirdpartyEmail\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"ac29cfd7-0c8e-45a6-8c67-bffcdd875c4b","name":"Update description only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"description\": \"NEW DESCRIPTION 2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"6ee76bbd-a511-4ade-b5ea-ca23b96a037e","name":"Error 404 : Dossier not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"dossierReference\": \"EC7BJC6030/5920015318\",\n \"description\": \"NEW DESCRIPTION 1\",\n \"purchasingCategory\": \"NEW PURCHASSING CATEGORY 1\",\n \"expirationDate\": \"2021-03-15\",\n \"thirdpartyCode\": \"2133\",\n \"thirdpartyEmail\": [\"nobody@e-attestations.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/444444;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"accountId-15601dossierId-444444\"\n        }\n    ]\n}"}],"_postman_id":"53ed6624-80c3-445e-9c2a-6b7df6bb1c1d"},{"name":"Update requirements of one dossier","event":[{"listen":"test","script":{"id":"a6b63377-3ba5-4cad-8a89-59c6ad2f8392","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"7f40621e-009b-47d5-81b5-43faf02af57c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"newRequiredDocuments\":[\"JUSTIF_IMM\"]\n}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/requirements","description":"<p>Update requirements of one dossier</p>\n<p>The body contains one attribute :</p>\n<table><tbody><tr><td><div>requiredDocuments</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String[]</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This array sets the new required documents for this third party managed with this dossier.<br />Each item in the list is a document <b>code</b> (to find it, use this endpoint <code>Requirements Requirements for the account</code></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p>Possible 400 errors :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E002</td>\n<td>Unknown requirement</td>\n</tr>\n<tr>\n<td>E201</td>\n<td>Dossier disabled</td>\n</tr>\n<tr>\n<td>E207</td>\n<td>Updating documents is forbidden on a typed dossier</td>\n</tr>\n<tr>\n<td>E003</td>\n<td>Empty parameter</td>\n</tr>\n<tr>\n<td>E301</td>\n<td>Requirement disabled</td>\n</tr>\n<tr>\n<td>E302</td>\n<td>Requirement not allowed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","requirements"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"e821c9db-13a2-4a16-b66f-d23596ba2968","name":"Add new required document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"newRequiredDocuments\":[\"JUSTIF_IMM\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/requirements"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e1f114d1-a772-4e98-8056-0ad37c266473","name":"Error 404 : dossier not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"newRequiredDocuments\":[\"JUSTIF_IMM\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/requirements"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 12:58:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/555/requirements;client=10.114.2.59;user=aaa@e-attestations.com\",\n            \"reason\": \"accountId-15601dossierId-555\"\n        }\n    ]\n}"},{"id":"76781a99-81be-4186-87a5-54a093bcb330","name":"Error 400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"newRequiredDozcuments\":[\"JUSTIFAAA_IMM\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/requirements"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 13:01:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E002\",\n                \"message\": \"Unknown parameter \",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"7f40621e-009b-47d5-81b5-43faf02af57c"},{"name":"Add or update a dossier attribute","id":"e7a467c9-74a2-4453-84e4-f64c38177e4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"Supplier Due Diligence Procedure Workflow\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/attributes","description":"<p>Add or update a dossier attribute.</p>\n<ul>\n<li><p>label : attribute name, you can find this name by using the following endpoint : <strong>Account attributes</strong></p>\n</li>\n<li><p>values : an array of values, multiples values can be added a <strong>list_multiple</strong> attribute type</p>\n</li>\n</ul>\n<p>Il you want to set an empty value, you can set the following value : \"values\":[null]</p>\n<p>Possible 400 errors codes :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E011</td>\n<td>For non multiple attribute, juste one value must be present in the values array</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","attributes"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"3f2d29e1-e3d5-465c-8202-e56b28ee0a6d","name":"Add or update a dossier attribute","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"Supplier Due Diligence Procedure Workflow\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"da676d7d-c059-49ee-bff4-266cf601430b","name":"Error 400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"test\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/attributes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:12:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": {\n        \"error\": [\n            {\n                \"code\": \"E010\",\n                \"message\": \"Wrong format (values/Should be one or multiple of the following values [aaa, aaaa].)\",\n                \"request\": null,\n                \"reason\": null\n            }\n        ]\n    }\n}"},{"id":"674e203f-cf85-4400-8edf-e528ff19521f","name":"Error 404 : Dossier or attribute label not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\":\"test\",\n    \"values\":[\"yes\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/attributes"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Nov 2024 10:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n        {\n            \"code\": \"NOT_FOUND\",\n            \"message\": \"The resource does not exist. Please check you search criteria and values.\",\n            \"request\": \"ServletWebRequest: uri=/api/v1/account/15601/dossiers/1581809/attributes;client=10.114.1.144;user=aaa@e-attestations.com\",\n            \"reason\": \"404 : [{\\\"timestamp\\\":\\\"2024-11-08T10:13:40.417+00:00\\\",\\\"status\\\":404,\\\"error\\\":\\\"Not Found\\\",\\\"message\\\":\\\"\\\",\\\"path\\\":\\\"/api/account/15601/dossier/1581809/attributes\\\"}]\"\n        }\n    ]\n}"}],"_postman_id":"e7a467c9-74a2-4453-84e4-f64c38177e4e"}],"id":"89530edc-0f0b-438c-83e3-12b543aca11b","_postman_id":"89530edc-0f0b-438c-83e3-12b543aca11b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Dossier's notes","item":[{"name":"Create a note","event":[{"listen":"test","script":{"id":"ebe93615-ce7f-401b-ba56-7737a06fac10","exec":["// print environment","console.log(pm.globals.get(\"env\"));","","pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","    pm.response.to.not.be.error;","});",""],"type":"text/javascript","packages":{}}}],"id":"76bdaf77-eed2-4b43-bcda-562029c648d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"content\": \"Test note 1\"}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/note","description":"<p>Add a note on a dossier. The content must be a string. This note will be bvisible when you get a dossier, with information like the creation date and the creator's name.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","note"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"abe9f48a-d2e5-4301-96b0-e548cad2a57b","name":"Create a note","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"content\": \"Test note 1\"}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/note"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"dateCreation\": \"2024-10-10T09:42:03.213+00:00\",\n        \"prenomNom\": \"Jean Dupont\",\n        \"userOid\": 1111,\n        \"contenu\": \"Test note 1\",\n        \"noteOId\": 1006,\n        \"dateUpdate\": null,\n        \"listMentionedUsers\": null\n    }\n}"}],"_postman_id":"76bdaf77-eed2-4b43-bcda-562029c648d2"},{"name":"Delete a note by id","event":[{"listen":"test","script":{"id":"a6b63377-3ba5-4cad-8a89-59c6ad2f8392","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"1fddfa97-ab53-4be0-b3b3-0d1935d0789c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"newRequiredDocuments\":[\"JUSTIF_IMM\"]\n}"},"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/note/{{note_id}}","description":"<p>Delete a note by id</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","note","{{note_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fddfa97-ab53-4be0-b3b3-0d1935d0789c"}],"id":"8a73bf78-58c5-48c3-b5a8-e6993054221a","description":"<p>Add notes on your dossier. They will be visible when you do a GET on a dossier.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"7d0e1c27-d0b1-4ee7-a9aa-eaf4fa845998","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b51dd459-7110-4b84-803e-6f8db8d303c5","type":"text/javascript","exec":[""]}}],"_postman_id":"8a73bf78-58c5-48c3-b5a8-e6993054221a"},{"name":"Dossier's documents","item":[{"name":"Documents","event":[{"listen":"test","script":{"id":"2943ffba-ae36-44cd-ade0-1ae7f752a7ab","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});","","",""],"type":"text/javascript","packages":{}}}],"id":"6192c2c8-4f12-4de1-97c9-88e7b7ab3d2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents","description":"<p>GET dossier documents by its id for a specific account.</p>\n<p>Each document can be a file uploaded, a form filled by a third party or the depositor may have refuse to submit a document (boolean hasRefusedToFile = true).</p>\n<p>Some information is added in the response when a document has been completed by a third party :</p>\n<ul><li><div><code>present: true</code></div></li><li><div><b>evidences</b> array is composed of informations about the form filled or file uploaded : uploaded date, file size, form datas...</div></li></ul>\n\n<p>First example : two required document files (one is present, the other not)</p>\n<p>Second example : a completed form ( with all form datas in the <code>evidences</code> section in the response</p>\n<table><tbody><tr><th>Parameter</th><th>Type</th><th>Description</th></tr><tr><td><div>withHistoric</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When true, the response includes the historical (past) versions of each document's evidences (historicEvidences) — i.e. evidences from previous/closed requests, not only the current ongoing one. Default false returns only the active evidences.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"d9d1c447-09cc-4806-ae3c-cb638b6f28a0","name":"Account dossiers with one document uploaded","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"documentId\": 11078435,\n            \"dossierId\": 1324073,\n            \"documentCode\": \"LST_SAL_ETR\",\n            \"documentName\": \"Liste nominative des salariés étrangers soumis à autorisation de travail\",\n            \"documentNameEn\": \"List of names of posted workers subjected to work permit\",\n            \"requestDate\": \"2020-02-12T18:07:56.974\",\n            \"present\": true,\n            \"isPresent\": \"true\",\n            \"statusCode\": \"VALID\",\n            \"evidences\": [\n                {\n                    \"id\": 6876412,\n                    \"responseId\": 2238768,\n                    \"uploadDate\": \"2020-10-29T11:55:46.367\",\n                    \"fileUUID\": \"a4d8acd5-8254-477c-9019-fa85aef8d224\",\n                    \"fileName\": \"filename.pdf\",\n                    \"fileCreation\": \"2020-10-29T11:55:46.345\",\n                    \"fileSize\": 128790,\n                    \"expirationDate\": \"2021-04-29T23:59:59.999\",\n                    \"formdata\": [],\n                    \"format\": \"ORIGINALNUMERIQUE\",\n                    \"issuer\": \"DO\",\n                    \"transmitter\": \"FOURNISSEUR\",\n                    \"metadata\": {}\n                }\n            ]\n        },\n        {\n            \"documentId\": 11031065,\n            \"dossierId\": 1324073,\n            \"documentCode\": \"FAP2\",\n            \"documentName\": \"Formulaire administratif PLURIAL 2020\",\n            \"documentNameEn\": \"Formulaire administratif PLURIAL 2020\",\n            \"requestDate\": \"2020-02-06T10:08:46.996\",\n            \"present\": false,\n            \"isPresent\": \"false\",\n            \"evidences\": []\n        }\n    ]\n}"},{"id":"069785a3-5f3b-4ad6-9593-a57e42051844","name":"Account dossiers with one document (form filled)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"documentId\": 11078435,\n            \"dossierId\": 1324073,\n            \"documentCode\": \"LST_SAL_ETR\",\n            \"documentName\": \"Liste nominative des salariés étrangers soumis à autorisation de travail\",\n            \"documentNameEn\": \"List of names of posted workers subjected to work permit\",\n            \"requestDate\": \"2020-02-12T18:07:56.974\",\n            \"present\": true,\n            \"isPresent\": \"true\",\n            \"statusCode\": \"VALID\",\n            \"evidences\": [\n                {\n                    \"id\": 6876412,\n                    \"responseId\": 2238768,\n                    \"uploadDate\": \"2020-10-29T11:55:46.367\",\n                    \"fileUUID\": \"a4d8acd5-8254-477c-9019-fa85aef8d224\",\n                    \"fileName\": \"filename.pdf\",\n                    \"fileCreation\": \"2020-10-29T11:55:46.345\",\n                    \"fileSize\": 128790,\n                    \"expirationDate\": \"2021-04-29T23:59:59.999\",\n                    \"formdata\": [\n                        {\n                            \"type\": \"string\",\n                            \"key\": \"f_158_nmr_0\",\n                            \"title\": \"Nom ou référence de l'opération\",\n                            \"order\": 0,\n                            \"value\": \"TEST\"\n                        },\n                        {\n                            \"type\": \"string\",\n                            \"key\": \"f_158_nmdc_1\",\n                            \"title\": \"Nom du client\",\n                            \"order\": 1,\n                            \"value\": \"AZERT\"\n                        },\n                        {\n                            \"type\": \"date\",\n                            \"key\": \"f_158_dtd_2\",\n                            \"title\": \"Date de réalisation\",\n                            \"order\": 2,\n                            \"value\": \"07/04/2020\"\n                        }\n                    ],\n                    \"format\": \"ORIGINALNUMERIQUE\",\n                    \"issuer\": \"DO\",\n                    \"transmitter\": \"FOURNISSEUR\",\n                    \"metadata\": {}\n                }\n            ]\n        },\n        {\n            \"documentId\": 11031065,\n            \"dossierId\": 1324073,\n            \"documentCode\": \"FAP2\",\n            \"documentName\": \"Formulaire administratif PLURIAL 2020\",\n            \"documentNameEn\": \"Formulaire administratif PLURIAL 2020\",\n            \"requestDate\": \"2020-02-06T10:08:46.996\",\n            \"present\": false,\n            \"isPresent\": \"false\",\n            \"evidences\": []\n        }\n    ]\n}"}],"_postman_id":"6192c2c8-4f12-4de1-97c9-88e7b7ab3d2e"},{"name":"Document details","event":[{"listen":"test","script":{"id":"17b98c28-000c-4b4c-9a6b-c38de316acce","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"5e1ea490-568c-4139-abe7-b2487f56abf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}","description":"<p>GET one dossier's document details by its id</p>\n<p>Each document can be a file uploaded or a form filled by a third party.</p>\n<p>Some information is added in the response when a document has been completed by a third party : </p>\n<ul>\n<li><code>present: true</code></li>\n<li><b>evidences</b> array is composed of informations about the form filled or file uploaded : uploaded date, file size, form datas...</li>\n</ul>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents","{{document_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"2ae79d77-e946-4809-8cbd-6871ecfd9148","name":"Account dossiers documents details (form filled)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"documentId\": 11424746,\n            \"dossierId\": 1010976,\n            \"documentCode\": \"RRC\",\n            \"documentName\": \"Références réalisation client\",\n            \"documentNameEn\": \"Références réalisation client\",\n            \"requestDate\": \"2020-04-24T15:04:01.219\",\n            \"present\": true,\n            \"isPresent\": \"true\",\n            \"statusCode\": \"VALID\",\n            \"evidences\": [\n                {\n                    \"id\": 6647765,\n                    \"responseId\": 2238768,\n                    \"uploadDate\": \"2020-04-24T15:05:11.150\",\n                    \"fileUUID\": \"79e4d784-4914-4d69-b4cb-b7a8d70b4fad\",\n                    \"fileName\": \"filename.pdf\",\n                    \"fileCreation\": \"2020-04-24T15:05:11.139\",\n                    \"fileSize\": 81896,\n                    \"expirationDate\": null,\n                    \"formdata\": [\n                        {\n                            \"type\": \"string\",\n                            \"key\": \"f_158_nmr_0\",\n                            \"title\": \"Nom ou référence de l'opération\",\n                            \"order\": 0,\n                            \"value\": \"TEST\"\n                        },\n                        {\n                            \"type\": \"string\",\n                            \"key\": \"f_158_nmdc_1\",\n                            \"title\": \"Nom du client\",\n                            \"order\": 1,\n                            \"value\": \"AZERT\"\n                        },\n                        {\n                            \"type\": \"date\",\n                            \"key\": \"f_158_dtd_2\",\n                            \"title\": \"Date de réalisation\",\n                            \"order\": 2,\n                            \"value\": \"07/04/2020\"\n                        }\n                    ],\n                    \"format\": \"ORIGINALNUMERIQUE\",\n                    \"issuer\": \"DO\",\n                    \"transmitter\": \"FOURNISSEUR\",\n                    \"metadata\": {}\n                }\n            ]\n        }\n    ]\n}"},{"id":"7ff109a1-1b95-4ec1-be22-b2d84e7e808b","name":"Account dossiers documents details (file uploaded)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"documentId\": 11078435,\n            \"dossierId\": 1324073,\n            \"documentCode\": \"LST_SAL_ETR\",\n            \"documentName\": \"Liste nominative des salariés étrangers soumis à autorisation de travail\",\n            \"documentNameEn\": \"List of names of posted workers subjected to work permit\",\n            \"requestDate\": \"2020-02-12T18:07:56.974\",\n            \"present\": true,\n            \"isPresent\": \"true\",\n            \"statusCode\": \"VALID\",\n            \"evidences\": [\n                {\n                    \"id\": 6876412,\n                    \"responseId\": 2238768,\n                    \"uploadDate\": \"2020-10-29T11:55:46.367\",\n                    \"fileUUID\": \"a4d8acd5-8254-477c-9019-fa85aef8d224\",\n                    \"fileName\": \"filename.pdf\",\n                    \"fileCreation\": \"2020-10-29T11:55:46.345\",\n                    \"fileSize\": 128790,\n                    \"expirationDate\": \"2021-04-29T23:59:59.999\",\n                    \"formdata\": [],\n                    \"format\": \"ORIGINALNUMERIQUE\",\n                    \"issuer\": \"DO\",\n                    \"transmitter\": \"FOURNISSEUR\",\n                    \"metadata\": {}\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"5e1ea490-568c-4139-abe7-b2487f56abf0"},{"name":"Document refused","event":[{"listen":"test","script":{"id":"17b98c28-000c-4b4c-9a6b-c38de316acce","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4d91cced-ca7c-4a63-a213-6eead8ba1dd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}?withHistoric=true","description":"<p>GET one dossier's document details by its id</p>\n<p>Retrieves details of a <strong>rejected</strong> document by its ID.</p>\n<p>Each document can be a file uploaded or a form filled by a third party.</p>\n<p>Some information is added in the response when a document has been completed by a third party :</p>\n<ul><li><div><code>present: true</code></div></li><li><div><b>historicEvidences</b> array is composed of informations about the form filled or file uploaded : uploaded date, file size, form datas...</div></li></ul>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents","{{document_id}}"],"host":["{{ea_api_serv}}"],"query":[{"key":"withHistoric","value":"true"}],"variable":[]}},"response":[{"id":"fe855629-1c27-40ea-9cf2-4c42d5142d88","name":"Account dossiers document history","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}?withHistoric=true","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents","{{document_id}}"],"query":[{"key":"withHistoric","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12344775,\n            \"dossierId\": 1591140,\n            \"documentCode\": \"CBT\",\n            \"typeDocumentId\": 1473,\n            \"documentName\": \"Test Doc name\",\n            \"documentNameEn\": null,\n            \"requestDate\": \"2025-09-16T16:27:41.345\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"historicEvidences\": [\n                {\n                    \"id\": 8104569,\n                    \"responseId\": 8338400,\n                    \"uploadDate\": \"2025-09-16T16:29:09.003\",\n                    \"fileUUID\": \"d93cd201-440c-4ec5-84e1-5774c0234975\",\n                    \"fileName\": \"xxx.pdf\",\n                    \"fileCreation\": \"2025-09-16T16:29:08.970\",\n                    \"fileSize\": 8624,\n                    \"validityStartDate\": null,\n                    \"expirationDate\": \"2025-12-22T14:17:13.791\",\n                    \"format\": \"NA\",\n                    \"issuer\": \"FOURNISSEUR\",\n                    \"transmitter\": \"FOURNISSEUR\",\n                    \"specificData\": null,\n                    \"metadata\": {\n                        \"ai_result\": \"false\",\n                        \"from_external_portal\": \"false\",\n                        \"depositor\": \"Florian Peuteuil\",\n                        \"smart_check_fail\": \"false\",\n                        \"code_securite_hand_written\": \"false\"\n                    },\n                    \"formdata\": [\n                        {\n                            \"type\": \"checkbox\",\n                            \"key\": \"f_1473_vc_0\",\n                            \"title\": \"Avec quelles équipes travailles tu ?\\n\\n\",\n                            \"fieldId\": \"791d4116-4228-4755-91fc-e15d77a660da\",\n                            \"order\": 0,\n                            \"hasPriority\": false,\n                            \"value\": \"Team Produit\"\n                        },\n                        {\n                            \"type\": \"unknown\",\n                            \"key\": \"f_1473_frf_3\",\n                            \"title\": \"Forfait annul est de :\\n\",\n                            \"fieldId\": \"e9f5b567-8d33-4862-8785-78e00b1f60c1\",\n                            \"order\": 3,\n                            \"hasPriority\": false,\n                            \"value\": \"5000 EUR - Euro\"\n                        },\n                        {\n                            \"type\": \"unknown\",\n                            \"key\": \"f_1473_ql_4\",\n                            \"title\": \"Quel sport préfères tu vraiment ?\\n\",\n                            \"fieldId\": \"b81cbc1d-99e8-42da-b699-8cf46f6a5254\",\n                            \"order\": 4,\n                            \"hasPriority\": false,\n                            \"value\": \"Aprovall Padel Club\"\n                        },\n                        {\n                            \"type\": \"string\",\n                            \"key\": \"f_1473_cmm_5\",\n                            \"title\": \"Comment s'appelle ton collègue ?\\n\\n\",\n                            \"fieldId\": \"0a0cfc9b-6762-4369-8950-88d60e95463a\",\n                            \"order\": 5,\n                            \"hasPriority\": false,\n                            \"value\": \"Elodie\"\n                        },\n                        {\n                            \"type\": \"email\",\n                            \"key\": \"f_1473_ql_6\",\n                            \"title\": \"Quel est ton email ?\\n\\n\",\n                            \"fieldId\": \"644bf080-9519-4352-97f6-f9abba4311ac\",\n                            \"order\": 6,\n                            \"hasPriority\": false,\n                            \"value\": \"bbb@aprovall.com\"\n                        },\n                        {\n                            \"type\": \"email\",\n                            \"key\": \"f_1473_qll_7\",\n                            \"title\": \"Quelle est l'adresse email de votre RSSI ? \\n\",\n                            \"fieldId\": \"b4d11bfa-044c-463a-a9d8-5526bb34d83d\",\n                            \"order\": 7,\n                            \"hasPriority\": false,\n                            \"value\": \"aaa@aprovall.com\"\n                        },\n                        {\n                            \"type\": \"checkbox\",\n                            \"key\": \"f_1473_qll_8\",\n                            \"title\": \"Quelles sont les actions que vous menez en matière d'éthique ? \\n\",\n                            \"fieldId\": \"93e96e87-e758-425e-be12-375e79c532ca\",\n                            \"order\": 8,\n                            \"hasPriority\": false,\n                            \"value\": \"Equité\"\n                        },\n                        {\n                            \"type\": \"checkbox\",\n                            \"key\": \"f_1473_qls_9\",\n                            \"title\": \"quels sont vos certif ?\\n\",\n                            \"fieldId\": \"8d5041c5-6edd-4921-9edd-0ffe87754915\",\n                            \"order\": 9,\n                            \"hasPriority\": false,\n                            \"value\": \"A\"\n                        }\n                    ],\n                    \"acquisition\": null,\n                    \"smartControlActivated\": false,\n                    \"smartControlV2\": false,\n                    \"enableBelowExpectationStatus\": false,\n                    \"hasRefusedToFile\": false\n                }\n            ],\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        }\n    ]\n}"}],"_postman_id":"4d91cced-ca7c-4a63-a213-6eead8ba1dd7"}],"id":"628b01e4-a79b-43dd-a994-5ab74c8d7ec2","_postman_id":"628b01e4-a79b-43dd-a994-5ab74c8d7ec2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Dossier's Evidences & Files","item":[{"name":"Evidences","event":[{"listen":"test","script":{"id":"e36569f5-4a9b-49a0-bfef-5cafafc9605c","exec":["var jsonData = JSON.parse(responseBody);","","pm.environment.set(\"fileId\", jsonData.content[0].fileId);","","pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ba99d2d4-d329-4ea6-92ee-65fce6262fde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}/files","description":"<p>GET one dossier's document evidence ( file or form filled) by its id</p>\n<p>This endpoint return all datas from completed form or uploaded files</p>\n<table><tbody><tr><th>Parameter</th><th>Type</th><th>Description</th></tr><tr><td><div>withHistoric</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When true, the response includes the historical (past) versions of each document's evidences (historicEvidences) — i.e. evidences from previous/closed requests, not only the current ongoing one. Default false returns only the active evidences.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents","{{document_id}}","files"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"47867ec3-6d0f-47cf-9fa7-94e03dafb5bb","name":"Evidences (file uploaded)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{documentId}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 6876412,\n            \"responseId\": 2238768,\n            \"uploadDate\": \"2020-10-29T11:55:46.367\",\n            \"fileUUID\": \"a4d8acd5-8254-477c-9019-fa85aef8d224\",\n            \"fileCreation\": \"2020-10-29T11:55:46.345\",\n            \"fileSize\": 128790,\n            \"expirationDate\": \"2021-04-29T23:59:59.999\",\n            \"formdata\": [],\n            \"format\": \"ORIGINALNUMERIQUE\",\n            \"issuer\": \"DO\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"metadata\": {}\n        }\n    ]\n}"},{"id":"cf7e3ddd-520a-4343-b6f0-d97699ab0238","name":"Evidences (form filled)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{documentId}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 6647765,\n            \"responseId\": 2238768,\n            \"uploadDate\": \"2020-04-24T15:05:11.150\",\n            \"fileUUID\": \"79e4d784-4914-4d69-b4cb-b7a8d70b4fad\",\n            \"fileName\": \"filename.pdf\",\n            \"fileCreation\": \"2020-04-24T15:05:11.139\",\n            \"fileSize\": 81896,\n            \"expirationDate\": null,\n            \"formdata\": [\n                {\n                    \"type\": \"string\",\n                    \"key\": \"f_158_nmr_0\",\n                    \"title\": \"Nom ou référence de l'opération\",\n                    \"order\": 0,\n                    \"value\": \"TEST\"\n                },\n                {\n                    \"type\": \"string\",\n                    \"key\": \"f_158_nmdc_1\",\n                    \"title\": \"Nom du client\",\n                    \"order\": 1,\n                    \"value\": \"AZERT\"\n                },\n                {\n                    \"type\": \"date\",\n                    \"key\": \"f_158_dtd_2\",\n                    \"title\": \"Date de réalisation\",\n                    \"order\": 2,\n                    \"value\": \"07/04/2020\"\n                }\n            ],\n            \"format\": \"ORIGINALNUMERIQUE\",\n            \"issuer\": \"DO\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"metadata\": {}\n        }\n    ]\n}"},{"id":"1a63294e-211e-4091-8bcc-b329ed9cb7e3","name":"IBAN with SID-ID response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{documentId}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 8336764,\n            \"responseId\": 2238768,\n            \"uploadDate\": \"2021-02-15T09:59:50.395\",\n            \"fileUUID\": \"b7252553-4474-40df-bf25-e185a3630738\",\n            \"fileName\": \"filename.pdf\",\n            \"fileCreation\": \"2021-02-15T09:59:50.392\",\n            \"fileSize\": 43251,\n            \"expirationDate\": null,\n            \"formdata\": [\n                {\n                    \"type\": \"iban\",\n                    \"key\": \"f_49_bn_0\",\n                    \"title\": \"IBAN\",\n                    \"order\": 0,\n                    \"value\": \"FR76 0000 0000 0000 0000 0000 000\"\n                }\n            ],\n            \"format\": \"ORIGINALNUMERIQUE\",\n            \"issuer\": \"DO\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"metadata\": {\n                \"bank_data_country_iso\": \"FR\",\n                \"bank_data_bank\": \"CREDIT DU NORD\",\n                \"sepa_data_cor1\": \"YES\",\n                \"sis_id\": {\n                    \"createdBy\": \"503829368\",\n                    \"createdDate\": \"2021-06-22T18:00:53.593+00:00\",\n                    \"lastModifiedBy\": \"503829368\",\n                    \"lastModifiedDate\": \"2021-06-22T18:00:55.339+00:00\",\n                    \"id\": \"60d2255563245f2fa6d15231\",\n                    \"score\": 100,\n                    \"status\": \"SUCCEEDED\",\n                    \"entity\": {\n                        \"company\": {\n                            \"createdDate\": \"2021-06-22T18:00:53.535+00:00\",\n                            \"lastModifiedDate\": \"2021-06-22T18:00:53.535+00:00\",\n                            \"registrationId\": \"123456789\",\n                            \"name\": \"COMPANY NAME\",\n                            \"typeId\": \"4\"\n                        },\n                        \"createdDate\": \"2021-06-22T18:00:53.535+00:00\",\n                        \"lastModifiedDate\": \"2021-06-22T18:00:53.535+00:00\"\n                    },\n                    \"issuerCompany\": {\n                        \"createdDate\": \"2021-06-22T18:00:55.611+00:00\",\n                        \"lastModifiedDate\": \"2021-06-22T18:00:55.611+00:00\",\n                        \"id\": \"503829368\",\n                        \"registrationId\": \"503829368\",\n                        \"name\": \"E-ATTESTATIONS.COM\",\n                        \"typeId\": \"4\"\n                    },\n                    \"withDeferredResult\": true,\n                    \"byAPI\": true,\n                    \"workflow\": \"PING\",\n                    \"reasons\": [\n                        \"S-NR\",\n                        \"I-NR\",\n                        \"CLH-SINR\",\n                        \"COH-SR\",\n                        \"SD-V\"\n                    ],\n                    \"nbAudits\": 0,\n                    \"reasonLabels\": {\n                        \"sepamail.code.01001\": \"01001 (Compte existant et valide).\",\n                        \"sepamail.status.VERIFIED\": \"Les coordonnées bancaires et la société sont vérifiées par le service SEPAmail DIAMOND.\",\n                        \"sepamail.code.03001\": \"03001 (SIREN correct).\",\n                        \"sepamail.code.02001\": \"02001 (Type de titulaire du compte correct).\",\n                        \"reason.code.SD-V\": \"Les coordonnées bancaires et la société sont vérifiées par le service SEPAmail DIAMOND.\",\n                        \"reason.code.COH-SR\": \"Analyse de l'historique de paiement de la communauté : société connue mais coordonnées bancaires inconnues.\",\n                        \"reason.code.I-NR\": \"Coordonnées bancaires non ajoutées sur la plateforme.\",\n                        \"reason.code.CLH-SINR\": \"Analyse de votre historique de paiement : société et coordonnées bancaires inconnues.\",\n                        \"reason.code.S-NR\": \"Société non enrôlée sur la plateforme.\"\n                    }\n                },\n                \"verified\": \"true\",\n                \"sepa_data_sct\": \"YES\",\n                \"bank_data_country\": \"FRANCE\",\n                \"bank_data_address\": \"240 244 AV PIERRE\",\n                \"bank_data_account\": \"111111111\",\n                \"bank_data_phone\": \"\",\n                \"bank_data_zip\": \"75001\",\n                \"bank_data_city\": \"PARIS\",\n                \"bank_data_bic\": \"NORDXXXX\",\n                \"bank_data_fax\": \"\",\n                \"sepa_data_b2b\": \"YES\",\n                \"bank_data_www\": \"\",\n                \"sepa_data_scc\": \"YES\",\n                \"sepa_data_sdd\": \"YES\",\n                \"date_verification\": \"15/02/2021\",\n                \"bank_data_email\": \"\"\n            }\n        }\n    ]\n}"},{"id":"51b47b8b-e156-41c9-b8fc-2686cf547a7f","name":"IBAN with Trustpair response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{documentId}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 8336764,\n            \"responseId\": 2238768,\n            \"uploadDate\": \"2021-02-15T09:59:50.395\",\n            \"fileUUID\": \"b7252553-4474-40df-bf25-e185a3630738\",\n            \"fileName\": \"filename.pdf\",\n            \"fileCreation\": \"2021-02-15T09:59:50.392\",\n            \"fileSize\": 43251,\n            \"expirationDate\": null,\n            \"formdata\": [\n                {\n                    \"type\": \"iban\",\n                    \"key\": \"f_49_bn_0\",\n                    \"title\": \"IBAN\",\n                    \"order\": 0,\n                    \"value\": \"FR76 0000 0000 0000 0000 0000 000\"\n                }\n            ],\n            \"format\": \"ORIGINALNUMERIQUE\",\n            \"issuer\": \"DO\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"metadata\": {\n                \"bank_data_country_iso\": \"FR\",\n                \"bank_data_bank\": \"CREDIT DU NORD\",\n                \"sepa_data_cor1\": \"YES\",\n                \"trustpair\": {\n                    \"company_country_code\": \"FR\",\n                    \"company_registration\": \"123456789\",\n                    \"iban\": \"FR7600000000000000000000000\",\n                    \"bank_account_bic\": \"XXXXXXXXXXX\",\n                    \"state\": \"favorable\",\n                    \"state_reasons\": {\n                        \"company\": {\n                            \"state\": \"favorable\",\n                            \"state_reasons\": [\n                                \"La société est en activité\"\n                            ]\n                        },\n                        \"bank_account\": {\n                            \"state\": \"favorable\",\n                            \"state_reasons\": [\n                                \"Le compte bancaire est valide\"\n                            ]\n                        },\n                        \"correlation\": {\n                            \"state\": \"favorable\",\n                            \"state_reasons\": [\n                                \"Le compte bancaire appartient à la société\"\n                            ]\n                        }\n                    },\n                    \"created_at\": \"2021-05-19T15:45:52.128+00:00\",\n                    \"updated_at\": \"2021-05-19T16:18:38.208+00:00\"\n                },\n                \"verified\": \"true\",\n                \"sepa_data_sct\": \"YES\",\n                \"bank_data_country\": \"FRANCE\",\n                \"bank_data_address\": \"240 244 AV PIERRE\",\n                \"bank_data_account\": \"111111111\",\n                \"bank_data_phone\": \"\",\n                \"bank_data_zip\": \"75001\",\n                \"bank_data_city\": \"PARIS\",\n                \"bank_data_bic\": \"NORDXXXX\",\n                \"bank_data_fax\": \"\",\n                \"sepa_data_b2b\": \"YES\",\n                \"bank_data_www\": \"\",\n                \"sepa_data_scc\": \"YES\",\n                \"sepa_data_sdd\": \"YES\",\n                \"date_verification\": \"15/02/2021\",\n                \"bank_data_email\": \"\"\n            }\n        }\n    ]\n}"},{"id":"98f1a793-8d81-42d4-844d-3a86b9d06dcc","name":"Vigilance declaration response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{documentId}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 8709434,\n            \"responseId\": 2238768,\n            \"uploadDate\": \"2021-04-20T13:46:15.470\",\n            \"fileUUID\": \"3d0c446a-21be-4a06-b272-0d23e4e8812c\",\n            \"fileName\": \"filename.pdf\",\n            \"fileCreation\": \"2021-04-20T13:46:15.466\",\n            \"fileSize\": 56831,\n            \"expirationDate\": \"2021-09-30T23:59:59.999\",\n            \"formdata\": [],\n            \"format\": \"ORIGINALNUMERIQUE\",\n            \"issuer\": \"DO\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"metadata\": {\n                \"siren\": \"147258369\",\n                \"derniere_periode_analysee_urssaf\": \"mois de mars 2021\",\n                \"code_securite\": \"XXXXXXXXXXX\",\n                \"verified\": \"true\",\n                \"effectif_urssaf\": \"0\",\n                \"date_verification\": \"20/04/2021\",\n                \"siret\": \"[\\\"12345678912345\\\"]\",\n                \"date_certification\": \"19/04/2021\",\n                \"masse_salariale_urssaf\": \"999\"\n            }\n        }\n    ]\n}"},{"id":"c12ae81a-818a-4c67-9ca7-7eabc3ff3cd1","name":"Registration Certificate response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{documentId}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"id\": 8192711,\n            \"responseId\": 2238768,\n            \"uploadDate\": \"2021-01-22T00:22:40.662\",\n            \"fileUUID\": \"e4fc79fb-6a07-4242-885c-1f742916795a\",\n            \"fileName\": \"filename.pdf\",\n            \"fileCreation\": \"2021-01-22T00:22:40.654\",\n            \"fileSize\": 81388,\n            \"expirationDate\": \"2021-07-22T23:59:59.999\",\n            \"formdata\": [],\n            \"format\": \"ORIGINALNUMERIQUE\",\n            \"issuer\": \"DO\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"metadata\": {\n                \"siren\": \"123456789\",\n                \"date_certification\": \"21/01/2021\"\n            }\n        }\n    ]\n}"}],"_postman_id":"ba99d2d4-d329-4ea6-92ee-65fce6262fde"},{"name":"File download (binary format)","event":[{"listen":"test","script":{"id":"c77d159a-38a3-4212-9372-940d55957acf","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"75f79178-da30-487b-a3e7-9400e3627907","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}/files/{{file_id}}","description":"<p>GET one file content from the given dossierId, documentId and fileId</p>\n<p>The content is a PDF file to download. With Postman you can see the content.</p>\n<p>For a form filled, e-Attestations produces a PDF with all third party's responses</p>\n<p>You can see the document directly in Postman :</p>\n<a href=\"https://e-attestations.io/img/postman_file_upload.png\">\n<img src=\"https://e-attestations.io/img/postman_file_upload.png\" />\n</a>","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents","{{document_id}}","files","{{file_id}}"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"75f79178-da30-487b-a3e7-9400e3627907"},{"name":"File download Copy (auto signed URL)","event":[{"listen":"test","script":{"id":"c77d159a-38a3-4212-9372-940d55957acf","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"784a4ebe-e3c6-4c1e-a2a8-bef3df1878ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}/files/{{file_id}}/link","description":"<p>Generate an auto signed URL for downloading the evidence file</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","documents","{{document_id}}","files","{{file_id}}","link"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"9a4498ca-7b2d-4b5f-94e5-a73ad6af7474","name":"File download Copy (auto signed URL)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/documents/{{document_id}}/files/{{file_id}}/link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": \"https://AUTO_SIGNED_URL.COM\"\n}"}],"_postman_id":"784a4ebe-e3c6-4c1e-a2a8-bef3df1878ae"},{"name":"File download all files for this dossier","event":[{"listen":"test","script":{"id":"c77d159a-38a3-4212-9372-940d55957acf","exec":["pm.test(\"Verify if response is HTTP 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"2c3800d4-66d4-4a6a-bda4-48931a2117a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/files/download","description":"<p>GET all files for a dossier.</p>\n<p>The content is an url to download a zip file containing the files.</p>\n","urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","{{dossier_id}}","files","download"],"host":["{{ea_api_serv}}"],"query":[],"variable":[]}},"response":[{"id":"cd0df01f-2708-46ad-a801-13cb2ad49f14","name":"File download all files for this dossier","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/{{dossier_id}}/files/download"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"content\": \"\\\"https://ea-test-application-data.s3.eu-west-1.amazonaws.com/35586982-6fcc-4cf6-8cb6-dd436ffd5cdb.zip?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEMH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJGMEQCIExUp1KIjm0Tji%2Fjbn32I7nSds3T%2FfxGQHxGGZHKFHfkAiAbPBZfxwUrGCw%2Bo7FivAIMfG0ZP5NGxQRwvdK3ITHDPSrzAwhKEAIaDDA4ODc4MjM5MjQ4MSIMGmy74eqYfQgclpJCKtADz7v9Hfn1V8PXPjDRkSfH1emXo6WHa7WPa5c1sB%2Bi49YqY2sPb0EEUZFXZ7%2BLimiY7pJJAzMznee7z6VH2uCdOCjdoKm9%2FSHdu8yps4WFk7XiA1HIfeEReZ%2B43a2yA%2FdxNB9Fdhl5A%2Fq4jx2udkwwPt58gwfzl3ilkQTgVwml6JGVWwfPotB0g18p3vdr3Sz%2FYEY%2Ba52A2EvjucMZ3hpr8l26wOaKhdFqXSjf5HKafKL9DasYNWkTKw3SZIW1fjgqa13Sa%2FBpCemsGEzkqqa08nWvf1%2BVkT281gxd5wfxpUu5i4a0FuOZ3lFmCh%2FT4I1B5oTfZqzeeD5nP6NS9hMeFcDzSi3hBZsLEhhRcppSLK4R%2Fge4g7qqdCG8ptVXonu0jh%2BxtGUeg8h2R3A7YIrWD1lRSt4pVEPFS6uNd%2FGzbcWar51wtiTc4QgXqM5gIxYbZO7%2F85ASzSdlE6vQpPWkgfBCL%2BqTrBxkw%2BeQhu%2Frkgy6BJOTr5RMMWc%2BNr%2BchEFNVAvXI4y7TGiS9UbWIuVqXQjWka1GjMcl3pW5TLXqbQ9i9xqj52s1MMCUPTiVqyxDXQBpJ8SkPbQdTSC%2F2AIRVKrgisUqs1RkOfTunJV%2BH%2BAww5PtkQY6pgFpaBWquCwVMFdgpR28WVcLSBQC%2FDXtFRNxlVTHRGijy%2BmJJNHv5JDNmQ2FMPeMfl7yOCHVvy9jZHfWM0kVSCpqQja3RTkxHfTNqBqKItQdtApsro81pKQ%2FTv0vYzF%2FZ7NS83cjjFxLRfCYB0N2Im5Be%2BUKYxOoVBp%2Fhs9asAb%2B6kXr00FPvQKRokLgI3ZNYu59GK8dIGUg4qaOULeVoKFNTy7VgLOG&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20220323T164931Z&X-Amz-SignedHeaders=host&X-Amz-Expires=600&X-Amz-Credential=ASIARJK6XZSQWCWT3QMV%2F20220323%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Signature=974ec0f7ab1c8e9eccc044e5fdd725ab02eaa8e86549cd9af0209f7c5447c7fa\\\"\"\n}"}],"_postman_id":"2c3800d4-66d4-4a6a-bda4-48931a2117a5"}],"id":"0bdb4142-fd35-46ac-a2ed-0412ab71957b","description":"<p>get all evidences :</p>\n<ul>\n<li>a form filled</li>\n<li>a document fetched</li>\n<li>a document uploaded</li>\n</ul>\n<p>Each evidence is a file ( binary file + informations).</p>\n","_postman_id":"0bdb4142-fd35-46ac-a2ed-0412ab71957b","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Documents","item":[{"name":"Get documents informations","id":"c6a7a89d-6952-4058-a4b0-4c0c22372a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/documents/search?page=0&pageSize=10&documentCode=RIB_IBAN","description":"<p><strong>Search for documents by criteria and events</strong></p>\n<p>Search for documents by criteria and events.</p>\n<p>This endpoint allows you to retrieve a filtered list of documents based on various criteria including third party, dossier, document code, and event history.</p>\n<p>It provides a global search across all documents in your account, without requiring you to navigate through individual dossiers. The response contains document information with detailed evidence data.</p>\n<p>The result is paginated with 10 entries per page by default.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>thirdPartyId</code></td>\n<td>integer</td>\n<td>No</td>\n<td>Filter documents by third party identifier</td>\n</tr>\n<tr>\n<td><code>dossierId</code></td>\n<td>integer</td>\n<td>No</td>\n<td>Filter documents by dossier identifier</td>\n</tr>\n<tr>\n<td><code>documentCode</code></td>\n<td>string</td>\n<td>No</td>\n<td>Filter documents by document code (e.g., \"KBIS\", \"RC_PRO\").  <br />List of codes available with this endpoint :  <br /><strong>Requirements for the account</strong></td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>No</td>\n<td>The number of the page you want to access (default is 0)</td>\n</tr>\n<tr>\n<td><code>pageSize</code></td>\n<td>integer</td>\n<td>No</td>\n<td>The number of results returned per page (default is 10)</td>\n</tr>\n<tr>\n<td><code>eventNames</code></td>\n<td>array of strings</td>\n<td>No</td>\n<td>Filter documents that have specific events in their history. You can specify one or more event types separated by commas. See available event types here : <a href=\"https://developers.aprovall.com/guides/dictionary/events\">https://developers.aprovall.com/guides/dictionary/events</a></td>\n</tr>\n<tr>\n<td><code>eventOccurrenceStartDate</code></td>\n<td>datetime (ISO-8601)</td>\n<td>No</td>\n<td>Start date for filtering events. Format: yyyy-MM-dd'T'HH:mm:ss.SSS (e.g., \"2024-01-01T00:00:00.000\")</td>\n</tr>\n<tr>\n<td><code>eventOccurrenceEndDate</code></td>\n<td>datetime (ISO-8601)</td>\n<td>No</td>\n<td>End date for filtering events. Format: yyyy-MM-dd'T'HH:mm:ss.SSS (e.g., \"2024-12-31T23:59:59.000\")</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","documents","search"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"10"},{"key":"documentCode","value":"RIB_IBAN"}],"variable":[]}},"response":[{"id":"3100735c-bdb9-4d8a-a058-fa9c6f9a832d","name":"Get documents informations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/documents/search?page=0&rowPerPage=10&documentCode=RIB_IBAN","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","documents","search"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"documentCode","value":"RIB_IBAN"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12171882,\n            \"dossierId\": 1500943,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-10-21T09:03:38.882\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"MISSING\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169533,\n            \"dossierId\": 1578488,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:56:55.506\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169535,\n            \"dossierId\": 1578573,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:57:06.898\",\n            \"requestEndDate\": \"2025-08-15T22:00:15.391\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 11727976,\n            \"dossierId\": 1510900,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2021-08-03T11:53:14.330\",\n            \"requestEndDate\": \"2021-11-16T10:01:15.022\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"MISSING\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169538,\n            \"dossierId\": 1575716,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:57:21.768\",\n            \"requestEndDate\": \"2025-03-04T15:55:42.054\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"ACTION_REQUIRED\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169537,\n            \"dossierId\": 1523631,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:57:16.481\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169526,\n            \"dossierId\": 1541475,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:56:06.761\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169530,\n            \"dossierId\": 1532067,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:56:38.702\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169540,\n            \"dossierId\": 1534888,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:57:31.690\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        },\n        {\n            \"authorizingRoles\": [],\n            \"documentId\": 12169527,\n            \"dossierId\": 1542728,\n            \"documentCode\": \"RIB_IBAN\",\n            \"typeDocumentId\": 49,\n            \"documentName\": \"Coordonnées bancaires\",\n            \"documentNameEn\": \"International Bank Account Number (IBAN)\",\n            \"requestDate\": \"2024-09-23T15:56:15.807\",\n            \"present\": false,\n            \"hasRefusedToFile\": false,\n            \"isPresent\": \"false\",\n            \"depositor\": null,\n            \"evidences\": [],\n            \"statusCode\": \"NOT_VALID\",\n            \"smartControlActivated\": false,\n            \"smartControlV2\": false,\n            \"acquisition\": null\n        }\n    ],\n    \"page\": 0,\n    \"size\": 10,\n    \"totalElements\": 83\n}"}],"_postman_id":"c6a7a89d-6952-4058-a4b0-4c0c22372a33"}],"id":"8f8fca16-aa34-4bd4-b991-3d72b32eeddb","_postman_id":"8f8fca16-aa34-4bd4-b991-3d72b32eeddb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Documents actions","item":[{"name":"Approve a document","id":"b7cee031-32f6-4c9e-9b9c-8acab47e2af8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"comment\":\"OK\"\n}","options":{"raw":{"language":"json"}}},"url":"https://edge.qa-e-attestations.com/api/v1/account/{{account_id}}/responses/{{responseId}}/approve","description":"<p>If the document status is \"action required\", you can approve it with an optional reason.</p>\n<p>URL parameter : <strong>responseId</strong> is present in the <strong>evidences</strong> JSON part</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>no</td>\n<td>String</td>\n<td>optional reason</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","account","{{account_id}}","responses","{{responseId}}","approve"],"host":["edge","qa-e-attestations","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7cee031-32f6-4c9e-9b9c-8acab47e2af8"},{"name":"Refuse a document","id":"0cc935a6-ff8f-4934-bcbb-648318db0a1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"comment\":\"KO\"\n}","options":{"raw":{"language":"json"}}},"url":"https://edge.qa-e-attestations.com/api/v1/account/{{account_id}}/responses/{{responseId}}/reject","description":"<p>If the document status is \"action required\", you can refuse it with an optional reason.</p>\n<p>URL parameter : <strong>responseId</strong> is present in the <strong>evidences</strong> JSON part</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>no</td>\n<td>String</td>\n<td>optional reason</td>\n</tr>\n<tr>\n<td>shareRejectionReason</td>\n<td>yes</td>\n<td>Boolean</td>\n<td>If set to true, the third party will be notified by email of the document rejection.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","account","{{account_id}}","responses","{{responseId}}","reject"],"host":["edge","qa-e-attestations","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0cc935a6-ff8f-4934-bcbb-648318db0a1e"}],"id":"9004cb09-b91d-4595-915a-13bc391dee99","_postman_id":"9004cb09-b91d-4595-915a-13bc391dee99","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Advanced search V2","item":[{"name":"Discover searchable fields","id":"ccb57111-a549-4034-9925-b20ca14aedde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{ea_api_serv}}/api/v1/reference-data/advanced-search-fields?accountId={{account_id}}&language=fr&feature=ADVANCED_SEARCH","description":"<h2 id=\"discover-searchable-fields\">Discover searchable fields</h2>\n<p>Returns every field your account is allowed to use in advanced search, <strong>across all resources</strong>. This is the source of truth for building your queries: field names, types, allowed operators and possible values all come from here — you never invent them.</p>\n<h3 id=\"what-each-field-contains\">What each field contains</h3>\n<ul>\n<li><p><code>field</code> — technical name to copy into your condition</p>\n</li>\n<li><p><code>label</code> — display label</p>\n</li>\n<li><p><code>fieldType</code> — <code>TEXT</code> | <code>NUMERIC</code> | <code>DATE</code> | <code>BOOLEAN</code></p>\n</li>\n<li><p><code>nature</code> — <code>MAIN_FIELD</code> | <code>ATTRIBUTE</code> | <code>SCORE</code> | <code>INDICATOR</code> | <code>FORM_FIELD</code> …</p>\n</li>\n<li><p><code>resourceType</code> — <code>THIRD_PARTY</code> | <code>DOSSIER</code> | <code>DOCUMENT</code></p>\n</li>\n<li><p><code>availableOperators</code> — operators allowed for this field</p>\n</li>\n<li><p><code>options</code> — possible values for coded fields (countries, activities, document types…)</p>\n</li>\n</ul>\n<h3 id=\"filtering-by-resource\">Filtering by resource</h3>\n<p>This endpoint takes <strong>no resource parameter</strong>: you filter client-side on each field's <code>resourceType</code>.</p>\n<blockquote>\n</blockquote>\n<p>⚠️ For reference-data, <code>accountId</code> is a <strong>query parameter</strong> — not in the URL path (unlike the search &amp; export endpoints).</p>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>accountId</code></td>\n<td>Yes</td>\n<td>Account identifier. Query parameter (not in the path).</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>Yes</td>\n<td>Labels language (`fr`, `en`…). Optional, default `fr`.</td>\n</tr>\n<tr>\n<td><code>feature</code></td>\n<td>Yes</td>\n<td>ADVANCED_SEARCH</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","reference-data","advanced-search-fields"],"host":["{{ea_api_serv}}"],"query":[{"key":"accountId","value":"{{account_id}}"},{"key":"language","value":"fr"},{"key":"feature","value":"ADVANCED_SEARCH"}],"variable":[]}},"response":[{"id":"c9f850f8-7edf-4f57-a67e-c9c3d8d77765","name":"Discover searchable fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{ea_api_serv}}/api/v1/reference-data/advanced-search-fields?accountId={{account_id}}&language=fr&feature=ADVANCED_SEARCH","host":["{{ea_api_serv}}"],"path":["api","v1","reference-data","advanced-search-fields"],"query":[{"key":"accountId","value":"{{account_id}}"},{"key":"language","value":"fr"},{"key":"feature","value":"ADVANCED_SEARCH"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"field\": \"etab_activity_sic_2\",\n        \"label\": \"etab_activity_sic_2\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"01\",\n                \"label\": \"01 - Production agricole - Cultures(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"02\",\n                \"label\": \"02 - Production agricole - Spécialités animales(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"07\",\n                \"label\": \"07 - Services agricoles(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"etab_activity_sic_3\",\n        \"label\": \"etab_activity_sic_3\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"011\",\n                \"label\": \"011 - Céréales en espèces(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"013\",\n                \"label\": \"013 - Grandes cultures, à l'exception des céréales de rente(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"016\",\n                \"label\": \"016 - Légumes et melons(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"etab_activity_sic_4\",\n        \"label\": \"etab_activity_sic_4\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"0111\",\n                \"label\": \"0111 - Blé(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"0112\",\n                \"label\": \"0112 - Riz(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"0115\",\n                \"label\": \"0115 - Maïs(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"etab_activity_sic_6\",\n        \"label\": \"etab_activity_sic_6\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"011100\",\n                \"label\": \"011100 - Blé(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"011200\",\n                \"label\": \"011200 - Riz(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"011500\",\n                \"label\": \"011500 - Maïs(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"etab_activity_sic_8\",\n        \"label\": \"etab_activity_sic_8\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"01110000\",\n                \"label\": \"01110000 - Blé(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"01120000\",\n                \"label\": \"01120000 - Riz(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"01150000\",\n                \"label\": \"01150000 - Maïs(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"etab_activity_sic_major\",\n        \"label\": \"etab_activity_sic_major\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"A\",\n                \"label\": \"A - Agriculture, sylviculture et pêche(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"B\",\n                \"label\": \"B - Industries extractives(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"C\",\n                \"label\": \"C - Construction(D&B Standard Industry Code)\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"shareCapital\",\n        \"label\": \"shareCapital\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"companyCategory\",\n        \"label\": \"companyCategory\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"turnover\",\n        \"label\": \"turnover\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"turnoverCurrency\",\n        \"label\": \"turnoverCurrency\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"XUA\",\n                \"label\": \"ADB Unit of Account\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"AFN\",\n                \"label\": \"Afghani\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"DZD\",\n                \"label\": \"Algerian Dinar\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"addressPostCode\",\n        \"label\": \"addressPostCode\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"name\",\n        \"label\": \"name\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdpartyCode\",\n        \"label\": \"thirdpartyCode\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"duns\",\n        \"label\": \"duns\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdpartyIdentifier\",\n        \"label\": \"thirdpartyIdentifier\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"vat\",\n        \"label\": \"vat\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"onboardingDate\",\n        \"label\": \"onboardingDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"workforce\",\n        \"label\": \"workforce\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"brandName\",\n        \"label\": \"brandName\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"legalForm\",\n        \"label\": \"legalForm\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"addressCountryCode\",\n        \"label\": \"addressCountryCode\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"AD\",\n                \"label\": \"AD\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"AE\",\n                \"label\": \"AE\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"AF\",\n                \"label\": \"AF\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"collectiveProceeding\",\n        \"label\": \"collectiveProceeding\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"1\",\n                \"label\": \"PCL_CONCILIATION\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"2\",\n                \"label\": \"PCL_OPENING_SAFEGUARD\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"3\",\n                \"label\": \"PCL_OPENING_RECEIVERSHIP\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"headquarter\",\n        \"label\": \"headquarter\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"true\",\n                \"label\": \"headquarters\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"false\",\n                \"label\": \"secondaryBranch\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"addressCity\",\n        \"label\": \"addressCity\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"registrationStatus\",\n        \"label\": \"registrationStatus\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"declined\",\n                \"label\": \"declined\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"invitation_expired\",\n                \"label\": \"invitation_expired\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"invited\",\n                \"label\": \"invited\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"complete\",\n        \"label\": \"complete\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"unmanaged\",\n        \"label\": \"unmanaged\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7337\",\n        \"label\": \"Boolean\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 7337,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7342\",\n        \"label\": \"Choix unique et obligatoire\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"options\": [\n            {\n                \"value\": \"1\",\n                \"label\": \"1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"2\",\n                \"label\": \"2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"3\",\n                \"label\": \"3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 7342,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7341\",\n        \"label\": \"Decimal\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 7341,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7340\",\n        \"label\": \"Entier\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 7340,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7343\",\n        \"label\": \"Multiple\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"options\": [\n            {\n                \"value\": \"1\",\n                \"label\": \"1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"2\",\n                \"label\": \"2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"3\",\n                \"label\": \"3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 7343,\n        \"multiValued\": true\n    },\n    {\n        \"field\": \"7339\",\n        \"label\": \"Pourcentage\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 7339,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7338\",\n        \"label\": \"Texte libre\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 7338,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"10360\",\n        \"label\": \"form_radio_oui\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"CALCULATED_ATTRIBUTE\",\n        \"options\": [\n            {\n                \"value\": \"FORM_RADIO_NON\",\n                \"label\": \"FORM_RADIO_NON\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"FORM_RADIO_OUI\",\n                \"label\": \"FORM_RADIO_OUI\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 10360,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"10358\",\n        \"label\": \"ITALIEN_BOOL_ATTR_OUI_FORM_RADIO_OUI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"INDICATOR\",\n        \"options\": [\n            {\n                \"value\": \"ITALIEN\",\n                \"label\": \"ITALIEN\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"NOT_ITALIEN\",\n                \"label\": \"NOT_ITALIEN\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 10358,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"libelle_qualification\",\n        \"label\": \"Libellé qualification\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 6,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"domaine_travaux\",\n        \"label\": \"Domaine travaux\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 7,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"code_qualification\",\n        \"label\": \"Code qualification\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 13,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"nom_certificat\",\n        \"label\": \"Nom certificat\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 15,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"meta_domaine\",\n        \"label\": \"Métadomaine\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 16,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"organisme\",\n        \"label\": \"Organisme\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 17,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"particulier\",\n        \"label\": \"Particulier\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 18,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"date_debut\",\n        \"label\": \"Date de début\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 52,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"date_fin\",\n        \"label\": \"Date de fin\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 53,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Action\",\n        \"label\": \"Action\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 27,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Commitment Deadline\",\n        \"label\": \"Délai d'engagement\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 29,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Status\",\n        \"label\": \"Statut\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 30,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Full target language\",\n        \"label\": \"Description de l'objectif\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 32,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Company Temperature Alignment\",\n        \"label\": \"Alignement de la température\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 33,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Target\",\n        \"label\": \"Objectif\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 34,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Scope\",\n        \"label\": \"Scope\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 36,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Target Value\",\n        \"label\": \"Valeur cible\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 37,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Base Year\",\n        \"label\": \"Année de référence\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 41,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Target Year\",\n        \"label\": \"Année cible\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 42,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date Published\",\n        \"label\": \"Date de publication\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 44,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Attestataire_de_capacité_professionnelle\",\n        \"label\": \"Attestataire de capacité professionnelle\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 80,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Numero_LTI\",\n        \"label\": \"Numéro LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 63,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_debut_validite_LTI\",\n        \"label\": \"Début de validité LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 64,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_fin_validite_LTI\",\n        \"label\": \"Fin de validité LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 65,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Nombre_de_copies_LTI_valides\",\n        \"label\": \"Nombre de copies LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 66,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Numero_LC\",\n        \"label\": \"Numéro LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 67,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_debut_validite_LC\",\n        \"label\": \"Début de validité LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 68,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_fin_validite_LC\",\n        \"label\": \"Fin de validité LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 69,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Nombre_de_copies_LC_valides\",\n        \"label\": \"Nombre de copies LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 70,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"numeroDeclarationActivite\",\n        \"label\": \"Numéro Déclaration Activité\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 120,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"certifications.actionsDeFormation\",\n        \"label\": \"QUALIOPI - Action de formation\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 129,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"certifications.bilansDeCompetences\",\n        \"label\": \"QUALIOPI - Bilan de compétences\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 130,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"certifications.VAE\",\n        \"label\": \"QUALIOPI - VAE (Validation des Acquis de l'Expérience)\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 131,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"certifications.actionsDeFormationParApprentissage\",\n        \"label\": \"QUALIOPI - Actions de formation par apprentissage\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"BOOLEAN\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 132,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.dateDerniereDeclaration\",\n        \"label\": \"Date dernière déclaration\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 138,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.debutExercice\",\n        \"label\": \"Début d’exercice\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 139,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.finExercice\",\n        \"label\": \"Fin d’exercice\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 140,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.specialitesDeFormation.codeSpecialite1\",\n        \"label\": \"Code spécialité de formation 1\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 141,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.specialitesDeFormation.libelleSpecialite1\",\n        \"label\": \"Libellé spécialité de formation 1\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 142,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.specialitesDeFormation.codeSpecialite2\",\n        \"label\": \"Code spécialité de formation 2\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 143,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.specialitesDeFormation.libelleSpecialite2\",\n        \"label\": \"Libellé spécialité de formation 2\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 144,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.specialitesDeFormation.codeSpecialite3\",\n        \"label\": \"Code spécialité de formation 3\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 145,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.specialitesDeFormation.libelleSpecialite3\",\n        \"label\": \"Libellé spécialité de formation 3\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 146,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.nbStagiaires\",\n        \"label\": \"Nombre de stagiaires\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 147,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.nbStagiairesConfiesParUnAutreOF\",\n        \"label\": \"Nombre de stagiaires confiés à l’OF par un autre OF\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 148,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"informationsDeclarees.effectifFormateurs\",\n        \"label\": \"Effectifs Formateurs\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 149,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Numero_LTI\",\n        \"label\": \"Numéro LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 90,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_de_debut_de_validite_LTI\",\n        \"label\": \"Début de validité LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 91,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_de_fin_de_validite_LTI\",\n        \"label\": \"Fin de validité LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 92,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Nombre_de_copies_LTI_valides\",\n        \"label\": \"Nombre de copies LTI\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 93,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Numero_LC\",\n        \"label\": \"Numéro LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 94,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_de_debut_de_validite_LC\",\n        \"label\": \"Début de validité LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 95,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Date_de_fin_de_validite_LC\",\n        \"label\": \"Fin de validité LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 96,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"Nombre_de_copies_LC_valides\",\n        \"label\": \"Nombre de copies LC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"THIRD_PARTY\",\n        \"nature\": \"SOURCE_DATA\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 97,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierTypeCode\",\n        \"label\": \"dossierTypeCode\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"FREE\",\n                \"label\": \"FREE\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"TYPE_DOSS_DEUX\",\n                \"label\": \"TYPE_DOSS_DEUX\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"TYPE_DOSS_TROIS\",\n                \"label\": \"TYPE_DOSS_TROIS\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierTypeId\",\n        \"label\": \"dossierTypeId\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"6575\",\n                \"label\": \"Test_type_dossier_1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"6576\",\n                \"label\": \"Test_type_dossier_2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"6577\",\n                \"label\": \"Test_type_dossier_3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierTypeName\",\n        \"label\": \"dossierTypeName\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"FREE\",\n                \"label\": \"FREE\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"Test_type_dossier_1\",\n                \"label\": \"Test_type_dossier_1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Test_type_dossier_2\",\n                \"label\": \"Test_type_dossier_2\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierReference\",\n        \"label\": \"dossierReference\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierStartDate\",\n        \"label\": \"dossierStartDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierExpirationDate\",\n        \"label\": \"dossierExpirationDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"dossierStatus\",\n        \"label\": \"dossierStatus\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"ACTION_REQUIRED\",\n                \"label\": \"ACTION_REQUIRED\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"IN_PROGRESS\",\n                \"label\": \"IN_PROGRESS\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"MISSING\",\n                \"label\": \"MISSING\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7344\",\n        \"label\": \"Multiple dossier\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOSSIER\",\n        \"nature\": \"ATTRIBUTE\",\n        \"options\": [\n            {\n                \"value\": \"1\",\n                \"label\": \"1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"2\",\n                \"label\": \"2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"3\",\n                \"label\": \"3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"IS_NULL\",\n            \"NOT_NULL\"\n        ],\n        \"id\": 7344,\n        \"multiValued\": true\n    },\n    {\n        \"field\": \"documentStatus\",\n        \"label\": \"documentStatus\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"ACTION_REQUIRED\",\n                \"label\": \"ACTION_REQUIRED\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"BELOW_EXPECTATION\",\n                \"label\": \"BELOW_EXPECTATION\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"IN_PROGRESS\",\n                \"label\": \"IN_PROGRESS\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"documentCode\",\n        \"label\": \"documentCode\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"2E2_FORM_TEST\",\n                \"label\": \"2E2_FORM_TEST\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"ASSUR_DECENNALE\",\n                \"label\": \"ASSUR_DECENNALE\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"ASSUR_RCPRO\",\n                \"label\": \"ASSUR_RCPRO\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"documentTypeId\",\n        \"label\": \"documentTypeId\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"10\",\n                \"label\": \"Attestation d’assurance décennale\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"9\",\n                \"label\": \"Attestation d’assurance responsabilité civile professionnelle\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"1448\",\n                \"label\": \"Codice di Condotta dei Fornitori GEODIS\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"documentName\",\n        \"label\": \"documentName\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Attestation d’assurance décennale\",\n                \"label\": \"Attestation d’assurance décennale\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Attestation d’assurance responsabilité civile professionnelle\",\n                \"label\": \"Attestation d’assurance responsabilité civile professionnelle\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Codice di Condotta dei Fornitori GEODIS\",\n                \"label\": \"Codice di Condotta dei Fornitori GEODIS\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"documentEndDate\",\n        \"label\": \"documentEndDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"depositDate\",\n        \"label\": \"depositDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"documentAcquisition\",\n        \"label\": \"documentAcquisition\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"FO\",\n                \"label\": \"FO\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"DO\",\n                \"label\": \"DO\",\n                \"shouldTranslate\": true\n            },\n            {\n                \"value\": \"DO_FO\",\n                \"label\": \"DO_FO\",\n                \"shouldTranslate\": true\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"6e0e3d91-fbe1-46f8-a327-2419b03fb974\",\n        \"label\": \"Votre organisation est-elle concernée par ce document ?\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Non\",\n                \"label\": \"Non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui\",\n                \"label\": \"Oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 10,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"41c97edb-4e4a-40ce-bf1b-0591fe98bde5\",\n        \"label\": \"Vous avez indiqué ne pas être tenu par l'obligation d'assurance décennale.Merci d'indiquer la raison\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 10,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"4a7f4e12-9ac5-43ac-ba8b-d96569d02e46\",\n        \"label\": \"Veuillez indiquer de quel type sont vos coordonnées bancaires\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Hors IBAN ( hors système SEPA )\",\n                \"label\": \"Hors IBAN ( hors système SEPA )\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"IBAN\",\n                \"label\": \"IBAN\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7e48f07b-84dc-4d28-b994-5677d7506e2a\",\n        \"label\": \"Le pays de la banque (Code ISO2)\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"AF\",\n                \"label\": \"AF\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"AG\",\n                \"label\": \"AG\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"AM\",\n                \"label\": \"AM\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"51014db2-d182-4775-9ba4-54b267a8dd96\",\n        \"label\": \"Devise du compte\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"AED\",\n                \"label\": \"AED\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"AFN\",\n                \"label\": \"AFN\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"ALL\",\n                \"label\": \"ALL\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"71fee423-b0c9-4009-8b4d-8cdcb7454215\",\n        \"label\": \"IBAN\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"d8645a3b-b7a1-43d4-8da6-7f7fdac1f0a2\",\n        \"label\": \"Numéro de compte\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"787de626-c0b1-4de6-b667-cf5fbc109786\",\n        \"label\": \"Code SWIFT/BIC\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"395b8610-d0f7-4ca4-800a-4f51a3df6735\",\n        \"label\": \"Code bancaire local\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"cb8d9df8-96bc-46b7-be25-3ec8c10c8164\",\n        \"label\": \"Identifiant fiscal\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 49,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"cd670c42-ee92-4427-9986-7f4da98b2e7f\",\n        \"label\": \"Test\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"non\",\n                \"label\": \"non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"oui\",\n                \"label\": \"oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4312,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"58178ac1-28cb-472d-afd0-9b0b6cb1a9b4\",\n        \"label\": \"Je suis une ligne\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"121f0032-0cd7-4c11-925f-59d7b8a7a21f\",\n        \"label\": \"Je suis un champ multiligne\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7e483f8c-bfdc-4bd3-a5bf-7237e26bd5a1\",\n        \"label\": \"Je suis un email\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"6a23b1e5-1d9d-48d1-bfd4-0b61f15adf47\",\n        \"label\": \"Radio\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"radio 1\",\n                \"label\": \"radio 1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"radio 2\",\n                \"label\": \"radio 2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"radio 3\",\n                \"label\": \"radio 3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"a682f6ff-84e7-49c7-af8a-d256ead34b0b\",\n        \"label\": \"Checkbox\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"checkbox 1\",\n                \"label\": \"checkbox 1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"checkbox 2\",\n                \"label\": \"checkbox 2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"checkbox 3\",\n                \"label\": \"checkbox 3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": true\n    },\n    {\n        \"field\": \"ad3e1de5-4648-453f-98fe-8aef2757b58a\",\n        \"label\": \"Liste déroulante\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"liste déroulante 1\",\n                \"label\": \"liste déroulante 1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"liste déroulante 2\",\n                \"label\": \"liste déroulante 2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"liste déroulante 3\",\n                \"label\": \"liste déroulante 3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"a2dd8e5e-9f7a-49fa-bfee-c55fd33fc8ad::Nom\",\n        \"label\": \"Tableau - Nom\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"a2dd8e5e-9f7a-49fa-bfee-c55fd33fc8ad::Devise\",\n        \"label\": \"Tableau - Devise\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"a2dd8e5e-9f7a-49fa-bfee-c55fd33fc8ad::Email\",\n        \"label\": \"Tableau - Email\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"a2dd8e5e-9f7a-49fa-bfee-c55fd33fc8ad::Liste dans tableau\",\n        \"label\": \"Tableau - Liste dans tableau\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"0f35ef19-69ab-49a1-872c-e8c17bf8dbed\",\n        \"label\": \"Date picker\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Après\",\n                \"label\": \"Après\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Aujourd'hui\",\n                \"label\": \"Aujourd'hui\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Avant\",\n                \"label\": \"Avant\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"f64b79cd-2fb5-4900-bda1-407883a676b0\",\n        \"label\": \"Téléphone\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"922f8560-3557-49e6-a944-6cf5da54923d\",\n        \"label\": \"Nombre\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Différent\",\n                \"label\": \"Différent\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Égal\",\n                \"label\": \"Égal\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Inférieur\",\n                \"label\": \"Inférieur\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"745406c2-5fe0-4988-afbe-d7a14a705d09\",\n        \"label\": \"Devise\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"bcb05c18-2d08-4fff-9878-84bc8cd8cd83\",\n        \"label\": \"Conditionnel\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"non\",\n                \"label\": \"non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"oui\",\n                \"label\": \"oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"be42504f-c5da-437f-a4ba-302685a4f1ed\",\n        \"label\": \"Conditionnel liste\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"non\",\n                \"label\": \"non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"oui\",\n                \"label\": \"oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"2273e623-4975-4c53-b0f0-2d127dc2dd1c\",\n        \"label\": \"Conditionnel Checkbox\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"a\",\n                \"label\": \"a\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"b\",\n                \"label\": \"b\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"c\",\n                \"label\": \"c\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": true\n    },\n    {\n        \"field\": \"eeca2b7e-8a22-48ae-bc12-521309eaaa53\",\n        \"label\": \"Email après condition\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"1edb16ed-cd90-4b70-bc5e-d810a22053e2\",\n        \"label\": \"Conditionnel section\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 4311,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"32ae7101-d301-41c2-a2ee-98a4d3788fbc\",\n        \"label\": \"Rôle partenaire\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Non\",\n                \"label\": \"Non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui\",\n                \"label\": \"Oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"4d78c23b-e91e-4167-9a00-0b152976ddc2\",\n        \"label\": \"Préciser le rôle partenaire\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Donneur d'ordre\",\n                \"label\": \"Donneur d'ordre\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Livraison\",\n                \"label\": \"Livraison\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7ef71133-f137-42de-be8a-b1d07b871f58\",\n        \"label\": \"Langue de communication\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Anglaise\",\n                \"label\": \"Anglaise\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Français\",\n                \"label\": \"Français\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"0c876bc8-3ecb-4bc9-adbd-cfcf31ef3daf\",\n        \"label\": \"Moyen de paiement\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Bank Direct Debit\",\n                \"label\": \"Bank Direct Debit\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Bank Transfer\",\n                \"label\": \"Bank Transfer\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e667ebf8-627b-4910-b94b-a02d0bc9266d\",\n        \"label\": \"Condition de paiement\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"CH01 payable immédiatement sans déduction\",\n                \"label\": \"CH01 payable immédiatement sans déduction\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"CH05 payable 60 jours fin de mois\",\n                \"label\": \"CH05 payable 60 jours fin de mois\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"CH09 30 jours date facture\",\n                \"label\": \"CH09 30 jours date facture\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"05f335dc-f521-4670-9399-1e0787f4f802\",\n        \"label\": \"Groupe client\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"10 DIVERS\",\n                \"label\": \"10 DIVERS\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"11 FRANCHISES\",\n                \"label\": \"11 FRANCHISES\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"16 E-COMMERCE\",\n                \"label\": \"16 E-COMMERCE\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"1df03a80-544c-4ace-8e6c-bed451e04950\",\n        \"label\": \"Devise\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"ADP-Peseta d'Andorre\",\n                \"label\": \"ADP-Peseta d'Andorre\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"AED-Emirat arabes unis Dirham\",\n                \"label\": \"AED-Emirat arabes unis Dirham\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"AFA-Afghani\",\n                \"label\": \"AFA-Afghani\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"00ee7e04-c7c6-4f62-92eb-4d03ed40cd7d\",\n        \"label\": \"Type de cours\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"CFM CHAUMET conversion fin de mois\",\n                \"label\": \"CFM CHAUMET conversion fin de mois\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"FRED Fred Cours fixe Whole sales\",\n                \"label\": \"FRED Fred Cours fixe Whole sales\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"26fd3f0a-f05b-439f-aa88-90e47f567252\",\n        \"label\": \"Groupe de prix\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"99 SANS RABAIS\",\n                \"label\": \"99 SANS RABAIS\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"F1 Filiale Corée\",\n                \"label\": \"F1 Filiale Corée\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"F2 Filiale Classique\",\n                \"label\": \"F2 Filiale Classique\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"81b59c4a-c52c-40fa-82f7-167eafaaf55d\",\n        \"label\": \"Schéma client\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"1 Distrib - Filiales\",\n                \"label\": \"1 Distrib - Filiales\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"2 Retail National\",\n                \"label\": \"2 Retail National\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"3 Inter-co ZITR\",\n                \"label\": \"3 Inter-co ZITR\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"b46576da-9788-4d27-957f-c54f14c28220\",\n        \"label\": \"Liste de prix\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"01 Prix Monde\",\n                \"label\": \"01 Prix Monde\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"F1 Fred Prix Cess JP\",\n                \"label\": \"F1 Fred Prix Cess JP\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"F4 Fred Prix Cess KR\",\n                \"label\": \"F4 Fred Prix Cess KR\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e1c2b917-7608-4fc1-aded-7a322e95d70f\",\n        \"label\": \"Incoterms\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"CIF Coûts, assurance et fret\",\n                \"label\": \"CIF Coûts, assurance et fret\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"CIP Port et assurance payée\",\n                \"label\": \"CIP Port et assurance payée\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"DAP Rendu au lieu de destination\",\n                \"label\": \"DAP Rendu au lieu de destination\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"d245b18e-4d38-4779-9bc5-e0955c375cc8\",\n        \"label\": \"Incoterms lieu\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"89135315-336b-43d3-a5fc-d976a1ec769c\",\n        \"label\": \"Selectionner le responsable des ventes UV\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"50016 - Florence Wong\",\n                \"label\": \"50016 - Florence Wong\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"50018 - Autres comptes actifs\",\n                \"label\": \"50018 - Autres comptes actifs\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"50021 - Ester Bille\",\n                \"label\": \"50021 - Ester Bille\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"25a6c216-2e35-454b-a1b2-c08b30430ff2\",\n        \"label\": \"Renseigner le code client de rattachement\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3587,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"8e4ea844-e9f6-4668-878d-0aafcaa53f93\",\n        \"label\": \"Employez-vous des salariés étrangers soumis à autorisation de travail sur le territoire français ?\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Non\",\n                \"label\": \"Non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui\",\n                \"label\": \"Oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"768770ba-6db7-452a-a6ea-9b8773686813::Nom\",\n        \"label\": \"En répondant oui, vous devez lister tous les salariés étrangers soumis à autorisation de travail.Les salariés dont le pays est membre de l'Union Européenne et de l'espace Schengen ne sont pas concernés par cette déclaration.Vous pouvez déclarer les salariés concernés en remplissant manuellement leurs informations dans le formulaire ci-dessous ou en déposant une liste sous format csv, xls ou xlsx (les autres formats ne sont pas acceptés). Cette liste doit contenir les informations suivantes :NomPrénomDate d'embauche (sous le format JJ/MM/AAAA)Nationalité (hors Union Européenne et espace Schengen)Type du titre de séjourNuméro du titre de séjourVous pouvez télécharger le gabarit excel ici : Template - Nom\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"768770ba-6db7-452a-a6ea-9b8773686813::Prénom\",\n        \"label\": \"En répondant oui, vous devez lister tous les salariés étrangers soumis à autorisation de travail.Les salariés dont le pays est membre de l'Union Européenne et de l'espace Schengen ne sont pas concernés par cette déclaration.Vous pouvez déclarer les salariés concernés en remplissant manuellement leurs informations dans le formulaire ci-dessous ou en déposant une liste sous format csv, xls ou xlsx (les autres formats ne sont pas acceptés). Cette liste doit contenir les informations suivantes :NomPrénomDate d'embauche (sous le format JJ/MM/AAAA)Nationalité (hors Union Européenne et espace Schengen)Type du titre de séjourNuméro du titre de séjourVous pouvez télécharger le gabarit excel ici : Template - Prénom\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"768770ba-6db7-452a-a6ea-9b8773686813::Nationalité\",\n        \"label\": \"En répondant oui, vous devez lister tous les salariés étrangers soumis à autorisation de travail.Les salariés dont le pays est membre de l'Union Européenne et de l'espace Schengen ne sont pas concernés par cette déclaration.Vous pouvez déclarer les salariés concernés en remplissant manuellement leurs informations dans le formulaire ci-dessous ou en déposant une liste sous format csv, xls ou xlsx (les autres formats ne sont pas acceptés). Cette liste doit contenir les informations suivantes :NomPrénomDate d'embauche (sous le format JJ/MM/AAAA)Nationalité (hors Union Européenne et espace Schengen)Type du titre de séjourNuméro du titre de séjourVous pouvez télécharger le gabarit excel ici : Template - Nationalité\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"768770ba-6db7-452a-a6ea-9b8773686813::Date d'embauche\",\n        \"label\": \"En répondant oui, vous devez lister tous les salariés étrangers soumis à autorisation de travail.Les salariés dont le pays est membre de l'Union Européenne et de l'espace Schengen ne sont pas concernés par cette déclaration.Vous pouvez déclarer les salariés concernés en remplissant manuellement leurs informations dans le formulaire ci-dessous ou en déposant une liste sous format csv, xls ou xlsx (les autres formats ne sont pas acceptés). Cette liste doit contenir les informations suivantes :NomPrénomDate d'embauche (sous le format JJ/MM/AAAA)Nationalité (hors Union Européenne et espace Schengen)Type du titre de séjourNuméro du titre de séjourVous pouvez télécharger le gabarit excel ici : Template - Date d'embauche\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"768770ba-6db7-452a-a6ea-9b8773686813::Type du titre de séjour\",\n        \"label\": \"En répondant oui, vous devez lister tous les salariés étrangers soumis à autorisation de travail.Les salariés dont le pays est membre de l'Union Européenne et de l'espace Schengen ne sont pas concernés par cette déclaration.Vous pouvez déclarer les salariés concernés en remplissant manuellement leurs informations dans le formulaire ci-dessous ou en déposant une liste sous format csv, xls ou xlsx (les autres formats ne sont pas acceptés). Cette liste doit contenir les informations suivantes :NomPrénomDate d'embauche (sous le format JJ/MM/AAAA)Nationalité (hors Union Européenne et espace Schengen)Type du titre de séjourNuméro du titre de séjourVous pouvez télécharger le gabarit excel ici : Template - Type du titre de séjour\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"768770ba-6db7-452a-a6ea-9b8773686813::Numéro du titre de séjour\",\n        \"label\": \"En répondant oui, vous devez lister tous les salariés étrangers soumis à autorisation de travail.Les salariés dont le pays est membre de l'Union Européenne et de l'espace Schengen ne sont pas concernés par cette déclaration.Vous pouvez déclarer les salariés concernés en remplissant manuellement leurs informations dans le formulaire ci-dessous ou en déposant une liste sous format csv, xls ou xlsx (les autres formats ne sont pas acceptés). Cette liste doit contenir les informations suivantes :NomPrénomDate d'embauche (sous le format JJ/MM/AAAA)Nationalité (hors Union Européenne et espace Schengen)Type du titre de séjourNuméro du titre de séjourVous pouvez télécharger le gabarit excel ici : Template - Numéro du titre de séjour\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 5,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"c0b74a99-af9d-494c-b5b2-e23a3fbbe56e\",\n        \"label\": \"Le tiers, emploie-t-il  des salariés étrangers soumis à autorisation de travail ?(APPLICATION DE L'ARTICLE D8254-2 DU CODE DU TRAVAIL)\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Non\",\n                \"label\": \"Non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui\",\n                \"label\": \"Oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"731f1b4a-bec4-4552-bebe-d7c06707dede\",\n        \"label\": \"Avez-vous déjà un document avec la liste des salariés étrangers soumis à autorisation de travail ?\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Non, je vais les remplir un par un\",\n                \"label\": \"Non, je vais les remplir un par un\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui, j'ai un document à déposer en pièce jointe\",\n                \"label\": \"Oui, j'ai un document à déposer en pièce jointe\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui, j'ai un fichier excel\",\n                \"label\": \"Oui, j'ai un fichier excel\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e2500ce6-7677-4ef1-825a-510f9d9199d7::Nom\",\n        \"label\": \"LISTE NOMINATIVE DES SALARIES ETRANGERS SOUMIS A AUTORISATION DE TRAVAIL - Nom\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e2500ce6-7677-4ef1-825a-510f9d9199d7::Prénom\",\n        \"label\": \"LISTE NOMINATIVE DES SALARIES ETRANGERS SOUMIS A AUTORISATION DE TRAVAIL - Prénom\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e2500ce6-7677-4ef1-825a-510f9d9199d7::Date d'embauche\",\n        \"label\": \"LISTE NOMINATIVE DES SALARIES ETRANGERS SOUMIS A AUTORISATION DE TRAVAIL - Date d'embauche\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e2500ce6-7677-4ef1-825a-510f9d9199d7::Nationalité\",\n        \"label\": \"LISTE NOMINATIVE DES SALARIES ETRANGERS SOUMIS A AUTORISATION DE TRAVAIL - Nationalité\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e2500ce6-7677-4ef1-825a-510f9d9199d7::Type de titre deséjour\",\n        \"label\": \"LISTE NOMINATIVE DES SALARIES ETRANGERS SOUMIS A AUTORISATION DE TRAVAIL - Type de titre deséjour\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e2500ce6-7677-4ef1-825a-510f9d9199d7::Numéro de titre de séjour\",\n        \"label\": \"LISTE NOMINATIVE DES SALARIES ETRANGERS SOUMIS A AUTORISATION DE TRAVAIL - Numéro de titre de séjour\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 3957,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"1109fde9-1c63-428c-b27c-1143d4af4d66\",\n        \"label\": \"Date d'échelonnement\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 6,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"83d0e720-ee1c-4985-b17a-c0599f5f4ce1\",\n        \"label\": \"Date de la dernière échéance\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 6,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"b1e5c43f-037f-4af1-a63d-33ff8a7abf6a\",\n        \"label\": \"Votre entreprise / structure emploie-t-elle des salariés ?\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Non\",\n                \"label\": \"Non\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Oui\",\n                \"label\": \"Oui\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"cf14a43f-cbbf-4ae8-b483-ce6ecee7bfe8\",\n        \"label\": \"Justificatifs à déposer :Une attestation obtenue auprès de l'URSSAF Employeur (joignable par téléphone au 3957) pour justifier que votre entreprise / structure n'emploie pas de salarié.Exemples de documents acceptés :Attestation non-employeurAttestation de radiation employeurAttestation de non-inscription en tant qu'employeurou une attestation de vigilance établie au nom propre du gérant.⚠ Attention : cas particulierSelon la forme juridique de votre entreprise, les deux justificatifs peuvent être requis. Si un document complémentaire est nécessaire, il vous sera automatiquement demandé après l'analyse du premier justificatif déposé.\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je dépose mon justificatif\",\n                \"label\": \"Je dépose mon justificatif\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Je ne suis pas en mesure de répondre à cette demande ni de fournir l'un des deux types de justificatifs requis\",\n                \"label\": \"Je ne suis pas en mesure de répondre à cette demande ni de fournir l'un des deux types de justificatifs requis\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"c4af3113-7f24-4152-9b2e-5c5b98c96a7a\",\n        \"label\": \"Justifiez de votre situation\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je déclare ne pas pouvoir obtenir une \\\"Attestation d'entreprise sans salarié\\\" (ou document équivalent), dans la mesure où mon entreprise n'emploie pas de salarié et que, malgré ma prise de contact avec l'Urssaf Employeur (3957), la délivrance de ce document m'a été refusée\",\n                \"label\": \"Je déclare ne pas pouvoir obtenir une \\\"Attestation d'entreprise sans salarié\\\" (ou document équivalent), dans la mesure où mon entreprise n'emploie pas de salarié et que, malgré ma prise de contact avec l'Urssaf Employeur (3957), la délivrance de ce document m'a été refusée\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"41941a6d-e818-4354-b5ee-33d79d0aaae8\",\n        \"label\": \"Je déclare ne pas pouvoir obtenir une attestation de vigilance en nom propre ou en tant qu'employeur pour l'une des raisons suivantes\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je suis à la retraite et, de ce fait, je ne cotise pas en nom propre\",\n                \"label\": \"Je suis à la retraite et, de ce fait, je ne cotise pas en nom propre\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"La gérance de l'entreprise est minoritaire ou égalitaire ou le gérant n'est pas associé dans la société\",\n                \"label\": \"La gérance de l'entreprise est minoritaire ou égalitaire ou le gérant n'est pas associé dans la société\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"La gérance est assurée par une ou plusieurs personnes morales, ce qui ne permet pas l'obtention d'une attestation de vigilance en nom propre\",\n                \"label\": \"La gérance est assurée par une ou plusieurs personnes morales, ce qui ne permet pas l'obtention d'une attestation de vigilance en nom propre\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"d0199575-4e20-4bb0-b03b-6f8cbcebce4a\",\n        \"label\": \"Nos contrôles ont identifié des incohérences entre les données collectées et les données attendues.Nous vous invitons à redéposer un autre document.Si vous estimez ces documents conformes et suffisants, vous pouvez cliquer sur continuer pour transmettre ces réponses aux organisations qui en ont fait la demande, afin qu'elles analysent la conformité de votre réponse.Nous vous demandons de justifier de votre déclaration dans le commentaire ci-dessous, qui sera également transmis en même temps que votre réponse.\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"cca1e689-12f9-4d4e-adc4-890bc6d202ac\",\n        \"label\": \"Nos contrôles ont identifié des incohérences entre les données collectées et les données attendues.Nous vous invitons à redéposer un autre document.Si vous estimez ces documents conformes et suffisants, vous pouvez cliquer sur continuer pour transmettre ces réponses aux organisations qui en ont fait la demande, afin qu'elles analysent la conformité de votre réponse.Nous vous demandons de justifier de votre déclaration dans le commentaire ci-dessous, qui sera également transmis en même temps que votre réponse.\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"9a5bdd85-492e-4257-ae85-bb5dd52179b0\",\n        \"label\": \"DEUXIEME DEPOT REQUIS : Attestation de vigilance en nom propreVous avez déposé une attestation d'entreprise sans salarié. Afin de compléter votre réponse, l'attestation de vigilance en nom propre émise par l'URSSAF est également requise.\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je dépose mon deuxième document\",\n                \"label\": \"Je dépose mon deuxième document\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Je ne peux pas répondre à cette deuxième demande\",\n                \"label\": \"Je ne peux pas répondre à cette deuxième demande\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"a1b11d3c-971f-4aa0-a8fa-ad223022e548\",\n        \"label\": \"Je déclare ne pas pouvoir obtenir une attestation de vigilance en nom propre ou en tant qu'employeur pour l'une des raisons suivantes\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je suis à la retraite et, de ce fait, je ne cotise pas en nom propre\",\n                \"label\": \"Je suis à la retraite et, de ce fait, je ne cotise pas en nom propre\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"La gérance de l'entreprise est minoritaire ou égalitaire ou le gérant n'est pas associé dans la société\",\n                \"label\": \"La gérance de l'entreprise est minoritaire ou égalitaire ou le gérant n'est pas associé dans la société\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"La gérance est assurée par une ou plusieurs personnes morales, ce qui ne permet pas l'obtention d'une attestation de vigilance en nom propre\",\n                \"label\": \"La gérance est assurée par une ou plusieurs personnes morales, ce qui ne permet pas l'obtention d'une attestation de vigilance en nom propre\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"e72649ae-4065-4261-b5f5-72dfd16e516a\",\n        \"label\": \"DEUXIEME DEPOT REQUIS : Attestation d'entreprise sans salariéVous avez déposé une attestation de vigilance en nom propre (URSSAF). Pour compléter votre réponse, une attestation d'entreprise sans salarié est également requise.Vous pouvez obtenir ce type de document sur simple demande à l'URSSAF :par téléphone au 3957 en communiquant le SIRET de votre entreprisevia votre messagerie sécurisée en précisant le SIRET et l'objet de la demande\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je dépose mon deuxième document\",\n                \"label\": \"Je dépose mon deuxième document\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"Je ne peux pas répondre à cette deuxième demande\",\n                \"label\": \"Je ne peux pas répondre à cette deuxième demande\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"bdf2a04c-3c63-4a9a-b7e4-4419f9dc770a\",\n        \"label\": \"Déclaration sur l'honneur\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"DOCUMENT\",\n        \"nature\": \"FORM_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Je déclare ne pas pouvoir obtenir une « Attestation d'entreprise sans salarié » (exemple : une « Attestation non-employeur », une « Attestation de radiation employeur », une « Attestation de non-inscription »), dans la mesure où je cotise en nom propre, que mon entreprise n'emploie pas de salariés et que, malgré ma prise de contact avec l'URSSAF Employeur (3957), la délivrance de ce document m'a été refusée.\",\n                \"label\": \"Je déclare ne pas pouvoir obtenir une « Attestation d'entreprise sans salarié » (exemple : une « Attestation non-employeur », une « Attestation de radiation employeur », une « Attestation de non-inscription »), dans la mesure où je cotise en nom propre, que mon entreprise n'emploie pas de salariés et que, malgré ma prise de contact avec l'URSSAF Employeur (3957), la délivrance de ce document m'a été refusée.\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 1,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"contextReference\",\n        \"label\": \"contextReference\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"contextDescription\",\n        \"label\": \"contextDescription\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"modelName\",\n        \"label\": \"modelName\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"options\": [\n            {\n                \"value\": \"Test Modele de contexte\",\n                \"label\": \"Test Modele de contexte\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"contextCreationDate\",\n        \"label\": \"contextCreationDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"contextExpirationDate\",\n        \"label\": \"contextExpirationDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"contextUpdateDate\",\n        \"label\": \"contextUpdateDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"numberOfActiveThirdParties\",\n        \"label\": \"numberOfActiveThirdParties\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"numberOfArchivedThirdParties\",\n        \"label\": \"numberOfArchivedThirdParties\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7345\",\n        \"label\": \"Entier\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"CONTEXT\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 114,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdPartyContextCreationDate\",\n        \"label\": \"thirdPartyContextCreationDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdPartyContextExpirationDate\",\n        \"label\": \"thirdPartyContextExpirationDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdPartyContextUpdateDate\",\n        \"label\": \"thirdPartyContextUpdateDate\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"DATE\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdPartyContextRank\",\n        \"label\": \"thirdPartyContextRank\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"rootThirdPartyName\",\n        \"label\": \"rootThirdPartyName\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"parentName\",\n        \"label\": \"parentName\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"thirdPartyContextRank\",\n        \"label\": \"thirdPartyContextRank\",\n        \"shouldTranslate\": true,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"MAIN_FIELD\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 114,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7346\",\n        \"label\": \"Decimal\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"NUMERIC\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"GREATER_THAN\",\n            \"GREATER_OR_EQUAL\",\n            \"LESS_THAN\",\n            \"LESS_OR_EQUAL\",\n            \"BETWEEN\",\n            \"BETWEEN_EQUAL\",\n            \"BETWEEN_LESS_EQUAL\",\n            \"BETWEEN_GREATER_EQUAL\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 114,\n        \"multiValued\": false\n    },\n    {\n        \"field\": \"7347\",\n        \"label\": \"Choix unique\",\n        \"shouldTranslate\": false,\n        \"fieldType\": \"TEXT\",\n        \"resourceType\": \"CONTEXT_THIRD_PARTY\",\n        \"nature\": \"ATTRIBUTE\",\n        \"options\": [\n            {\n                \"value\": \"1\",\n                \"label\": \"1\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"2\",\n                \"label\": \"2\",\n                \"shouldTranslate\": false\n            },\n            {\n                \"value\": \"3\",\n                \"label\": \"3\",\n                \"shouldTranslate\": false\n            }\n        ],\n        \"availableOperators\": [\n            \"EQUAL\",\n            \"NOT_EQUAL\",\n            \"CONTAINS\",\n            \"NOT_CONTAINS\",\n            \"STARTS_WITH\",\n            \"NOT_STARTS_WITH\",\n            \"ENDS_WITH\",\n            \"NOT_ENDS_WITH\",\n            \"IS_NULL\",\n            \"NOT_NULL\",\n            \"IN_SET\",\n            \"NOT_IN_SET\"\n        ],\n        \"id\": 114,\n        \"multiValued\": false\n    }\n]"}],"_postman_id":"ccb57111-a549-4034-9925-b20ca14aedde"},{"name":"Thirdparties search","id":"e701863d-7fcd-4f44-af1f-f2f6d63efcd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/third-parties/advanced-search-v2?page=0&rowPerPage=10&onboarded=true&language=fr","description":"<h2 id=\"advanced-search--third-parties\">Advanced search — Third parties</h2>\n<p>Search third parties with the criteria builder. Returns a paginated JSON envelope (<code>content</code>, <code>page</code>, <code>size</code>, <code>totalElements</code>, <code>globalCount</code>).</p>\n<h3 id=\"request-body\">Request body</h3>\n<p>Describe your search with a <code>filters</code> tree (the criteria builder: conditions combined with <code>AND</code> / <code>OR</code>), an optional <code>sort</code> and an optional <code>outputs</code> list. The same body is used by the search and the export.</p>\n<p>A group's <code>connectiveOperator</code> is <strong><code>AND</code></strong> (all conditions must be true) or <strong><code>OR</code></strong> (at least one). To <strong>mix</strong> both, nest sub-groups via <code>childGroups</code> (see the section introduction).</p>\n<h3 id=\"outputs--enriched-blocks-optional\"><code>outputs</code> — enriched blocks (optional)</h3>\n<p>By default the response is lightweight. Add values to <code>outputs</code> to include extra blocks (case-sensitive):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Adds to each result</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>scores</code></td>\n<td><code>scores</code> (Ecovadis, CreditSafe, Indued…) + <code>transparencyScore</code></td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td><code>attributeValues</code> (custom attributes)</td>\n</tr>\n<tr>\n<td><code>calculatedAttributes</code></td>\n<td><code>calculatedAttributes</code></td>\n</tr>\n<tr>\n<td><code>indicators</code></td>\n<td><code>indicators</code> (SmartPilot)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"annotated-example-cross-resource\">Annotated example (cross-resource)</h3>\n<p>The sample request searches <strong>third parties</strong> by combining conditions on <strong>three different resources</strong> (<code>AND</code> between all):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Condition</th>\n<th><code>nature</code></th>\n<th>Where to find the field and its values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>addressCountryCode = \"FR\"</code></td>\n<td>MAIN_FIELD (third party)</td>\n<td>reference-data ; <code>options</code> = ISO‑2 countries (or <code>reference-data/countries</code>)</td>\n</tr>\n<tr>\n<td><code>7337 = \"true\"</code></td>\n<td>ATTRIBUTE (third party)</td>\n<td>reference-data: <code>field</code> = <strong>attribute ID</strong>; boolean → <code>[\"true\"]</code> / <code>[\"false\"]</code></td>\n</tr>\n<tr>\n<td><code>dossierTypeCode = \"FREE\"</code></td>\n<td>MAIN_FIELD (dossier)</td>\n<td>reference-data: <code>options</code> of the <code>dossierTypeCode</code> field</td>\n</tr>\n<tr>\n<td><code>ad3e1de5-… = \"liste déroulante 2\"</code></td>\n<td>FORM_FIELD (document)</td>\n<td>reference-data: <code>field</code> = form field <strong>UUID</strong>, <code>id</code> = <code>documentTypeId</code>; <code>options</code> = list values</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n</blockquote>\n<p>All coded values (<code>options</code>) and field names/IDs come from <strong>reference-data</strong> — you invent nothing.</p>\n<p><strong>What the query returns, literally:</strong> the <strong>French</strong> third parties (<code>FR</code>), <strong>whose</strong> custom attribute \"Boolean\" (id 7337) is <code>true</code>, <strong>that have</strong> a dossier of type <code>FREE</code>, <strong>and</strong> for which a document answered \"liste déroulante 2\" to the form field \"Liste déroulante\" (id 4311). Results <strong>sorted by name</strong> (<code>name</code> ASC), with <strong>indicators</strong> and <strong>attributes</strong> included in the response.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>account_id</code></td>\n<td>-</td>\n<td><code>-</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>No</td>\n<td>Page index (0-based). Default 0.</td>\n</tr>\n<tr>\n<td><code>rowPerPage</code></td>\n<td>No</td>\n<td>Page size. Default 50.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>No</td>\n<td>Labels language. Default fr.</td>\n</tr>\n<tr>\n<td><code>onboarded</code></td>\n<td>No</td>\n<td>`true` = only onboarded third parties.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","third-parties","advanced-search-v2"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}],"variable":[]}},"response":[{"id":"0f3aae01-c300-43ef-955a-e8b3d58c705f","name":"Thirdparties search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"filters\": {\n    \"connectiveOperator\": \"AND\",\n    \"conditions\": [\n      {\n        \"field\": {\n          \"field\": \"addressCountryCode\",\n          \"fieldType\": \"TEXT\",\n          \"nature\": \"MAIN_FIELD\",\n          \"resourceType\": \"THIRD_PARTY\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"FR\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"7337\",\n          \"fieldType\": \"BOOLEAN\",\n          \"nature\": \"ATTRIBUTE\",\n          \"resourceType\": \"THIRD_PARTY\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"true\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"dossierTypeCode\",\n          \"fieldType\": \"TEXT\",\n          \"resourceType\": \"DOSSIER\",\n          \"nature\": \"MAIN_FIELD\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"FREE\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"ad3e1de5-4648-453f-98fe-8aef2757b58a\",\n          \"fieldType\": \"TEXT\",\n          \"resourceType\": \"DOCUMENT\",\n          \"nature\": \"FORM_FIELD\",\n          \"id\": 4311\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"liste déroulante 2\"\n        ]\n      }\n    ],\n    \"childGroups\": []\n  },\n  \"sort\": {\n    \"name\": \"ASC\"\n  },\n  \"outputs\": [\n    \"indicators\",\n    \"attributes\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/third-parties/advanced-search-v2?page=0&rowPerPage=10&onboarded=true&language=fr","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","third-parties","advanced-search-v2"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"content\": [\n    {\n      \"authorizingRoles\": [],\n      \"thirdpartyId\": 90871,\n      \"accountId\": 365,\n      \"companyIdType\": \"CIT001\",\n      \"siret\": \"55208131700024\",\n      \"siren\": \"552081317\",\n      \"tva\": \"FR40552081317\",\n      \"legalCategoryLabel\": \"Société par actions simplifiée\",\n      \"legalCategoryCode\": null,\n      \"activityLabel\": \"Travaux de peinture et vitrerie\",\n      \"activityCode\": \"4334Z\",\n      \"etabActivityCode\": \"4334Z\",\n      \"etabActivityType\": \"CODE_APE\",\n      \"etabActivityLabel\": \"Travaux de peinture et vitrerie\",\n      \"principals\": null,\n      \"workforce\": 10,\n      \"monitored\": true,\n      \"onboarded\": true,\n      \"unmanaged\": false,\n      \"headquarter\": true,\n      \"companyIdValue\": \"55208131700024\",\n      \"thirdpartyCode\": \"API_CRITERIA_BUILDER_TEST\",\n      \"name\": \"API\",\n      \"address\": \"12 RUE DE LA PAIX\",\n      \"addressCity\": \"LYON\",\n      \"addressPostCode\": \"69003\",\n      \"addressCountryCode\": \"FR\",\n      \"registered\": true,\n      \"registrationStatus\": \"subscribed\",\n      \"active\": true,\n      \"followingDate\": \"2026-06-22\",\n      \"thirdpartyAlerts\": \"NEANT\",\n      \"complete\": true,\n      \"thirdpartyUsers\": null,\n      \"listRegistrationNumber\": [],\n      \"attributeValues\": [\n        {\n          \"id\": 1705705,\n          \"attributeId\": 7340,\n          \"label\": \"Entier\",\n          \"type\": \"integer\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": \"2026-06-22T10:03:27.056+00:00\",\n          \"isRequired\": false,\n          \"values\": [\n            \"10\"\n          ],\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        },\n        {\n          \"id\": 1705708,\n          \"attributeId\": 7338,\n          \"label\": \"Texte libre\",\n          \"type\": \"string\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": null,\n          \"isRequired\": false,\n          \"values\": null,\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        },\n        {\n          \"id\": 1705703,\n          \"attributeId\": 7342,\n          \"label\": \"Choix unique et obligatoire\",\n          \"type\": \"list_unique\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": null,\n          \"isRequired\": true,\n          \"values\": [\n            \"1\"\n          ],\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        },\n        {\n          \"id\": 1705706,\n          \"attributeId\": 7343,\n          \"label\": \"Multiple\",\n          \"type\": \"list_multiple\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": null,\n          \"isRequired\": false,\n          \"values\": [],\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        },\n        {\n          \"id\": 1705702,\n          \"attributeId\": 7337,\n          \"label\": \"Boolean\",\n          \"type\": \"boolean\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": \"2026-06-22T10:03:22.122+00:00\",\n          \"isRequired\": false,\n          \"values\": [\n            \"true\"\n          ],\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        },\n        {\n          \"id\": 1705704,\n          \"attributeId\": 7341,\n          \"label\": \"Decimal\",\n          \"type\": \"decimal\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": null,\n          \"isRequired\": false,\n          \"values\": null,\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        },\n        {\n          \"id\": 1705707,\n          \"attributeId\": 7339,\n          \"label\": \"Pourcentage\",\n          \"type\": \"percentage\",\n          \"bondType\": \"thirdparty\",\n          \"category\": null,\n          \"creationDate\": \"2026-06-22T09:58:51.304+00:00\",\n          \"updateDate\": null,\n          \"isRequired\": false,\n          \"values\": null,\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        }\n      ],\n      \"majorFr\": \"Construction\",\n      \"majorEn\": \"Construction\",\n      \"majorCode\": \"C\",\n      \"scores\": {},\n      \"calculatedAttributes\": [],\n      \"indicators\": [\n        {\n          \"id\": 7990808,\n          \"calculationId\": 10358,\n          \"name\": \"ITALIEN_BOOL_ATTR_OUI_FORM_RADIO_OUI\",\n          \"resultType\": \"STRING\",\n          \"resultValue\": \"NOT_ITALIEN\",\n          \"resultColorCode\": \"#F6F9FBFF\",\n          \"resultLastUpdateDate\": \"2026-06-22T09:58:51.606+00:00\",\n          \"nature\": \"INDICATOR\",\n          \"targetResourceType\": \"THIRD_PARTY\",\n          \"targetResourceId\": 90871\n        }\n      ],\n      \"duns\": \"ZmFrZS1kdW5zLTAwMDA=\",\n      \"dateCreation\": \"2017-04-20\",\n      \"companyStartDate\": \"2015-05-01\",\n      \"companyClosedDate\": null,\n      \"acronym\": null,\n      \"brandName\": \"API\",\n      \"addressingName\": \"API API\",\n      \"capital\": 100000,\n      \"capitalCurrency\": \"EUR\",\n      \"ceo\": null,\n      \"turnover\": null,\n      \"turnoverCurrency\": \"EUR\",\n      \"lastBalanceSheetDate\": \"2024-12-31\",\n      \"addressStreet\": \"12 RUE DE LA PAIX\",\n      \"etabPhoneNumber\": \"0123456789\",\n      \"website\": null,\n      \"category\": \"PME\",\n      \"subCategory\": \"PE\",\n      \"hasRestrictedDisclosure\": false,\n      \"dunsEncrypted\": true\n    }\n  ],\n  \"page\": 0,\n  \"size\": 10,\n  \"totalElements\": 1,\n  \"globalCount\": 19\n}"}],"_postman_id":"e701863d-7fcd-4f44-af1f-f2f6d63efcd6"},{"name":"Dossiers search","id":"df703c79-6648-4ec8-9db6-c8b64f399771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/advanced-search-v2/export?exportType=xlsx&onboarded=true&monitored=true&language=fr","description":"<h2 id=\"advanced-search--dossiers\">Advanced search — Dossiers</h2>\n<p>Search evaluation dossiers with the criteria builder. Returns a paginated JSON envelope.</p>\n<h3 id=\"request-body\">Request body</h3>\n<p>Describe your search with a <code>filters</code> tree (the criteria builder: conditions combined with <code>AND</code> / <code>OR</code>), an optional <code>sort</code> and an optional <code>outputs</code> list. The same body is used by the search and the export.</p>\n<p>A group's <code>connectiveOperator</code> is <strong><code>AND</code></strong> (all conditions must be true) or <strong><code>OR</code></strong> (at least one). To <strong>mix</strong> both, nest sub-groups via <code>childGroups</code> (see the section introduction).</p>\n<h3 id=\"outputs--enriched-blocks-optional\"><code>outputs</code> — enriched blocks (optional)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Adds to each result</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attributes</code></td>\n<td><code>attributeValues</code> (custom attributes)</td>\n</tr>\n<tr>\n<td><code>calculatedAttributes</code></td>\n<td><code>calculatedAttributes</code></td>\n</tr>\n<tr>\n<td><code>indicators</code></td>\n<td><code>indicators</code> (SmartPilot)</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n</blockquote>\n<p><code>scores</code> exist only at the <strong>third-party</strong> level.</p>\n<h3 id=\"annotated-example-cross-resource\">Annotated example (cross-resource)</h3>\n<p>The sample searches <strong>dossiers</strong> by filtering on both the <strong>third party</strong> and the <strong>dossier</strong> (<code>AND</code> between all conditions):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Condition</th>\n<th><code>nature</code></th>\n<th>Where to find the field and its values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>addressCountryCode = \"FR\"</code></td>\n<td>MAIN_FIELD (third party)</td>\n<td>reference-data ; <code>options</code> = ISO‑2 countries</td>\n</tr>\n<tr>\n<td><code>7337 = \"true\"</code></td>\n<td>ATTRIBUTE (third party)</td>\n<td>reference-data: <code>field</code> = <strong>attribute ID</strong>; boolean</td>\n</tr>\n<tr>\n<td><code>dossierStatus = \"ACTION_REQUIRED\"</code></td>\n<td>MAIN_FIELD (dossier)</td>\n<td>reference-data: <code>options</code> of the <code>dossierStatus</code> field</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>What the query returns, literally:</strong> the <strong>dossiers</strong> with status <strong><code>ACTION_REQUIRED</code></strong>, belonging to <strong>French</strong> third parties whose attribute \"Boolean\" (id 7337) is <code>true</code>. Sorted by name, with indicators and attributes included.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>account_id</code></td>\n<td>-</td>\n<td><code>-</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>No</td>\n<td>Page index (0-based). Default 0.</td>\n</tr>\n<tr>\n<td><code>rowPerPage</code></td>\n<td>No</td>\n<td>Page size. Default 50.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>No</td>\n<td>Labels language. Default fr.</td>\n</tr>\n<tr>\n<td><code>onboarded</code></td>\n<td>No</td>\n<td>`true` = only onboarded third parties.</td>\n</tr>\n<tr>\n<td><code>monitored</code></td>\n<td>No</td>\n<td>`true` = only monitored dossiers.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","advanced-search-v2","export"],"host":["{{ea_api_serv}}"],"query":[{"key":"exportType","value":"xlsx"},{"key":"onboarded","value":"true"},{"key":"monitored","value":"true"},{"key":"language","value":"fr"}],"variable":[]}},"response":[{"id":"5484a74f-2f1c-40ad-af33-3452a7679c0c","name":"Dossiers search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"filters\": {\n    \"connectiveOperator\": \"AND\",\n    \"conditions\": [\n      {\n        \"field\": {\n          \"field\": \"addressCountryCode\",\n          \"fieldType\": \"TEXT\",\n          \"nature\": \"MAIN_FIELD\",\n          \"resourceType\": \"THIRD_PARTY\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"FR\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"7337\",\n          \"fieldType\": \"BOOLEAN\",\n          \"nature\": \"ATTRIBUTE\",\n          \"resourceType\": \"THIRD_PARTY\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"true\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"dossierStatus\",\n          \"fieldType\": \"TEXT\",\n          \"resourceType\": \"DOSSIER\",\n          \"nature\": \"MAIN_FIELD\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"ACTION_REQUIRED\"\n        ]\n      }\n    ],\n    \"childGroups\": []\n  },\n  \"sort\": {\n    \"name\": \"ASC\"\n  },\n  \"outputs\": [\n    \"indicators\",\n    \"attributes\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/third-parties/advanced-search-v2?page=0&rowPerPage=10&onboarded=true&language=fr","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","third-parties","advanced-search-v2"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"content\": [\n    {\n      \"authorizingRoles\": [],\n      \"dossierId\": 558012,\n      \"accountId\": 365,\n      \"thirdpartyId\": 90871,\n      \"thirdpartyCode\": \"API_CRITERIA_BUILDER_TEST\",\n      \"thirdpartyName\": \"API\",\n      \"thirdpartyActivityLabel\": null,\n      \"thirdpartyActivityCode\": \"4334Z\",\n      \"monitored\": true,\n      \"dossierReference\": \"API_TEST_CRITERIA_BUILDER\",\n      \"purchasingCategory\": null,\n      \"creationDate\": \"2026-06-22T11:59:33.187\",\n      \"startingDate\": null,\n      \"expirationDate\": null,\n      \"stoppingDate\": null,\n      \"deactivationReason\": null,\n      \"state\": true,\n      \"isComplete\": \"true\",\n      \"thirdpartyState\": true,\n      \"thirdpartyIdentifier\": \"55208131700024 (Siret)\",\n      \"thirdpartyCountryCode\": \"FR\",\n      \"dossierTypeCode\": null,\n      \"dossierTypeLock\": false,\n      \"dossierTypeLibelle\": null,\n      \"attributeValues\": [\n        {\n          \"id\": null,\n          \"attributeId\": 7344,\n          \"label\": \"Multiple dossier\",\n          \"type\": \"list_multiple\",\n          \"bondType\": \"dossier\",\n          \"category\": null,\n          \"creationDate\": null,\n          \"updateDate\": null,\n          \"isRequired\": false,\n          \"values\": null,\n          \"ctxModelId\": null,\n          \"referencingCalculations\": null\n        }\n      ],\n      \"calculatedAttributes\": [],\n      \"indicators\": [],\n      \"statusCode\": \"ACTION_REQUIRED\",\n      \"siren\": \"552081317\",\n      \"siret\": \"55208131700024\",\n      \"tva\": \"FR40552081317\",\n      \"duns\": \"ZmFrZS1kdW5zLTAwMDA=\",\n      \"companyIdType\": \"CIT001\",\n      \"companyIdValue\": \"55208131700024\",\n      \"thirdpartyAlerts\": \"NEANT\",\n      \"companyCountryCode\": \"FR\",\n      \"isMonitored\": \"true\",\n      \"description\": null,\n      \"stoppingReason\": \"NA\",\n      \"stateLastChangeDate\": \"2026-06-22T11:59:33.187\",\n      \"thirdpartyActive\": true,\n      \"dunsEncrypted\": true\n    }\n  ],\n  \"page\": 0,\n  \"size\": 10,\n  \"totalElements\": 1,\n  \"globalCount\": 123\n}"}],"_postman_id":"df703c79-6648-4ec8-9db6-c8b64f399771"},{"name":"Documents search","id":"82ccc13a-3963-4700-b8e9-3331073aa65d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/documents/advanced-search-v2?page=0&rowPerPage=10&onboarded=true&language=fr","description":"<h2 id=\"advanced-search--documents\">Advanced search — Documents</h2>\n<p>Search documents with the criteria builder. Returns a paginated JSON envelope, plus <code>answerableElements</code> (count of declarable documents matching the filters).</p>\n<h3 id=\"request-body\">Request body</h3>\n<p>Describe your search with a <code>filters</code> tree (the criteria builder: conditions combined with <code>AND</code> / <code>OR</code>), an optional <code>sort</code> and an optional <code>outputs</code> list. The same body is used by the search and the export.</p>\n<p>A group's <code>connectiveOperator</code> is <strong><code>AND</code></strong> (all conditions must be true) or <strong><code>OR</code></strong> (at least one). To <strong>mix</strong> both, nest sub-groups via <code>childGroups</code> (see the section introduction).</p>\n<blockquote>\n</blockquote>\n<p>Documents ignore <code>outputs</code> (no enriched blocks).</p>\n<blockquote>\n</blockquote>\n<p>⚠️ Here <code>onboarded</code> and <code>monitored</code> default to <strong><code>true</code></strong> (unlike third parties). Set them to <code>false</code> to widen the scope. <code>answerable=true</code> restricts to declarable documents.</p>\n<h3 id=\"annotated-example-cross-resource\">Annotated example (cross-resource)</h3>\n<p>The sample searches <strong>documents</strong> by filtering on the <strong>third party</strong> and the <strong>document</strong> (<code>AND</code> between all conditions):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Condition</th>\n<th><code>nature</code></th>\n<th>Where to find the field and its values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>addressCountryCode = \"FR\"</code></td>\n<td>MAIN_FIELD (third party)</td>\n<td>reference-data ; <code>options</code> = ISO‑2 countries</td>\n</tr>\n<tr>\n<td><code>7337 = \"true\"</code></td>\n<td>ATTRIBUTE (third party)</td>\n<td>reference-data: <code>field</code> = <strong>attribute ID</strong>; boolean</td>\n</tr>\n<tr>\n<td><code>documentStatus = \"ACTION_REQUIRED\"</code></td>\n<td>MAIN_FIELD (document)</td>\n<td>reference-data: <code>options</code> of the <code>documentStatus</code> field</td>\n</tr>\n<tr>\n<td><code>depositDate &gt;= \"2026-06-21\"</code></td>\n<td>MAIN_FIELD (document, DATE)</td>\n<td>ISO date <code>yyyy-MM-dd</code></td>\n</tr>\n<tr>\n<td><code>documentTypeId = \"4311\"</code></td>\n<td>MAIN_FIELD (document)</td>\n<td>reference-data: <code>options</code> of the <code>documentTypeId</code> field</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>What the query returns, literally:</strong> the <strong>documents</strong> of type <strong><code>4311</code></strong>, with status <strong><code>ACTION_REQUIRED</code></strong>, <strong>deposited since 2026-06-21</strong>, belonging to <strong>French</strong> third parties whose attribute \"Boolean\" (id 7337) is <code>true</code>.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>account_id</code></td>\n<td>-</td>\n<td><code>-</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>No</td>\n<td>Page index (0-based). Default 0.</td>\n</tr>\n<tr>\n<td><code>rowPerPage</code></td>\n<td>No</td>\n<td>Page size. Default 50.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>No</td>\n<td>Labels language. Default fr.</td>\n</tr>\n<tr>\n<td><code>onboarded</code></td>\n<td>No</td>\n<td>`true` = only onboarded third parties.</td>\n</tr>\n<tr>\n<td><code>monitored</code></td>\n<td>No</td>\n<td>`true` = only monitored dossiers.</td>\n</tr>\n<tr>\n<td><code>answerable</code></td>\n<td>No</td>\n<td>`true` = only declarable documents</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","documents","advanced-search-v2"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}],"variable":[]}},"response":[{"id":"77e2950d-a48a-4c77-befd-8fe32725a105","name":"Documents search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"filters\": {\n    \"connectiveOperator\": \"AND\",\n    \"conditions\": [\n      {\n        \"field\": {\n          \"field\": \"addressCountryCode\",\n          \"fieldType\": \"TEXT\",\n          \"nature\": \"MAIN_FIELD\",\n          \"resourceType\": \"THIRD_PARTY\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"FR\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"7337\",\n          \"fieldType\": \"BOOLEAN\",\n          \"nature\": \"ATTRIBUTE\",\n          \"resourceType\": \"THIRD_PARTY\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"true\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"documentStatus\",\n          \"fieldType\": \"TEXT\",\n          \"resourceType\": \"DOCUMENT\",\n          \"nature\": \"MAIN_FIELD\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"ACTION_REQUIRED\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"depositDate\",\n          \"fieldType\": \"DATE\",\n          \"resourceType\": \"DOCUMENT\",\n          \"nature\": \"MAIN_FIELD\"\n        },\n        \"operator\": \"GREATER_OR_EQUAL\",\n        \"values\": [\n          \"2026-06-21\"\n        ]\n      },\n      {\n        \"field\": {\n          \"field\": \"documentTypeId\",\n          \"fieldType\": \"TEXT\",\n          \"resourceType\": \"DOCUMENT\",\n          \"nature\": \"MAIN_FIELD\"\n        },\n        \"operator\": \"EQUAL\",\n        \"values\": [\n          \"4311\"\n        ]\n      }\n    ],\n    \"childGroups\": []\n  },\n  \"sort\": {\n    \"name\": \"ASC\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/third-parties/advanced-search-v2?page=0&rowPerPage=10&onboarded=true&language=fr","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","third-parties","advanced-search-v2"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"content\": [\n    {\n      \"authorizingRoles\": [],\n      \"nameFr\": \"Formulaire complet TEST\",\n      \"nameEn\": \"\",\n      \"nameEs\": \"\",\n      \"dossierId\": 558012,\n      \"documentId\": 40096731,\n      \"reponseId\": 27419892,\n      \"fileId\": 26933136,\n      \"issuer\": \"DO\",\n      \"transmitter\": \"DO\",\n      \"depositDate\": \"2026-06-22T14:10:55.458\",\n      \"depositorName\": \"MonPrenom MonNom\",\n      \"present\": true,\n      \"dossierReference\": \"API_TEST_CRITERIA_BUILDER\",\n      \"dossierTypeCode\": \"\",\n      \"dossierTypeLibelle\": \"\",\n      \"typeDocumentId\": 4311,\n      \"documentCode\": \"2E2_FORM_TEST\",\n      \"thirdpartyId\": 90871,\n      \"thirdpartyName\": \"API\",\n      \"thirdpartyIdentifier\": \"55208131700024\",\n      \"thirdpartyCode\": \"API_CRITERIA_BUILDER_TEST\",\n      \"thirdpartyActivityLabel\": \"Travaux de peinture et vitrerie\",\n      \"statusCode\": \"ACTION_REQUIRED\",\n      \"statusReason\": \"\",\n      \"statusReasonDetail\": \"\",\n      \"statusActorEmail\": \"\",\n      \"acquisition\": \"DO_FO\",\n      \"hierarchicalOrder\": 0,\n      \"refusedToFile\": false\n    }\n  ],\n  \"page\": 0,\n  \"size\": 10,\n  \"totalElements\": 1,\n  \"globalCount\": 35,\n  \"answerableElements\": 1\n}"}],"_postman_id":"82ccc13a-3963-4700-b8e9-3331073aa65d"},{"name":"Thirdparties export","id":"4128b633-dbe7-4063-b7f2-b20a54b6177b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/advanced-search-v2/export?exportType=xlsx&onboarded=true&language=fr","description":"<h2 id=\"export--third-parties\">Export — Third parties</h2>\n<p>Twin of the search endpoint: applies the <strong>same filters</strong> (<code>filters</code> / <code>sort</code> / <code>outputs</code>) but returns a <strong>file</strong> instead of paginated JSON. <code>exportType</code> (<code>csv</code> / <code>xls</code> / <code>xlsx</code>) is <strong>required</strong>.</p>\n<h3 id=\"columnsvisibility--choosing-columns\"><code>columnsVisibility</code> — choosing columns</h3>\n<p>An <strong>opt-out</strong> map: by default <strong>all columns are exported</strong>, you only list those to <strong>hide</strong> with <code>false</code>. A column set to <code>true</code> or absent stays visible; omitting <code>columnsVisibility</code> exports everything.</p>\n<p>Column codes are <strong>fixed per resource</strong>. Columns coming from <code>outputs</code> are hidden with a prefixed code: <code>attribute-</code>, <code>calculatedAttribute-</code>, <code>indicator-</code>.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>account_id</code></td>\n<td>-</td>\n<td><code>-</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>exportType</code></td>\n<td>Yes</td>\n<td>File format: `csv`, `xls` or `xlsx`.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>No</td>\n<td>Labels &amp; column headers language. Default fr.</td>\n</tr>\n<tr>\n<td><code>onboarded</code></td>\n<td>No</td>\n<td>`true` = only onboarded third parties.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","advanced-search-v2","export"],"host":["{{ea_api_serv}}"],"query":[{"key":"exportType","value":"xlsx"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}],"variable":[]}},"response":[],"_postman_id":"4128b633-dbe7-4063-b7f2-b20a54b6177b"},{"name":"Dossiers export","id":"33f041bf-fca9-4af4-be82-10baaaee567c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/advanced-search-v2?page=0&rowPerPage=10&onboarded=true&monitored=true&language=fr","description":"<h2 id=\"export--dossiers\">Export — Dossiers</h2>\n<p>Twin of the search endpoint: applies the <strong>same filters</strong> (<code>filters</code> / <code>sort</code> / <code>outputs</code>) but returns a <strong>file</strong> instead of paginated JSON. <code>exportType</code> (<code>csv</code> / <code>xls</code> / <code>xlsx</code>) is <strong>required</strong>.</p>\n<h3 id=\"columnsvisibility--choosing-columns\"><code>columnsVisibility</code> — choosing columns</h3>\n<p>An <strong>opt-out</strong> map: by default <strong>all columns are exported</strong>, you only list those to <strong>hide</strong> with <code>false</code>. A column set to <code>true</code> or absent stays visible; omitting <code>columnsVisibility</code> exports everything.</p>\n<p>Column codes are <strong>fixed per resource</strong>. Columns coming from <code>outputs</code> are hidden with a prefixed code: <code>attribute-</code>, <code>calculatedAttribute-</code>, <code>indicator-</code>.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>account_id</code></td>\n<td>-</td>\n<td><code>-</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>exportType</code></td>\n<td>Yes</td>\n<td>File format: `csv`, `xls` or `xlsx`.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>No</td>\n<td>Labels &amp; column headers language. Default fr.</td>\n</tr>\n<tr>\n<td><code>onboarded</code></td>\n<td>No</td>\n<td>`true` = only onboarded third parties.</td>\n</tr>\n<tr>\n<td><code>monitored</code></td>\n<td>No</td>\n<td>`true` = only monitored dossiers.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","advanced-search-v2"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"10"},{"key":"onboarded","value":"true"},{"key":"monitored","value":"true"},{"key":"language","value":"fr"}],"variable":[]}},"response":[],"_postman_id":"33f041bf-fca9-4af4-be82-10baaaee567c"},{"name":"Documents export","id":"62eeec10-f1e2-452e-8a88-2403d92cc010","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/documents/advanced-search-v2/export?exportType=xlsx&onboarded=true&language=fr","description":"<h2 id=\"export--documents\">Export — Documents</h2>\n<p>Twin of the search endpoint: applies the <strong>same filters</strong> (<code>filters</code> / <code>sort</code> / <code>outputs</code>) but returns a <strong>file</strong> instead of paginated JSON. <code>exportType</code> (<code>csv</code> / <code>xls</code> / <code>xlsx</code>) is <strong>required</strong>.</p>\n<h3 id=\"columnsvisibility--choosing-columns\"><code>columnsVisibility</code> — choosing columns</h3>\n<p>An <strong>opt-out</strong> map: by default <strong>all columns are exported</strong>, you only list those to <strong>hide</strong> with <code>false</code>. A column set to <code>true</code> or absent stays visible; omitting <code>columnsVisibility</code> exports everything.</p>\n<p>Column codes are <strong>fixed per resource</strong>. Columns coming from <code>outputs</code> are hidden with a prefixed code: <code>attribute-</code>, <code>calculatedAttribute-</code>, <code>indicator-</code>.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>account_id</code></td>\n<td>-</td>\n<td><code>-</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>exportType</code></td>\n<td>Yes</td>\n<td>File format: `csv`, `xls` or `xlsx`.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>No</td>\n<td>Labels &amp; column headers language. Default fr.</td>\n</tr>\n<tr>\n<td><code>onboarded</code></td>\n<td>No</td>\n<td>`true` = only onboarded third parties.</td>\n</tr>\n<tr>\n<td><code>monitored</code></td>\n<td>No</td>\n<td>`true` = only monitored dossiers.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","documents","advanced-search-v2","export"],"host":["{{ea_api_serv}}"],"query":[{"key":"exportType","value":"xlsx"},{"key":"onboarded","value":"true"},{"key":"language","value":"fr"}],"variable":[]}},"response":[],"_postman_id":"62eeec10-f1e2-452e-8a88-2403d92cc010"}],"id":"5b018b23-f536-4742-be8e-4ee5a314aa54","description":"<p>Query your <strong>third parties</strong>, <strong>dossiers</strong> and <strong>documents</strong> with a <em>criteria builder</em>: a tree of boolean conditions (<code>AND</code> / <code>OR</code>) that you compose freely, over any field available for your account.</p>\n<blockquote>\n</blockquote>\n<p>📖 For an illustrated, step-by-step walkthrough of the concepts, see the <a href=\"https://developers.aprovall.com/guides/concepts/advanced-search\">Advanced Search concept guide</a>.</p>\n<h3 id=\"how-it-works--3-steps\">How it works — 3 steps</h3>\n<ol>\n<li><p><strong>Discover the filterable fields</strong> — first call <strong><code>reference-data</code></strong> (endpoint below). It returns, for your account, the list of fields you can filter on, each with: its technical name (<code>field</code>), type (<code>fieldType</code>), nature (<code>nature</code>), resource (<code>resourceType</code>), allowed operators (<code>availableOperators</code>) and, for coded fields, the possible values (<code>options</code>).</p>\n</li>\n<li><p><strong>Build the query</strong> — copy these descriptors into the conditions of your <code>filters</code> tree (see \"Anatomy of a condition\" below). Each condition's <code>field</code> <strong>always comes from reference-data</strong>: you never invent a field name or a coded value.</p>\n</li>\n<li><p><strong>Search or export</strong> — send the request to the search endpoint of the target resource (Third parties / Dossiers / Documents), or to its <strong>export twin</strong> to get a file.</p>\n</li>\n</ol>\n<h3 id=\"anatomy-of-a-condition\">Anatomy of a condition</h3>\n<p>A condition = a <strong>field</strong> + an <strong>operator</strong> + <strong>values</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"field\": {\n    \"field\": \"addressCountryCode\",\n    \"fieldType\": \"TEXT\",\n    \"nature\": \"MAIN_FIELD\",\n    \"resourceType\": \"THIRD_PARTY\"\n  },\n  \"operator\": \"EQUAL\",\n  \"values\": [\"FR\"]\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Role</th>\n<th>Where to find it</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>field.field</code></td>\n<td>Field technical name</td>\n<td><code>field</code> in reference-data</td>\n</tr>\n<tr>\n<td><code>field.fieldType</code></td>\n<td><code>TEXT</code> · <code>NUMERIC</code> · <code>DATE</code> · <code>BOOLEAN</code></td>\n<td><code>fieldType</code> in reference-data</td>\n</tr>\n<tr>\n<td><code>field.nature</code></td>\n<td><code>MAIN_FIELD</code> · <code>ATTRIBUTE</code> · <code>SCORE</code> · <code>CALCULATED_ATTRIBUTE</code> · <code>INDICATOR</code> · <code>FORM_FIELD</code></td>\n<td><code>nature</code> in reference-data</td>\n</tr>\n<tr>\n<td><code>field.resourceType</code></td>\n<td><code>THIRD_PARTY</code> · <code>DOSSIER</code> · <code>DOCUMENT</code></td>\n<td><code>resourceType</code> in reference-data</td>\n</tr>\n<tr>\n<td><code>field.id</code></td>\n<td>Required for <code>ATTRIBUTE</code> / <code>CALCULATED_ATTRIBUTE</code> / <code>INDICATOR</code> / <code>FORM_FIELD</code></td>\n<td><code>id</code> in reference-data</td>\n</tr>\n<tr>\n<td><code>operator</code></td>\n<td>Comparison operator</td>\n<td>the field's <code>availableOperators</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td>Values — <strong>always strings</strong>: <code>[\"FR\"]</code>, <code>[\"50\"]</code>, <code>[\"true\"]</code>, <code>[\"2026-01-01\"]</code></td>\n<td>the field's <code>options</code> (coded fields)</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n</blockquote>\n<p>A condition can target a <strong>resource other</strong> than the one queried (cross-resource filtering) via its <code>resourceType</code> — e.g. find third parties that have a dossier of a given type.</p>\n<h3 id=\"filter-groups-childgroups-nested-and--or\">Filter groups: <code>childGroups</code> (nested AND / OR)</h3>\n<p>A group has <strong>a single</strong> <code>connectiveOperator</code> (<code>AND</code> or <code>OR</code>) that joins <strong>all</strong> its <code>conditions</code> <strong>and</strong> all its <code>childGroups</code>. To <strong>mix</strong> AND and OR, <strong>nest</strong> sub-groups in <code>childGroups</code> — depth is unlimited.</p>\n<p>Example — third parties <strong>FR AND (headcount ≥ 50 OR turnover ≥ 1,000,000)</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"filters\": {\n    \"connectiveOperator\": \"AND\",\n    \"conditions\": [\n      {\n        \"field\": { \"field\": \"addressCountryCode\", \"fieldType\": \"TEXT\", \"nature\": \"MAIN_FIELD\", \"resourceType\": \"THIRD_PARTY\" },\n        \"operator\": \"EQUAL\",\n        \"values\": [\"FR\"]\n      }\n    ],\n    \"childGroups\": [\n      {\n        \"connectiveOperator\": \"OR\",\n        \"conditions\": [\n          {\n            \"field\": { \"field\": \"workforce\", \"fieldType\": \"NUMERIC\", \"nature\": \"MAIN_FIELD\", \"resourceType\": \"THIRD_PARTY\" },\n            \"operator\": \"GREATER_OR_EQUAL\",\n            \"values\": [\"50\"]\n          },\n          {\n            \"field\": { \"field\": \"turnover\", \"fieldType\": \"NUMERIC\", \"nature\": \"MAIN_FIELD\", \"resourceType\": \"THIRD_PARTY\" },\n            \"operator\": \"GREATER_OR_EQUAL\",\n            \"values\": [\"1000000\"]\n          }\n        ],\n        \"childGroups\": []\n      }\n    ]\n  }\n}\n\n</code></pre>\n<p>The root group applies <code>AND</code> between the \"country = FR\" condition and the sub-group; the sub-group applies <code>OR</code> between its two conditions.</p>\n","_postman_id":"5b018b23-f536-4742-be8e-4ee5a314aa54","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"(Deprecated) Advanced search","item":[{"name":"Third parties","id":"86fbb2f4-5bcb-442a-bf0e-b6bf4bd6ec13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/advanced-search?page=0&rowPerPage=50&onboarded=true","description":"<p>Paginated and filtered search of third parties for an account with filters on countries, custom attributes, indicators, and scores. Allows retrieval of detailed information including rating data (ESG scores, financial, security, etc.) and business attributes.</p>\n<p><strong>Endpoint</strong>: POST /api/v1/account/{accountId}/thirdparties/advanced-search</p>\n<hr />\n<h2 id=\"parameters\">Parameters</h2>\n<h3 id=\"path-parameters\">Path Parameters</h3>\n<p><strong>accountId</strong> (Long, required) - Unique identifier of the prime contractor account</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><strong>page</strong> (int, optional, default: 0) - Page number (starts at 0)</p>\n<p><strong>rowPerPage</strong> (int, optional, default: 50) - Number of results per page</p>\n<p><strong>onboarded</strong> (Boolean, optional) - Filter on onboarded third parties (true) or archived (false)</p>\n<hr />\n<h2 id=\"request-body\">Request Body</h2>\n<h3 id=\"main-structure\">Main Structure</h3>\n<p><strong>filters</strong> (Object, required) - Object containing filtering criteria</p>\n<p><strong>filters.thirdparties</strong> (Array, required) - List of third party search filters</p>\n<hr />\n<h3 id=\"available-filters-in-thirdparties\">Available Filters in thirdparties[]</h3>\n<h3 id=\"🔍-identification\">🔍 Identification</h3>\n<p><strong>name</strong> (String) - Third party name (partial search, case-insensitive)</p>\n<p><strong>code</strong> (String) - Custom third party code</p>\n<p><strong>companyIdType</strong> (String) - Company identifier type. Possible values:</p>\n<ul>\n<li><p>\"CIT001\" : Identifier (SIREN or SIRET)</p>\n</li>\n<li><p>\"CIT002\" : VAT number</p>\n</li>\n<li><p>\"CIT003\" : DUNS</p>\n</li>\n</ul>\n<p><strong>identifier</strong> (String) - Company identifier value (used with companyIdType)</p>\n<hr />\n<h3 id=\"🌍-geography-and-activity\">🌍 Geography and Activity</h3>\n<p><strong>countries</strong> (Array) - List of ISO Alpha-2 country codes (\"FR\", \"DE\", \"IT\", etc.)</p>\n<p><strong>departments</strong> (Array) - French department codes (\"75\", \"92\", \"2A\", \"2B\", etc.)</p>\n<p><strong>majorActivities</strong> (Array) - Main activity sector codes (major APE codes)</p>\n<hr />\n<h3 id=\"📊-status-and-qualification\">📊 Status and Qualification</h3>\n<p><strong>contacts</strong> (Array) - ⚠️ WARNING: Despite its name, this parameter filters on the third party's registration status. Possible values (lowercase):</p>\n<ul>\n<li><p>\"subscribed\" : Registered third party</p>\n</li>\n<li><p>\"invited\" : Invited third party</p>\n</li>\n<li><p>\"not_invited\" : Not invited third party</p>\n</li>\n</ul>\n<p><strong>complete</strong> (Boolean) - Third party with complete data</p>\n<ul>\n<li><p>true : Third party in COMPLET state</p>\n</li>\n<li><p>false : Third party in INCOMPLET or SANS_CONTRAT_EN_COURS state</p>\n</li>\n</ul>\n<p><strong>unmanaged</strong> (Boolean) - Filter on data origin</p>\n<ul>\n<li><p>true : Unmanaged third parties (origin UNMANAGED)</p>\n</li>\n<li><p>false : Managed third parties (origin DNB or ALTARES)</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🏷️-business-attributes-and-indicators\">🏷️ Business Attributes and Indicators</h3>\n<p><strong>attributes</strong> (Map&gt;) - Filters on custom attributes</p>\n<ul>\n<li><p>Key: Attribute name (label)</p>\n</li>\n<li><p>Value: List of accepted values (OR operator between values)</p>\n</li>\n</ul>\n<p><strong>calculatedAttributes</strong> (Map&gt;) - Filters on calculated attributes</p>\n<ul>\n<li><p>Key: Calculated attribute name</p>\n</li>\n<li><p>Value: List of values</p>\n</li>\n</ul>\n<p><strong>indicators</strong> (Map&gt;) - Filters on calculated indicators</p>\n<ul>\n<li><p>Key: Indicator name</p>\n</li>\n<li><p>Value: List of values or ranges (e.g., [\"0-50\", \"51-100\"])</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⭐-scores-and-ratings\">⭐ Scores and Ratings</h3>\n<p><strong>scores</strong> (Object, optional) - Filters on rating scores</p>\n<h4 id=\"transparency-scores\">Transparency Scores</h4>\n<p><strong>transparency</strong> (Array) - Transparency level by country</p>\n<ul>\n<li>Values: \"HIGH\", \"MEDIUM\", \"LOW\", \"NP\" (not published)</li>\n</ul>\n<h4 id=\"financial-scores\">Financial Scores</h4>\n<p><strong>financialStrengthScore</strong> (Array) - Financial risk segment</p>\n<ul>\n<li>Values: \"LOW_RISK\", \"MEDIUM_RISK\", \"HIGH_RISK\"</li>\n</ul>\n<p><strong>financialStrengthRating</strong> (Array) - Financial rating (e.g., [\"N1\", \"N2\"])</p>\n<h4 id=\"esg-scores-environment-social-governance\">ESG Scores (Environment, Social, Governance)</h4>\n<p><strong>esgScore</strong> (Array) - Overall ESG scores (0-100)</p>\n<p><strong>esgDepth</strong> (Array) - ESG data depth</p>\n<ul>\n<li>Values: \"A\", \"B\", \"C\", \"D\"</li>\n</ul>\n<p><strong>esgRiskEnvironment</strong> (Array) - Environmental risk score (0-100)</p>\n<p><strong>esgRiskSocial</strong> (Array) - Social risk score (0-100)</p>\n<p><strong>esgRiskGovernance</strong> (Array) - Governance risk score (0-100)</p>\n<h4 id=\"other-scores\">Other Scores</h4>\n<p><strong>indued</strong> (Map&gt;) - Indued scores (due diligence)</p>\n<ul>\n<li><p>Key: Indued score identifier</p>\n</li>\n<li><p>Value: List of severities</p>\n</li>\n</ul>\n<p><strong>ecovadis</strong> (Map&gt;) - EcoVadis scores (CSR)</p>\n<ul>\n<li><p>Key: EcoVadis score identifier</p>\n</li>\n<li><p>Value: List of performances</p>\n</li>\n</ul>\n<p><strong>securityRating</strong> (Map&gt;) - Cybersecurity scores</p>\n<ul>\n<li><p>Key: Score identifier</p>\n</li>\n<li><p>Value: List of values</p>\n</li>\n</ul>\n<p><strong>creditsafe</strong> (Map&gt;) - Creditsafe scores (credit)</p>\n<ul>\n<li><p>Key: Creditsafe score identifier</p>\n</li>\n<li><p>Value: List of values</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🔌-external-sources\">🔌 External Sources</h3>\n<p><strong>dataHub</strong> (Map&gt;) - Filters on external DataHub data</p>\n<ul>\n<li><p>Key: DataHub field ID (as string)</p>\n</li>\n<li><p>Value: List of accepted values</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🔧-sorting-and-display-options\">🔧 Sorting and Display Options</h3>\n<p><strong>sort</strong> (Map, optional) - Result sorting</p>\n<ul>\n<li><p>Key: Field name to sort by</p>\n</li>\n<li><p>Value: Sort direction (\"asc\" or \"desc\")</p>\n</li>\n<li><p>Example: {\"followingDate\": \"desc\", \"name\": \"asc\"}</p>\n</li>\n<li><p>Special supports:</p>\n<ul>\n<li><p>\"attribute-{label}\" : Sort by custom attribute</p>\n</li>\n<li><p>\"indicator-{label}\" : Sort by indicator</p>\n</li>\n<li><p>\"calculatedAttribute-{label}\" : Sort by calculated attribute</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>outputs</strong> (Array, optional) - Additional data to include in response</p>\n<ul>\n<li><p>Possible values:</p>\n<ul>\n<li><p>\"scores\" : Include all rating scores</p>\n</li>\n<li><p>\"attributes\" : Include detailed attribute values</p>\n</li>\n<li><p>\"calculatedAttributes\" : Include calculated attributes</p>\n</li>\n<li><p>\"indicators\" : Include indicators</p>\n</li>\n</ul>\n</li>\n<li><p>Important: Without this option, only basic data is returned</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","thirdparties","advanced-search"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"50"},{"key":"onboarded","value":"true"}],"variable":[]}},"response":[{"id":"c693c509-2c99-47a2-a3c8-33b256f492ab","name":"Third parties","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"filters\":{\n      \"thirdparties\":[\n         {\n            \"scores\":{\n               \n            },\n            \"countries\":[\n               \"FR\"\n            ],\n            \"attributes\":{\n               \"E. Intervention on site\":[\n                  \"true\"\n               ],\n               \"F. Third party statuts\":[\n                  \"Customer\"\n               ]\n            }\n         }\n      ]\n   },\n   \"sort\":{\n      \"followingDate\":\"desc\"\n   },\n   \"outputs\":[\n      \"scores\",\n      \"attributes\",\n      \"calculatedAttributes\",\n      \"indicators\"\n   ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/advanced-search?onboarded=true&page=0&rowPerPage=50","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties","advanced-search"],"query":[{"key":"onboarded","value":"true"},{"key":"page","value":"0"},{"key":"rowPerPage","value":"50"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"authorizingRoles\": [],\n            \"thirdpartyId\": 12345,\n            \"accountId\": 100001,\n            \"companyIdType\": \"CIT001\",\n            \"siret\": \"12345678900012\",\n            \"siren\": \"123456789\",\n            \"tva\": \"FR12123456789\",\n            \"legalCategoryLabel\": \"SASU Société par actions simplifiée à associé unique\",\n            \"legalCategoryCode\": null,\n            \"activityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"activityCode\": \"7022Z\",\n            \"etabActivityCode\": \"7022Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Conseil pour les affaires et autres conseils de gestion\",\n            \"principals\": null,\n            \"workforce\": 1072,\n            \"monitored\": true,\n            \"onboarded\": true,\n            \"unmanaged\": false,\n            \"headquarter\": true,\n            \"companyIdValue\": \"12345678900012\",\n            \"thirdpartyCode\": null,\n            \"name\": \"ACME CONSULTING SAS\",\n            \"address\": \"123 RUE DE LA PAIX\",\n            \"addressCity\": \"PARIS\",\n            \"addressPostCode\": \"75001\",\n            \"addressCountryCode\": \"FR\",\n            \"registered\": true,\n            \"registrationStatus\": \"subscribed\",\n            \"active\": true,\n            \"followingDate\": \"2024-11-21\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"complete\": true,\n            \"thirdpartyUsers\": null,\n            \"listRegistrationNumber\": [],\n            \"attributeValues\": [\n                {\n                    \"id\": 1001,\n                    \"attributeId\": 1086,\n                    \"label\": \"C. Criticité\",\n                    \"type\": \"boolean\",\n                    \"bondType\": \"thirdparty\",\n                    \"creationDate\": \"2024-11-21T10:41:57.153+00:00\",\n                    \"updateDate\": \"2024-11-21T10:45:44.071+00:00\",\n                    \"isRequired\": null,\n                    \"values\": [\n                        \"true\"\n                    ],\n                    \"ctxModelId\": null,\n                    \"referencingCalculations\": null\n                }\n            ],\n            \"majorFr\": \"Services\",\n            \"majorEn\": \"Services\",\n            \"majorCode\": \"I\",\n            \"scores\": {\n                \"datablocks_financial_strength\": {\n                    \"rating\": \"N2\",\n                    \"riskLevel\": \"low\"\n                },\n                \"datablocks_esg\": {\n                    \"score\": \"2\",\n                    \"esgDataDepth\": \"A\",\n                    \"environmentalRankingScore\": 2,\n                    \"socialRankingScore\": 3,\n                    \"governanceRankingScore\": 2,\n                    \"noDataAvailable\": false\n                },\n                \"security_rating\": {\n                    \"reference\": null,\n                    \"account_reference\": null,\n                    \"company_reference\": null,\n                    \"cartography_reference\": null,\n                    \"date\": null,\n                    \"activity_v3\": null,\n                    \"audit_type\": null,\n                    \"asset_count\": null,\n                    \"score\": null,\n                    \"attack_surface_score\": null,\n                    \"mail_score\": null,\n                    \"web_score\": null,\n                    \"vulnerability_score\": null,\n                    \"vulnerability_snapshot_score\": null,\n                    \"security_control_score\": null,\n                    \"security_incident_score\": null,\n                    \"global_score\": null,\n                    \"sector_score\": null,\n                    \"rating_period\": null,\n                    \"ip_providers\": null,\n                    \"activity_ip_providers\": null,\n                    \"all_ip_providers\": null,\n                    \"segments\": null,\n                    \"asset_size\": null,\n                    \"maturity_level\": null\n                },\n                \"ecovadis\": {\n                    \"ev_data\": null,\n                    \"error\": null,\n                    \"error_message\": null,\n                    \"main_integration_id\": null\n                },\n                \"creditsafe\": {\n                    \"companyId\": null,\n                    \"date\": null,\n                    \"internationalScore\": null,\n                    \"previousInternationalScore\": null,\n                    \"nationalScoreValue\": null,\n                    \"nationalScoreMax\": null,\n                    \"creditLimit\": null,\n                    \"creditLimitValue\": null,\n                    \"creditLimitCurrency\": null,\n                    \"companyExposure\": null,\n                    \"activityExposure\": null,\n                    \"preferentialStatus\": null,\n                    \"dbt\": null,\n                    \"financialStrength\": null,\n                    \"countryCode\": null,\n                    \"error\": null\n                },\n                \"indued\": {\n                    \"due_diligence_id\": \"1234567\",\n                    \"due_diligence\": {\n                        \"status\": \"fpm_in_progress\",\n                        \"fpm_url\": \"https://...\",\n                        \"compliance_score\": 7,\n                        \"country_score\": 1,\n                        \"activity_score\": 2,\n                        \"state\": \"active\",\n                        \"pep_score\": 1,\n                        \"sanctions_score\": 1,\n                        \"adverse_media_score\": 3,\n                        \"risk_event_score\": 3,\n                        \"report_url\": null,\n                        \"risk_level\": 3,\n                        \"workflow_status\": null,\n                        \"failure_score\": null,\n                        \"creation_time\": \"2024-11-21T10:41:59.895+00:00\",\n                        \"report_time\": null,\n                        \"screening_time\": \"2024-11-21T10:42:17.482+00:00\",\n                        \"enrichment_time\": \"2024-11-21T10:42:10.340+00:00\"\n                    },\n                    \"report_id\": null,\n                    \"report_data\": null,\n                    \"created_date\": \"2024-11-21T10:41:59.451+00:00\",\n                    \"error\": null\n                }\n            },\n            \"calculatedAttributes\": [\n                {\n                    \"id\": 4001,\n                    \"calculationId\": 99,\n                    \"name\": \"Profil de Risque\",\n                    \"resultType\": \"STRING\",\n                    \"resultValue\": \"Risque Moyen\",\n                    \"resultColorCode\": \"#fcb900\",\n                    \"resultLastUpdateDate\": \"2024-11-21T10:41:57.308+00:00\",\n                    \"nature\": \"CALCULATED_ATTRIBUTE\",\n                    \"targetResourceType\": \"THIRD_PARTY\",\n                    \"targetResourceId\": 12345\n                }\n            ],\n            \"indicators\": [\n                {\n                    \"id\": 5001,\n                    \"calculationId\": 101,\n                    \"name\": \"Risque Financier\",\n                    \"resultType\": \"STRING\",\n                    \"resultValue\": \"Risque Faible\",\n                    \"resultColorCode\": \"#00d084\",\n                    \"resultLastUpdateDate\": \"2024-11-21T10:45:45.975+00:00\",\n                    \"nature\": \"INDICATOR\",\n                    \"targetResourceType\": \"THIRD_PARTY\",\n                    \"targetResourceId\": 12345\n                }\n            ],\n            \"transparencyScore\": 67,\n            \"duns\": \"123456789\",\n            \"dateCreation\": \"2012-02-29\",\n            \"companyStartDate\": \"2002-08-01\",\n            \"companyClosedDate\": null,\n            \"acronym\": null,\n            \"brandName\": null,\n            \"addressingName\": \"ACME CONSULTING SAS\",\n            \"capital\": 14300000,\n            \"capitalCurrency\": \"EUR\",\n            \"ceo\": null,\n            \"turnover\": 224524062,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2024-12-31\",\n            \"addressStreet\": \"123 RUE DE LA PAIX\",\n            \"etabPhoneNumber\": \"0123456789\",\n            \"website\": null,\n            \"category\": \"ETI\",\n            \"subCategory\": \"AE\",\n            \"hasRestrictedDisclosure\": false,\n            \"dunsEncrypted\": false\n        },\n        {\n            \"authorizingRoles\": [],\n            \"thirdpartyId\": 67890,\n            \"accountId\": 100001,\n            \"companyIdType\": \"CIT001\",\n            \"siret\": \"98765432100012\",\n            \"siren\": \"987654321\",\n            \"tva\": \"FR98987654321\",\n            \"legalCategoryLabel\": \"Société par actions simplifiée\",\n            \"legalCategoryCode\": null,\n            \"activityLabel\": \"Activités des agences de travail temporaire\",\n            \"activityCode\": \"7820Z\",\n            \"etabActivityCode\": \"7820Z\",\n            \"etabActivityType\": \"CODE_APE\",\n            \"etabActivityLabel\": \"Activités des agences de travail temporaire\",\n            \"principals\": null,\n            \"workforce\": 75055,\n            \"monitored\": true,\n            \"onboarded\": true,\n            \"unmanaged\": false,\n            \"headquarter\": true,\n            \"companyIdValue\": \"98765432100012\",\n            \"thirdpartyCode\": null,\n            \"name\": \"GLOBAL SERVICES FRANCE\",\n            \"address\": \"456 AVENUE DES CHAMPS\",\n            \"addressCity\": \"LYON\",\n            \"addressPostCode\": \"69001\",\n            \"addressCountryCode\": \"FR\",\n            \"registered\": true,\n            \"registrationStatus\": \"subscribed\",\n            \"active\": true,\n            \"followingDate\": \"2024-02-27\",\n            \"thirdpartyAlerts\": \"NEANT\",\n            \"complete\": false,\n            \"thirdpartyUsers\": null,\n            \"listRegistrationNumber\": [],\n            \"attributeValues\": [\n                {\n                    \"id\": 2001,\n                    \"attributeId\": 1026,\n                    \"label\": \"E. Intervention sur site\",\n                    \"type\": \"boolean\",\n                    \"bondType\": \"thirdparty\",\n                    \"creationDate\": \"2024-02-27T16:38:48.251+00:00\",\n                    \"updateDate\": null,\n                    \"isRequired\": null,\n                    \"values\": [\n                        \"true\"\n                    ],\n                    \"ctxModelId\": null,\n                    \"referencingCalculations\": null\n                },\n                {\n                    \"id\": 2007,\n                    \"attributeId\": 1024,\n                    \"label\": \"D. Dépenses\",\n                    \"type\": \"integer\",\n                    \"bondType\": \"thirdparty\",\n                    \"creationDate\": \"2024-02-27T16:38:41.131+00:00\",\n                    \"updateDate\": null,\n                    \"isRequired\": null,\n                    \"values\": [\n                        \"100000\"\n                    ],\n                    \"ctxModelId\": null,\n                    \"referencingCalculations\": null\n                }\n            ],\n            \"majorFr\": \"Services\",\n            \"majorEn\": \"Services\",\n            \"majorCode\": \"I\",\n            \"scores\": {\n                \"datablocks_financial_strength\": {\n                    \"rating\": \"5A1\",\n                    \"riskLevel\": \"very_low\"\n                },\n                \"datablocks_esg\": {\n                    \"score\": \"2\",\n                    \"esgDataDepth\": \"C\",\n                    \"environmentalRankingScore\": 3,\n                    \"socialRankingScore\": 2,\n                    \"governanceRankingScore\": 1,\n                    \"noDataAvailable\": false\n                },\n                \"security_rating\": null,\n                \"ecovadis\": null,\n                \"creditsafe\": null,\n                \"indued\": {\n                    \"due_diligence_id\": \"12234\",\n                    \"due_diligence\": {\n                        \"status\": \"fpm_in_progress\",\n                        \"fpm_url\": \"https://...\",\n                        \"compliance_score\": 9,\n                        \"country_score\": 1,\n                        \"activity_score\": 2,\n                        \"state\": \"active\",\n                        \"pep_score\": 3,\n                        \"sanctions_score\": 1,\n                        \"adverse_media_score\": 3,\n                        \"risk_event_score\": 3,\n                        \"report_url\": null,\n                        \"risk_level\": 3,\n                        \"workflow_status\": null,\n                        \"failure_score\": null,\n                        \"creation_time\": \"2024-02-27T16:29:52.625+00:00\",\n                        \"report_time\": null,\n                        \"screening_time\": \"2024-02-27T16:30:21.468+00:00\",\n                        \"enrichment_time\": \"2024-02-27T16:30:16.629+00:00\"\n                    },\n                    \"report_id\": null,\n                    \"report_data\": null,\n                    \"created_date\": \"2024-02-27T16:29:50.960+00:00\",\n                    \"error\": null\n                }\n            },\n            \"calculatedAttributes\": [\n                {\n                    \"id\": 6001,\n                    \"calculationId\": 99,\n                    \"name\": \"Profil de Risque\",\n                    \"resultType\": \"STRING\",\n                    \"resultValue\": \"Risque Moyen\",\n                    \"resultColorCode\": \"#fcb900\",\n                    \"resultLastUpdateDate\": \"2024-02-27T16:29:50.330+00:00\",\n                    \"nature\": \"CALCULATED_ATTRIBUTE\",\n                    \"targetResourceType\": \"THIRD_PARTY\",\n                    \"targetResourceId\": 67890\n                }\n            ],\n            \"transparencyScore\": 67,\n            \"duns\": \"987654321\",\n            \"dateCreation\": \"2012-01-12\",\n            \"companyStartDate\": \"2000-03-01\",\n            \"companyClosedDate\": null,\n            \"acronym\": null,\n            \"brandName\": \"GLOBAL SERVICES\",\n            \"addressingName\": \"GLOBAL SERVICES FRANCE\",\n            \"capital\": 50000000,\n            \"capitalCurrency\": \"EUR\",\n            \"ceo\": null,\n            \"turnover\": 3199354000,\n            \"turnoverCurrency\": \"EUR\",\n            \"lastBalanceSheetDate\": \"2024-12-31\",\n            \"addressStreet\": \"456 AVENUE DES CHAMPS\",\n            \"etabPhoneNumber\": \"0498765432\",\n            \"website\": null,\n            \"category\": \"GE\",\n            \"subCategory\": null,\n            \"hasRestrictedDisclosure\": false,\n            \"dunsEncrypted\": false\n        }\n    ],\n    \"page\": 0,\n    \"size\": 2,\n    \"totalElements\": 9,\n    \"globalCount\": 122\n}"}],"_postman_id":"86fbb2f4-5bcb-442a-bf0e-b6bf4bd6ec13"},{"name":"Dossiers","id":"cb2e8535-1541-46c7-b8d4-faa73f7a427a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/advanced-search?page=0&rowPerPage=50&onboarded=true","description":"<p>This endpoint allows you to perform an advanced multi-criteria search on dossiers within an account. It supports multiple filters on dossier information, associated third party information, custom attributes, calculated attributes, and indicators.</p>\n<hr />\n<h2 id=\"📌-url-parameters\">📌 URL Parameters</h2>\n<ul>\n<li><p><strong>accountId</strong> (required): The account identifier</p>\n</li>\n<li><p><strong>monitored</strong> (optional): Filter on dossier status</p>\n<ul>\n<li><p><code>true</code>: Active/monitored dossiers</p>\n</li>\n<li><p><code>false</code>: Archived/inactive dossiers</p>\n</li>\n<li><p><code>null</code> (omitted): All dossiers (active and archived)</p>\n</li>\n</ul>\n</li>\n<li><p><strong>onboarded</strong> (optional): Filter on third party integration status</p>\n<ul>\n<li><p><code>true</code>: Dossiers with onboarded third parties</p>\n</li>\n<li><p><code>false</code>: Dossiers with non-onboarded third parties</p>\n</li>\n<li><p><code>null</code> (omitted): All dossiers (onboarded or not)</p>\n</li>\n</ul>\n</li>\n<li><p><strong>page</strong> (optional): Page number (default: 0)</p>\n</li>\n<li><p><strong>rowPerPage</strong> (optional): Number of results per page (default: 50)</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"📦-request-body-searchparams\">📦 Request Body (searchParams)</h2>\n<h3 id=\"🔍-dossier-identification\">🔍 Dossier Identification</h3>\n<ul>\n<li><p><strong>dossierType</strong>: Dossier type code (string). Use \"FREE\" for dossiers without a type</p>\n</li>\n<li><p><strong>reference</strong>: Dossier reference (case-insensitive search)</p>\n</li>\n</ul>\n<h3 id=\"🏢-third-party-identification-inherited-filters\">🏢 Third Party Identification (inherited filters)</h3>\n<p>These parameters allow filtering by information from the third party associated with the dossier:</p>\n<ul>\n<li><p><strong>name</strong>: Third party name (case-insensitive search)</p>\n</li>\n<li><p><strong>code</strong>: Third party code (case-insensitive search)</p>\n</li>\n<li><p><strong>identifier</strong>: Third party identifier (SIREN/SIRET, VAT, or DUNS) - must be combined with <strong>companyIdType</strong></p>\n</li>\n<li><p><strong>companyIdType</strong>: Type of identifier used. Possible values:</p>\n<ul>\n<li><p>CIT001: National identifier (SIREN/SIRET for France)</p>\n</li>\n<li><p>CIT002: VAT number</p>\n</li>\n<li><p>CIT003: DUNS number</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"📅-creation-period\">📅 Creation Period</h3>\n<ul>\n<li><p><strong>start</strong>: Dossier creation start date (ISO 8601 format: YYYY-MM-DD)</p>\n</li>\n<li><p><strong>end</strong>: Dossier creation end date (ISO 8601 format: YYYY-MM-DD)</p>\n</li>\n</ul>\n<h3 id=\"📊-status\">📊 Status</h3>\n<ul>\n<li><p><strong>status</strong>: Global dossier status. Possible values (English codes):</p>\n<ul>\n<li><p>MISSING: Incomplete</p>\n</li>\n<li><p>IN_PROGRESS: Acquisition in progress</p>\n</li>\n<li><p>NOT_VALID: Not compliant</p>\n</li>\n<li><p>ACTION_REQUIRED: Action required</p>\n</li>\n<li><p>VALID: Compliant</p>\n</li>\n<li><p>BELOW_EXPECTATION: Insufficient</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"🎯-custom-attributes\">🎯 Custom Attributes</h3>\n<ul>\n<li><p><strong>attributes</strong>: Object containing filters on dossier custom attributes</p>\n<ul>\n<li><p>Structure: <code>{ \"attribute_name\": [\"value1\", \"value2\"], ... }</code></p>\n</li>\n<li><p>Multiple values for the same attribute are linked by an OR operator</p>\n</li>\n<li><p>Different attributes are linked by an AND operator</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"📈-calculated-attributes\">📈 Calculated Attributes</h3>\n<ul>\n<li><p><strong>calculatedAttributes</strong>: Object containing filters on dossier calculated attributes</p>\n<ul>\n<li><p>Structure: <code>{ \"calculated_attribute_name\": [\"value1\", \"value2\"], ... }</code></p>\n</li>\n<li><p>Multiple values for the same calculated attribute are linked by an OR operator</p>\n</li>\n<li><p>Different calculated attributes are linked by an AND operator</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"🔢-indicators\">🔢 Indicators</h3>\n<ul>\n<li><p><strong>indicators</strong>: Object containing filters on dossier indicators</p>\n<ul>\n<li><p>Structure: <code>{ \"indicator_name\": [\"value1\", \"value2\"], ... }</code></p>\n</li>\n<li><p>Multiple values for the same indicator are linked by an OR operator</p>\n</li>\n<li><p>Different indicators are linked by an AND operator</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"⚙️-search-configuration\">⚙️ Search Configuration</h3>\n<ul>\n<li><p><strong>sort</strong>: Object defining result sorting</p>\n<ul>\n<li><p>Structure: <code>{ \"field\": \"direction\" }</code></p>\n</li>\n<li><p>Possible directions: \"asc\" or \"desc\"</p>\n</li>\n<li><p>Example: <code>{ \"creationDate\": \"desc\" }</code></p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","dossiers","advanced-search"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"50"},{"key":"onboarded","value":"true"}],"variable":[]}},"response":[{"id":"9b88d2f2-3f93-4acd-9d3f-62d0b79ae5d6","name":"Dossiers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"filters\":{\n      \"dossiers\":[\n         {\n            \"dossierType\":\"Onboarding\",\n            \"reference\":\"\",\n            \"start\":\"2025-01-01\",\n            \"end\":\"2026-02-28\",\n            \"status\":\"VALID\",\n            \"name\":\"CO\",\n            \"code\":\"\",\n            \"identifier\":\"\"\n         },\n         {\n            \"dossierType\":\"CERTIF\",\n            \"reference\":\"\",\n            \"start\":null,\n            \"end\":null,\n            \"status\":\"VALID\",\n            \"name\":\"\",\n            \"code\":\"\",\n            \"identifier\":\"\"\n         }\n      ]\n   },\n   \"sort\":{\n      \"thirdpartyName\":\"asc\"\n   },\n   \"outputs\":[\n   ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/dossiers/advanced-search?monitored=true&onboarded=true&page=0&rowPerPage=50","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","dossiers","advanced-search"],"query":[{"key":"monitored","value":"true"},{"key":"onboarded","value":"true"},{"key":"page","value":"0"},{"key":"rowPerPage","value":"50"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"authorizingRoles\": [],\n            \"nameFr\": \"Decarbonization Form\",\n            \"nameEn\": \"\",\n            \"nameEs\": \"\",\n            \"dossierId\": 3550187,\n            \"documentId\": 30789356,\n            \"reponseId\": 22068966,\n            \"fileId\": 21676606,\n            \"issuer\": \"FOURNISSEUR\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"depositDate\": \"2025-04-29T10:18:23.013\",\n            \"endDate\": \"2026-04-29T23:59:59.999\",\n            \"depositorName\": \"Sarah Mitchell\",\n            \"present\": true,\n            \"dossierReference\": \"CSR\",\n            \"dossierTypeCode\": \"CSR\",\n            \"dossierTypeLibelle\": \"Environment\",\n            \"typeDocumentId\": 1699,\n            \"documentCode\": \"NEW_FORM_303\",\n            \"thirdpartyId\": 697,\n            \"thirdpartyName\": \"GLOBAL STAFFING SERVICES\",\n            \"thirdpartyIdentifier\": \"12345678901234\",\n            \"thirdpartyCode\": null,\n            \"thirdpartyActivityLabel\": \"Temporary employment agency activities\",\n            \"statusCode\": \"VALID\",\n            \"statusReason\": \"\",\n            \"statusReasonDetail\": \"\",\n            \"statusActorEmail\": \"\",\n            \"acquisition\": \"FO\",\n            \"hierarchicalOrder\": 0,\n            \"refusedToFile\": false\n        },\n        {\n            \"authorizingRoles\": [],\n            \"nameFr\": \"Standard ESG Questionnaire\",\n            \"nameEn\": \"\",\n            \"nameEs\": \"\",\n            \"dossierId\": 3550187,\n            \"documentId\": 30789357,\n            \"reponseId\": null,\n            \"fileId\": null,\n            \"issuer\": null,\n            \"transmitter\": null,\n            \"depositDate\": null,\n            \"depositorName\": null,\n            \"present\": false,\n            \"dossierReference\": \"CSR\",\n            \"dossierTypeCode\": \"CSR\",\n            \"dossierTypeLibelle\": \"Environment\",\n            \"typeDocumentId\": 3830,\n            \"documentCode\": \"ESGFORM\",\n            \"thirdpartyId\": 697,\n            \"thirdpartyName\": \"GLOBAL STAFFING SERVICES\",\n            \"thirdpartyIdentifier\": \"12345678901234\",\n            \"thirdpartyCode\": null,\n            \"thirdpartyActivityLabel\": \"Temporary employment agency activities\",\n            \"statusCode\": \"MISSING\",\n            \"statusReason\": \"\",\n            \"statusReasonDetail\": \"\",\n            \"statusActorEmail\": \"\",\n            \"acquisition\": \"FO\",\n            \"hierarchicalOrder\": 0,\n            \"refusedToFile\": false\n        }\n    ],\n    \"page\": 0,\n    \"size\": 2,\n    \"totalElements\": 1266,\n    \"globalCount\": 1266,\n    \"answerableElements\": 59\n}"}],"_postman_id":"cb2e8535-1541-46c7-b8d4-faa73f7a427a"},{"name":"Documents","id":"821bcd8b-e367-428e-8c0e-b18da4b5f73a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{ea_api_serv}}/api/v1/account/{{account_id}}/documents/advanced-search?page=0&rowPerPage=50","description":"<p>This endpoint allows you to perform an advanced multi-criteria search on documents within an account. It supports filters on document type, validity period, status, and acquisition channel.</p>\n<p><strong>Important:</strong> This endpoint automatically filters documents to show only those from <strong>onboarded third parties</strong> and <strong>active dossiers</strong>. These filters are not configurable.</p>\n<hr />\n<h2 id=\"📌-url-parameters\">📌 URL Parameters</h2>\n<ul>\n<li><p><strong>accountId</strong> (required): The account identifier</p>\n</li>\n<li><p><strong>page</strong> (optional): Page number (default: 0)</p>\n</li>\n<li><p><strong>rowPerPage</strong> (optional): Number of results per page (default: 50)</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"📦-request-body-searchparams\">📦 Request Body (searchParams)</h2>\n<h3 id=\"🔍-document-filters\">🔍 Document Filters</h3>\n<ul>\n<li><p><strong>documents</strong>: Array of document search criteria. Each object can contain:</p>\n<ul>\n<li><p><strong>documentCode</strong>: Document code (string)</p>\n</li>\n<li><p><strong>start</strong>: Validity start date (ISO 8601 format: YYYY-MM-DD)</p>\n</li>\n<li><p><strong>end</strong>: Validity end date (ISO 8601 format: YYYY-MM-DD)</p>\n</li>\n<li><p><strong>status</strong>: Document status. Possible values (English codes):</p>\n<ul>\n<li><p>MISSING: Incomplete</p>\n</li>\n<li><p>IN_PROGRESS: Acquisition in progress</p>\n</li>\n<li><p>NOT_VALID: Not compliant</p>\n</li>\n<li><p>ACTION_REQUIRED: Action required</p>\n</li>\n<li><p>VALID: Compliant</p>\n</li>\n<li><p>BELOW_EXPECTATION: Insufficient</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"⚙️-search-configuration\">⚙️ Search Configuration</h3>\n<ul>\n<li><p><strong>sort</strong>: Object defining result sorting</p>\n<ul>\n<li><p>Structure: <code>{ \"field\": \"direction\" }</code></p>\n</li>\n<li><p>Possible directions: \"asc\" or \"desc\"</p>\n</li>\n<li><p>Example: <code>{ \"depositDate\": \"desc\" }</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<hr />\n","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}},"urlObject":{"path":["api","v1","account","{{account_id}}","documents","advanced-search"],"host":["{{ea_api_serv}}"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"50"}],"variable":[]}},"response":[{"id":"dfbbe326-648e-4679-a210-703ed2c5f855","name":"Documents","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"filters\": {\n    \"documents\": [\n      {\n        \"documentCode\": \"AC\",\n        \"status\": \"VALID\",\n        \"start\": \"2025-12-25\",\n        \"end\": \"2026-02-28\"\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{ea_api_serv}}/api/v1/account/{{account_id}}/thirdparties/advanced-search?page=0&rowPerPage=50&onboarded=true","host":["{{ea_api_serv}}"],"path":["api","v1","account","{{account_id}}","thirdparties","advanced-search"],"query":[{"key":"page","value":"0"},{"key":"rowPerPage","value":"50"},{"key":"onboarded","value":"true"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"authorizingRoles\": [],\n            \"nameFr\": \"Cyber insurance\",\n            \"nameEn\": \"\",\n            \"nameEs\": \"\",\n            \"dossierId\": 3190530,\n            \"documentId\": 30035669,\n            \"reponseId\": 25297110,\n            \"fileId\": 24901550,\n            \"issuer\": \"FOURNISSEUR\",\n            \"transmitter\": \"FOURNISSEUR\",\n            \"depositDate\": \"2025-12-30T17:44:59.312\",\n            \"endDate\": \"2026-12-31T23:59:59.999\",\n            \"depositorName\": \"John Anderson\",\n            \"present\": true,\n            \"dossierReference\": \"CYBER\",\n            \"dossierTypeCode\": \"CYBER\",\n            \"dossierTypeLibelle\": \"Cybersecurity\",\n            \"typeDocumentId\": 713,\n            \"documentCode\": \"AC\",\n            \"thirdpartyId\": 875,\n            \"thirdpartyName\": \"TECHSOLUTIONS INC\",\n            \"thirdpartyIdentifier\": \"98765432100012\",\n            \"thirdpartyCode\": null,\n            \"thirdpartyActivityLabel\": \"Application software publishing\",\n            \"statusCode\": \"VALID\",\n            \"statusReason\": \"\",\n            \"statusReasonDetail\": \"\",\n            \"statusActorEmail\": \"\",\n            \"acquisition\": \"FO\",\n            \"hierarchicalOrder\": 0,\n            \"refusedToFile\": false\n        }\n    ],\n    \"page\": 0,\n    \"size\": 50,\n    \"totalElements\": 1,\n    \"globalCount\": 1266,\n    \"answerableElements\": 0\n}"}],"_postman_id":"821bcd8b-e367-428e-8c0e-b18da4b5f73a"}],"id":"ac866f4e-bacb-428d-805d-e54827b6f947","description":"<h2 id=\"🔍-advanced-search-endpoints\">🔍 Advanced Search Endpoints</h2>\n<p>These three endpoints (<code>thirdparties</code>, <code>dossiers</code>, and <code>documents</code> advanced-search) allow you to perform complex multi-criteria searches with flexible filtering logic.</p>\n<p><strong>Filter Logic:</strong></p>\n<ul>\n<li><p><strong>Within a single criteria object:</strong> All fields are combined with <strong>AND</strong> logic</p>\n<ul>\n<li>A result must match ALL specified criteria</li>\n</ul>\n</li>\n<li><p><strong>Between multiple criteria objects:</strong> Results are combined with <strong>OR</strong> logic</p>\n<ul>\n<li>A result must match ANY of the criteria objects</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"filter\": {\n    \"dossiers\": [\n      {\n        \"dossierType\": \"SUPPLY_CONTRACT\",\n        \"status\": \"VALID\"\n      },\n      {\n        \"dossierType\": \"PARTNERSHIP\",\n        \"status\": \"IN_PROGRESS\"\n      }\n    ]\n  }\n}\n\n</code></pre><p><strong>This searches for:</strong></p>\n<ul>\n<li><p>Dossiers that are (type = SUPPLY_CONTRACT <strong>AND</strong> status = VALID)</p>\n</li>\n<li><p><strong>OR</strong></p>\n</li>\n<li><p>Dossiers that are (type = PARTNERSHIP <strong>AND</strong> status = IN_PROGRESS)</p>\n</li>\n</ul>\n<p>This flexible approach allows you to build complex queries that match your specific business needs.</p>\n","_postman_id":"ac866f4e-bacb-428d-805d-e54827b6f947","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}},{"name":"Errors codes","item":[],"id":"5fe3ba64-0d4d-400f-bc10-d0e1038e33d8","description":"<p>Here are the HTTP Status Codes and Error Codes used by our API:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200 OK</code></td>\n<td>Successful.</td>\n</tr>\n<tr>\n<td><code>400 Bad Request</code></td>\n<td>In the API response, field which is missing or invalid will be emphasized.</td>\n</tr>\n<tr>\n<td><code>401 Unauthorized</code></td>\n<td>The client passed in the invalid Auth token. Client should refresh the token and then try again.</td>\n</tr>\n<tr>\n<td><code>403 Forbidden</code></td>\n<td>Access to this resource is forbidden in this context.</td>\n</tr>\n<tr>\n<td><code>404 Not Found</code></td>\n<td>The ressource is missing.</td>\n</tr>\n<tr>\n<td><code>500 Internal Server Error</code></td>\n<td>Servers are not working as expected. The request is probably valid but needs to be requested again later.</td>\n</tr>\n</tbody>\n</table>\n</div><p>In case you receive a 400 ou 500 Http Status Code, you will find in the response a custom error code which give more information on the error cause:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error code</strong></th>\n<th><strong>Error description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>E001</td>\n<td>Missing parameter</td>\n</tr>\n<tr>\n<td>E002</td>\n<td>Unknown parameter</td>\n</tr>\n<tr>\n<td>E003</td>\n<td>Empty parameter</td>\n</tr>\n<tr>\n<td>E010</td>\n<td>Wrong format</td>\n</tr>\n<tr>\n<td>E011</td>\n<td>Maximum size exceeded</td>\n</tr>\n<tr>\n<td>E021</td>\n<td>Expiration date is in the past</td>\n</tr>\n<tr>\n<td>E022</td>\n<td>Date in future</td>\n</tr>\n<tr>\n<td>E030</td>\n<td>Invalid E-mail domain</td>\n</tr>\n<tr>\n<td>E100</td>\n<td>No company matching your search</td>\n</tr>\n<tr>\n<td>E101</td>\n<td>Error qualifying the company</td>\n</tr>\n<tr>\n<td>E102</td>\n<td>Company does not exist</td>\n</tr>\n<tr>\n<td>E103</td>\n<td>Company is closed</td>\n</tr>\n<tr>\n<td>E104</td>\n<td>Too many companies for this criteria</td>\n</tr>\n<tr>\n<td>E105</td>\n<td>Company ID has change to</td>\n</tr>\n<tr>\n<td>E111</td>\n<td>Thirdparty code (supplierCode) is different regarding the existing one</td>\n</tr>\n<tr>\n<td>E112</td>\n<td>Thirdparty code (supplierCode) is already used for another thirdparty</td>\n</tr>\n<tr>\n<td>E113</td>\n<td>Thirdparty account disabled</td>\n</tr>\n<tr>\n<td>E122</td>\n<td>Impossible to import an international company. 'The international' option is not activated.</td>\n</tr>\n<tr>\n<td>E200</td>\n<td>No dossier matching your search</td>\n</tr>\n<tr>\n<td>E201</td>\n<td>Dossier disabled</td>\n</tr>\n<tr>\n<td>E202</td>\n<td>Reference exists for third party</td>\n</tr>\n<tr>\n<td>E203</td>\n<td>No dossier with this reference</td>\n</tr>\n<tr>\n<td>E204</td>\n<td>Dossier already enabled</td>\n</tr>\n<tr>\n<td>E205</td>\n<td>Dossier is reactivated with a date in the past. You should modify the date.</td>\n</tr>\n<tr>\n<td>E206</td>\n<td>Dossier type not found</td>\n</tr>\n<tr>\n<td>E207</td>\n<td>Updating documents is forbidden on a typed dossier</td>\n</tr>\n<tr>\n<td>E301</td>\n<td>Requirement disabled</td>\n</tr>\n<tr>\n<td>E302</td>\n<td>Requirement not allowed</td>\n</tr>\n<tr>\n<td>E303</td>\n<td>Requirement disabled from the dossier type</td>\n</tr>\n<tr>\n<td>E304</td>\n<td>Requirement not allowed from the dossier type</td>\n</tr>\n<tr>\n<td>E401</td>\n<td>Unauthorised to make request on your DnB account.</td>\n</tr>\n<tr>\n<td>E402</td>\n<td>You have reach the request limit of your DnB account.</td>\n</tr>\n<tr>\n<td>E1000</td>\n<td>Error during id encryption</td>\n</tr>\n<tr>\n<td>E1001</td>\n<td>Error during id decryption</td>\n</tr>\n<tr>\n<td>E1002</td>\n<td>SIREN or SIRET type must be used with FR countryCode</td>\n</tr>\n<tr>\n<td>E1005</td>\n<td>Invalid value</td>\n</tr>\n<tr>\n<td>E1006</td>\n<td>Service temporarily unavailable</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5fe3ba64-0d4d-400f-bc10-d0e1038e33d8","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"09c3026f-15d2-437f-98f1-db710241baa9","id":"09c3026f-15d2-437f-98f1-db710241baa9","name":"Aprovall EDGE API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[]}},"event":[{"listen":"prerequest","script":{"id":"790fb14e-b6e8-40de-845d-da24df293e3a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0e0a19e6-c8fe-4f31-a842-e736649a5231","type":"text/javascript","exec":[""]}}]}