{"info":{"_postman_id":"cc248a51-fe03-4191-b2d6-04b7c738a748","name":"Origami Marketplace","description":"<html><head></head><body><img src=\"https://content.pstmn.io/eb24d582-46f3-416b-b842-933dbe8be57e/T3JpZ2FtaU1hcmtldHBsYWNlX0xvY2t1cF9BY2NlbnRCbHVlICgxKS5wbmc=\" width=\"447\" height=\"98\">\n\n<p><strong>Introduction</strong></p>\n<p>Origami Marketplace API is a RESTful API based on HTTP requests and JSON responses. It exposes the entire infrastructure and processes available with Origami Marketplace</p>\n<p>This version of the API uses OAuth 2.0. This means that all requests will need to be encrypted and sent via HTTPS. It also means that you need to register your application, even if you aren't allowing users to login.</p>\n<p>The easiest way to start using the Origami Marketplace API is by clicking the Run in Postman button above. Postman is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection.</p>\n<h1 id=\"allowed-https-request-methods\">Allowed HTTPs request methods</h1>\n<p>Origami Marketplace API provided HTTP standard request methods :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Method</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td>Get a resource or a list of resources</td>\n</tr>\n<tr>\n<td>POST</td>\n<td>Create a resource</td>\n</tr>\n<tr>\n<td>PATCH</td>\n<td>Update a resource</td>\n</tr>\n<tr>\n<td>DELETE</td>\n<td>DELETE a resource</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-status\">Response Status</h1>\n<p>Origami Marketplace API uses standard HTTP standard response status :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Ok - Request has been proceed with response body</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Created - Resource has been created</td>\n</tr>\n<tr>\n<td>204</td>\n<td>No Content - Request has been proceed without response body</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request - Params provided are wrong</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized - Authorization is not provided</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden - Not allowed to access to this resource</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found - Route or resource not found</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method not allowed - Method provided not allowed for this endpoint</td>\n</tr>\n<tr>\n<td>422</td>\n<td>Unprocessable Entity - Data error during request process</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Server Error - An error occurs on server</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"generic-api-params\">Generic API params</h1>\n<p>On each endpoint you can use request params to filter, include, sort results or handle pagination :</p>\n<ul>\n<li><p>Pagination : <code>/resource?page[number]=1&amp;page[size]=10</code></p>\n</li>\n<li><p>Filter : <code>/resource?filter[name]=foo</code></p>\n</li>\n</ul>\n<p>... where <code>name</code> can be:</p>\n<p>- the name of a model field<br>- the name of a custom filter (those are specified on this documentation)<br>- the key of a related custom field, in order to filter on a custom field value.<br>Example: <code>/resource?filter[key_of_custom_field]=value_of_custom_field</code></p>\n<p>Note that it is possible to filter on several values for the same filter key, using this structure:<br><code>/resource?filter[key][]=value1&amp;filter[key][]=value2</code><br>In this example, we will obtain the resource whose <code>key</code> has the value: <code>value1</code> <strong>or</strong> <code>value2</code>.</p>\n<ul>\n<li><p>Relationship inclusion : <code>/resource?include=user</code></p>\n</li>\n<li><p>Sort results : <code>/resource?order[name]=id&amp;order[way]=desc</code></p>\n</li>\n<li><p>Get the count of a specific relationship in the API return: <code>/resource?with_count=relationship</code><br>  This parameter is not available neither on all models, nor on all relationships. See the details of the route to know where this parameter is implemented.</p>\n</li>\n</ul>\n<p>For more information about how this work : <a href=\"http://jsonapi.org/format/#fetching\">http://jsonapi.org/format/#fetching</a></p>\n<h1 id=\"translation-policy\">Translation Policy</h1>\n<p>Some resources in Origami Marketplace can be translatable in multiple languages. All translations are included by default in any translatable resource response.<br>Translation must added on a resource with the corresponding format :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   \"translations\": [\n       {\n           \"language_id\": 1,\n           \"name\": \"Foo\"\n       },\n       {\n           \"language_id\": 2,\n           \"name\": \"Bar\"\n       }\n   ]\n}\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Allowed HTTPs request methods","slug":"allowed-https-request-methods"},{"content":"Response Status","slug":"response-status"},{"content":"Generic API params","slug":"generic-api-params"},{"content":"Translation Policy","slug":"translation-policy"}],"owner":"1769019","collectionId":"cc248a51-fe03-4191-b2d6-04b7c738a748","publishedId":"TVYDfffr","public":true,"customColor":{"top-bar":"494CF3","right-sidebar":"000000","highlight":"494CF3"},"publishDate":"2026-02-02T14:15:50.000Z"},"item":[{"name":"Authentication","item":[{"name":"Show current user","id":"9c6c9b63-bdc5-4983-b2b8-2938071fb0cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/v1/me","description":"<p>Retrieve information from current authenticated user.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/User-8245af64db8e49bbb5133312a5e53f7d\">User</a></p>\n","urlObject":{"path":["v1","me"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c6c9b63-bdc5-4983-b2b8-2938071fb0cc"},{"name":"Login","id":"5009ca65-5c00-486d-8e76-6f44bd9e6af5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"username","value":"{{user_email}}","type":"text"},{"key":"password","value":"{{user_password}}","type":"text"}]},"url":"{{domain}}/oauth/token","description":"<p>Retrieve an access token for a certain <code>User</code>, using its credentials (email and password, or refresh_token).</p>\n<p>An oauth token can always be requested using the credentials email and password.</p>\n<p>Instead of these both parameters, a refresh token can be used.<br />The advantage of using the refresh token is its very long lifespan: this increases the times you keep login before the token expires.<br />To get the first refresh token, you first have to do this request with parameters <code>email</code> and <code>password</code>: the response will display the refresh token. This token can therefore be used as credential, passing in parameter <code>refresh_token</code> and using <code>refresh_token</code> as value of <code>grant_type</code>.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>This route requires no permissions.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>grant_type</strong></td>\n<td>Defines which credentials will be used to retrieve the access token.</td>\n<td>String. Required. Only one of these values : <code>password</code>, <code>refresh_token</code>.</td>\n</tr>\n<tr>\n<td><strong>client_id</strong></td>\n<td>Given by the Origami tech team. Please get in touch with us !</td>\n<td>Integer. Required.</td>\n</tr>\n<tr>\n<td><strong>client_secret</strong></td>\n<td>Given by the Origami tech team. Please get in touch with us !</td>\n<td>String. Required.</td>\n</tr>\n<tr>\n<td><strong>username</strong></td>\n<td>The email of the <code>User</code> you wish to retrieve the access token for.</td>\n<td>String. Only required when parameter <code>grant_type</code> has value <code>password</code>.</td>\n</tr>\n<tr>\n<td><strong>password</strong></td>\n<td>The password of the <code>User</code> you wish to retrieve the access token for.</td>\n<td>String. Only required when parameter <code>grant_type</code> has value <code>password</code>.</td>\n</tr>\n<tr>\n<td><strong>refresh_token</strong></td>\n<td>The refresh token given in response of previous login request.</td>\n<td>String. Only required when parameter <code>grant_type</code> has value <code>refresh_token</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["oauth","token"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1ddd252f-e4ce-49d2-a197-57ffb2340445","name":"Login","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"username","value":"{{user_email}}","type":"text"},{"key":"password","value":"{{user_password}}","type":"text"}]},"url":"{{domain}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Date","value":"Mon, 26 Oct 2020 13:58:49 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"ETag","value":"\"c18d03897bcf77396fcc14df4b6fb3985b4e3895\""}],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 31536000,\n    \"access_token\": \"[YOUR ACCESS TOKEN]\",\n    \"refresh_token\": \"[YOUR REFRESH TOKEN]\"\n}"}],"_postman_id":"5009ca65-5c00-486d-8e76-6f44bd9e6af5"},{"name":"Send reset password email","id":"fb87b4ee-4441-4c1f-b9bb-9f8c74e919fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{user_email}}","type":"text"}]},"url":"{{domain}}/v1/password/email","description":"<p>Send the reset password email to a user.</p>\n<p>The email template to be sent will be the notification template defined in the action <code>user.email</code> of the event with condition <code>user.resetPassword</code>.</p>\n<p>Send reset passord email several times to the same recipient is possible, but only after at least 1 minute since the last email was sent.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>This route requires no permissions.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td>Email of the user of which password has to be reset</td>\n<td>Required. Must be a User <code>email</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","password","email"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a01cfd82-bad7-4a87-93dd-2c6c1d89bc7c","name":"Send reset password email","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{user_email}}","type":"text"}]},"url":"{{domain}}/v1/password/email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 13:10:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"a15e2127145548437173fc17f3e980e3f3dee2d0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"fb87b4ee-4441-4c1f-b9bb-9f8c74e919fa"},{"name":"Reset password","id":"4eb4dd2f-8630-4497-b9df-6036345c4ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"token","value":"ae5c2c3d-027c-40e1-8a47-3816757d06af","type":"text"},{"key":"email","value":"{{user_email}}","type":"text"},{"key":"password","value":"testPassword2020*","type":"text"},{"key":"password_confirmation","value":"testPassword2020*","type":"text"}]},"url":"{{domain}}/v1/password/reset","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>This route requires no permissions.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td>Email of the <code>User</code> which password has to be reset.</td>\n<td>Required.</td>\n</tr>\n<tr>\n<td><strong>password</strong></td>\n<td>New password</td>\n<td>Required. Must respect the configuration <code>general_password_regex</code></td>\n</tr>\n<tr>\n<td><strong>password_confirmation</strong></td>\n<td>Password confirmation.</td>\n<td>Required. Must equals the <code>password</code> value.</td>\n</tr>\n<tr>\n<td><strong>token</strong></td>\n<td>Token.</td>\n<td>Required.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","password","reset"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0876da33-acb5-40c7-868c-41d4d56019b4","name":"Reset password","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"token","value":"92285fc0-0dfc-4bd8-b2c6-73ea953087e5","type":"text"},{"key":"email","value":"{{user_email}}","type":"text"},{"key":"password","value":"testPassword2020*","type":"text"},{"key":"password_confirmation","value":"testPassword2020*","type":"text"}]},"url":"{{domain}}/v1/password/reset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 13:15:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"50855475058d6ab5f50fd9a4d3aa24c8431ba52f\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"4eb4dd2f-8630-4497-b9df-6036345c4ff8"}],"id":"ec3a4c49-3bbe-4095-af6b-0a4a555164b2","description":"<p>Most of the endpoints of the Origami API expect authenticated requests. In this part, we will discuss the following points :</p>\n<ul>\n<li><p>How users are managed in the Origami API</p>\n</li>\n<li><p>How a request can be authenticated</p>\n</li>\n</ul>\n<h2 id=\"users-management\">Users management</h2>\n<p>You can find more information on this topic <a href=\"https://origami-marketplace.notion.site/User-management-5ebe4235c6f144c488dbc421545681d9\">here</a>.</p>\n<h2 id=\"authenticating-a-request\">Authenticating a request</h2>\n<p>When a request is made to Origami API, the API needs two thing to authenticate it properly :</p>\n<ul>\n<li><p>The <code>User</code> which does the request</p>\n</li>\n<li><p>The <code>UserGroup</code> which does the request. It should be linked to the <code>User</code> through a <code>UserGroupUser</code>, otherwise an exception will be thrown.</p>\n</li>\n</ul>\n<p>So how to provide these information ?</p>\n<p>A <code>User</code> is authenticated using a token, that can be obtained by doing a <a href=\"https://documenter.getpostman.com/view/1769019/TVYDfffr#5009ca65-5c00-486d-8e76-6f44bd9e6af5\"><b>POST Login</b></a> request (it's in the <code>access_token</code> field of the response). This token should be put in the <code>Authorization</code> header of your request, prefixed by \"Bearer \" (the space after \"Bearer\" is important !). So let's say my token is \"abcdefg\", I should put \"Bearer abcdefg\" into the <code>Authorization</code> header.</p>\n<p>A <code>UserGroup</code> is authenticated using its ID. It that can be obtained by doing a <a href=\"https://documenter.getpostman.com/view/1769019/TVYDfffr#9c6c9b63-bdc5-4983-b2b8-2938071fb0cc\"><b>GET Show current user</b></a> request, using the <code>user_groups</code> include. This request needs to be authenticated only with a <code>User</code> as described above. In the <code>user_groups</code> field of the response, you will find every <code>UserGroup</code> bound to the <code>User</code> you provided in the request, and their ids. One of these ids should be placed in the <code>context</code> header of the request for which you need to authenticate a <code>UserGroup</code>.</p>\n","_postman_id":"ec3a4c49-3bbe-4095-af6b-0a4a555164b2"},{"name":"User management","item":[{"name":"User","item":[{"name":"List all users","id":"e046b467-6dba-451c-aad9-d97a6e37f726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/users","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/User-management-5ebe4235c6f144c488dbc421545681d9\">User</a></p>\n","urlObject":{"path":["v1","users"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e046b467-6dba-451c-aad9-d97a6e37f726"},{"name":"Get a user","id":"66a3b615-41df-4ced-bc81-5720808ee100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/users/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.show</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/User-management-5ebe4235c6f144c488dbc421545681d9\">User</a></p>\n","urlObject":{"path":["v1","users","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66a3b615-41df-4ced-bc81-5720808ee100"},{"name":"Create a user","id":"06c15680-0004-41d5-b852-6c82d954ea24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/users","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td>The unique identifier used by the end-user to login.</td>\n<td>String. Required. Must be unique.</td>\n</tr>\n<tr>\n<td><strong>password</strong></td>\n<td>The password used by the end-user to login.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>firstname</strong></td>\n<td>This will be concatenated to <strong>lastname</strong> and used to display a label representing this <code>User</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>lastname</strong></td>\n<td>This will be concatenated to <strong>firstname</strong> and used to display a label representing this <code>User</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>language_id</strong></td>\n<td>The language of the <code>User</code> will be used (among other things) to determine in which language the API will send notifications to this <code>User</code>.</td>\n<td>Integer. Can be <code>null</code>. Must be a <code>Language</code> id.</td>\n</tr>\n<tr>\n<td><strong>module_id</strong></td>\n<td>If a <code>User</code> is created by a <code>Module</code>, this field should be populated with the <code>Module</code> id.</td>\n<td>Integer. Can be <code>null</code>. Must be a <code>Module</code> id.</td>\n</tr>\n<tr>\n<td><strong>additional_information</strong></td>\n<td>Key-value pairs that represent a <code>CustomField</code> available for a <code>User</code> and its value. The key must refer to an existing <code>CustomField</code>.</td>\n<td>Array. Keys must refer to existing <code>CustomField</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/User-8245af64db8e49bbb5133312a5e53f7d\">User</a></p>\n","urlObject":{"path":["v1","users"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"06c15680-0004-41d5-b852-6c82d954ea24"},{"name":"Update a user","id":"0d4d01f3-bad3-481c-b94c-73a7115041da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"{{domain}}/v1/users/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td>The unique identifier used by the end-user to login.</td>\n<td>String. Must be unique.</td>\n</tr>\n<tr>\n<td><strong>password</strong></td>\n<td>The password used by the end-user to login.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>firstname</strong></td>\n<td>This will be concatenated to <strong>lastname</strong> and used to display a label representing this <code>User</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>lastname</strong></td>\n<td>This will be concatenated to <strong>firstname</strong> and used to display a label representing this <code>User</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>language_id</strong></td>\n<td>The language of the <code>User</code> will be used (among other things) to determine in which language the API will send notifications to this <code>User</code>.</td>\n<td>Integer. Can be <code>null</code>. Must be a <code>Language</code> id.</td>\n</tr>\n<tr>\n<td><strong>module_id</strong></td>\n<td>If a <code>User</code> is created by a <code>Module</code>, this field should be populated with the <code>Module</code> id.</td>\n<td>Integer. Can be <code>null</code>. Must be a <code>Module</code> id.</td>\n</tr>\n<tr>\n<td><strong>additional_information</strong></td>\n<td>Key-value pairs that represent a <code>CustomField</code> available for a <code>User</code> and its value. The key must refer to an existing <code>CustomField</code>.</td>\n<td>Array. Keys must refer to existing <code>CustomField</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","users","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d4d01f3-bad3-481c-b94c-73a7115041da"},{"name":"Delete a user","id":"4d802120-7b8a-4ee2-af8c-972672437d71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{domain}}/v1/users/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.delete</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n","urlObject":{"path":["v1","users","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d802120-7b8a-4ee2-af8c-972672437d71"}],"id":"a5fb3bc6-84e6-42f1-b842-08506ef859de","description":"<p>Model documentation : <a href=\"https://origami-marketplace.notion.site/User-management-5ebe4235c6f144c488dbc421545681d9\">User</a></p>\n","_postman_id":"a5fb3bc6-84e6-42f1-b842-08506ef859de"},{"name":"User Group","item":[{"name":"List all user groups","id":"281422b1-1c1f-475a-b6d5-a7f74417d869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/users/groups","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>user_groups.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/UserGroup-96ef8f3b1c5a4d7ebc24b88f416f845a\">UserGroup</a></p>\n","urlObject":{"path":["v1","users","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"281422b1-1c1f-475a-b6d5-a7f74417d869"},{"name":"Get a user group","id":"37a2f146-00ae-4025-b3ea-04266b84a439","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/users/groups/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>user_groups.show</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/UserGroup-96ef8f3b1c5a4d7ebc24b88f416f845a\">UserGroup</a></p>\n","urlObject":{"path":["v1","users","groups","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"37a2f146-00ae-4025-b3ea-04266b84a439"},{"name":"Get the wallet of an user group","id":"d23a8ef5-78e7-451f-aae4-c8df80024129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/users/groups/wallet","description":"<p>Return the wallet of a UserGroup (typically a <code>Seller</code>) for a certain <code>PaymentPsp</code> (like Mangopay or Hipay).</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>wallets.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>user_group_id</strong></td>\n<td></td>\n<td>Required. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td><strong>payment_psp_id</strong></td>\n<td></td>\n<td>Required. Must be a <code>PaymentPsp</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p>PaymentPspUserWallet (lien à rajouter)</p>\n","urlObject":{"path":["v1","users","groups","wallet"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d23a8ef5-78e7-451f-aae4-c8df80024129"}],"id":"0298716a-5f75-4c5d-9020-a1e6ac33b0f5","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shipping_offers</td>\n<td><code>ShippingOffers</code> related to this <code>UserGroup</code> (dedicated to a <code>UserGroup</code> with type <code>Seller</code>).</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product_offers</td>\n<td><code>ProductOffers</code> related to this <code>UserGroup</code> (dedicated to a <code>UserGroup</code> with type <code>Seller</code>).</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tickets</td>\n<td><code>Tickets</code> related to this <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>documents</td>\n<td><code>Documents</code> related to this <code>UserGroup</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_reports</td>\n<td><code>PaymentReports</code> related to the <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>invoices</td>\n<td><code>Invoices</code>related to the <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>users</td>\n<td><code>Users</code> related to the <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Description of this model's <code>UserGroupParent</code>, in current language.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>user_group_users</td>\n<td><code>UserGroupUsers</code> related to this <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>customer_groups</td>\n<td><code>CustomerGroups</code> reated to this <code>UserGroup</code> (dedicated to a <code>UserGroup</code> with type <code>Customer</code>).</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0298716a-5f75-4c5d-9020-a1e6ac33b0f5"},{"name":"User Group User","item":[{"name":"Create a user group user","id":"714d8675-8e9c-4a9c-afbc-2dd3fd235ffe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/users/groups/users","description":"<p>Link a User to a UserGroup by creating a UserGroupUser.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>user_group_id</strong></td>\n<td>The UserGroup we are linking the User to.</td>\n<td>Required. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td><strong>user_id</strong></td>\n<td>The User we are linking.</td>\n<td>Required. Must be a <code>User</code> id.</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/UserGroupUser-146aeeabc01c4a28bbf695588644d2ad\">UserGroupUser</a></p>\n","urlObject":{"path":["v1","users","groups","users"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"714d8675-8e9c-4a9c-afbc-2dd3fd235ffe"},{"name":"Delete a user group user","id":"efdcb30e-f885-4e18-bcf7-a9d2a1187e77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{domain}}/v1/users/groups/users/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>users.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n","urlObject":{"path":["v1","users","groups","users","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"efdcb30e-f885-4e18-bcf7-a9d2a1187e77"}],"id":"e1a4ae2e-9238-4a67-9b30-e897d0eefa1e","_postman_id":"e1a4ae2e-9238-4a67-9b30-e897d0eefa1e","description":""},{"name":"User Group Type","item":[{"name":"List all user group types","id":"f4588a48-39de-44b6-a644-80109d6b37e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/{{domain}}/v1/users/groups/types","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>user_group_types.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/UserGroupType-e49afd08eda24e1f85136e5fc1ce1f06\">UserGroupType</a></p>\n","urlObject":{"path":["{{domain}}","v1","users","groups","types"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4588a48-39de-44b6-a644-80109d6b37e9"}],"id":"49442b93-df38-4863-89db-772a8e41f954","_postman_id":"49442b93-df38-4863-89db-772a8e41f954","description":""}],"id":"b2ce7746-77bf-4072-9562-7f6851872eaf","_postman_id":"b2ce7746-77bf-4072-9562-7f6851872eaf","description":""},{"name":"Catalog management","item":[{"name":"Attributes","item":[{"name":"Attribute Types","item":[{"name":"List all attribute types","id":"8e29d20f-338b-4e3b-a6bd-a9fc3df20c3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/attributes/types","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","catalog","attributes","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a89b1d8c-ba97-4057-acb0-c284f657e9c8","name":"List all attribute types","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/attributes/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 26 Oct 2020 14:04:26 GMT"},{"key":"ETag","value":"\"470df0e475c8522f4942efc750831ee2d46bbd40\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"type\": \"select\",\n            \"position\": 0,\n            \"created_at\": \"2020-08-18T08:58:48.000000Z\",\n            \"updated_at\": \"2020-08-18T08:58:48.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Taille\",\n                        \"display_name\": \"Taille\",\n                        \"url\": null,\n                        \"meta_title\": null,\n                        \"created_at\": \"2020-08-18T08:58:48.000000Z\",\n                        \"updated_at\": \"2020-08-18T08:58:48.000000Z\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"locale\": \"en\",\n                        \"default\": true,\n                        \"language_id\": 2,\n                        \"name\": \"Size\",\n                        \"display_name\": \"Size\",\n                        \"url\": null,\n                        \"meta_title\": null,\n                        \"created_at\": \"2020-08-18T08:58:48.000000Z\",\n                        \"updated_at\": \"2020-08-18T08:58:48.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"type\": \"color\",\n            \"position\": 1,\n            \"created_at\": \"2020-08-18T08:58:48.000000Z\",\n            \"updated_at\": \"2020-08-18T08:58:48.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 3,\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Coleur\",\n                        \"display_name\": \"Coleur\",\n                        \"url\": null,\n                        \"meta_title\": null,\n                        \"created_at\": \"2020-08-18T08:58:48.000000Z\",\n                        \"updated_at\": \"2020-08-18T08:58:48.000000Z\"\n                    },\n                    {\n                        \"id\": 4,\n                        \"locale\": \"en\",\n                        \"default\": true,\n                        \"language_id\": 2,\n                        \"name\": \"Color\",\n                        \"display_name\": \"Color\",\n                        \"url\": null,\n                        \"meta_title\": null,\n                        \"created_at\": \"2020-08-18T08:58:48.000000Z\",\n                        \"updated_at\": \"2020-08-18T08:58:48.000000Z\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"8e29d20f-338b-4e3b-a6bd-a9fc3df20c3c"},{"name":"Get an attribute type","id":"1a672569-2489-4a3b-8942-5279dec67cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/attributes/types/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","catalog","attributes","types","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"599939e5-e35f-453c-8f60-7b16baf91533","name":"Get an attribute type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":{"raw":"{{domain}}/v1/catalog/attributes/types/1","host":["{{domain}}"],"path":["v1","catalog","attributes","types","1"],"query":[{"key":"context[user_group_id]","value":"{{context}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 13:58:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"57383f87de09a43a7b4f171ab057dfa348ea9b92\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"select\",\n        \"position\": 0,\n        \"created_at\": \"2020-09-16T12:47:04.000000Z\",\n        \"updated_at\": \"2020-09-16T12:47:04.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"Taille\",\n                    \"display_name\": \"Taille\",\n                    \"url\": null,\n                    \"meta_title\": null,\n                    \"created_at\": \"2020-09-16T12:47:04.000000Z\",\n                    \"updated_at\": \"2020-09-16T12:47:04.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"1a672569-2489-4a3b-8942-5279dec67cda"},{"name":"Create an attribute type","id":"c0139be1-b6ff-4354-a88a-2d2b9803b0d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"select\",\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\"\n      }\n  ]\n}"},"url":"{{domain}}/v1/catalog/attributes/types/","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","attributes","types",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"101cf303-7de9-4270-88a4-1c930fbd0f52","name":"Create an attribute type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"select\",\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\"\n      }\n  ],\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/attributes/types/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 14:41:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"dd55fdf030285267b1b8220896eebe34b4037cf8\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"type\": \"select\",\n        \"position\": 3,\n        \"created_at\": \"2020-10-23T14:41:14.000000Z\",\n        \"updated_at\": \"2020-10-23T14:41:14.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 4,\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"Poids\",\n                    \"display_name\": \"Poids\",\n                    \"url\": null,\n                    \"meta_title\": null,\n                    \"created_at\": \"2020-10-23T14:41:14.000000Z\",\n                    \"updated_at\": \"2020-10-23T14:41:14.000000Z\"\n                },\n                {\n                    \"id\": 5,\n                    \"locale\": \"en\",\n                    \"default\": true,\n                    \"language_id\": 2,\n                    \"name\": \"Weight\",\n                    \"display_name\": \"Weight\",\n                    \"url\": null,\n                    \"meta_title\": null,\n                    \"created_at\": \"2020-10-23T14:41:14.000000Z\",\n                    \"updated_at\": \"2020-10-23T14:41:14.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"c0139be1-b6ff-4354-a88a-2d2b9803b0d0"},{"name":"Update an attribute type","id":"1e8e7c57-6d18-4180-81d8-711c1fb6111f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"select\",\n  \"position\": 12,\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\"\n      }\n  ],\n}"},"url":"{{domain}}/v1/catalog/attributes/types/4","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","attributes","types","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"40c0e1d2-0401-4bc1-9120-d4782acf82aa","name":"Update an attribute type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"select\",\n  \"position\": 12,\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\"\n      }\n  ],\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/attributes/types/4"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 14:44:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1e8e7c57-6d18-4180-81d8-711c1fb6111f"},{"name":"Delete an attribute type","id":"c965671f-a620-4db4-8831-24ea3b708e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/attributes/types/4","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","attributes","types","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"88f8e122-4a02-4f5d-8e5c-43c6d612d9a5","name":"Delete an attribute type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/attributes/types/4"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 14:45:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c965671f-a620-4db4-8831-24ea3b708e86"}],"id":"b011229a-2847-434c-a1c8-43bca493b9d8","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Attribute type translations</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>attribute_values</td>\n<td>Values list for this attribute type</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Rules</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>Can be select or color</td>\n<td>Required.</td>\n</tr>\n<tr>\n<td>allow_custom_values</td>\n<td>When <code>true</code>, this parameter allows to create <code>AttributeValues</code> related to this <code>AttributeType</code>, during a request of <code>ProductVariant</code> creation</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>Integer.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[TRANS] Attribute type name</td>\n<td>Required.</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>[TRANS] Name displayed on front-office</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>[TRANS] Url rewrite for front-office SEO</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>meta_title</td>\n<td>[TRANS] Meta title for front-office SEO</td>\n<td>String.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"abc497a6-ff64-443f-bb04-5895b98f612e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc604638-70ff-4481-b816-7530bf84f09e","type":"text/javascript","exec":[""]}}],"_postman_id":"b011229a-2847-434c-a1c8-43bca493b9d8"},{"name":"Attribute Values","item":[{"name":"Get an attribute value","id":"597d2d2b-6b07-4da4-80a7-18ef30990f0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/attributes/values/1","urlObject":{"path":["v1","catalog","attributes","values","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ac08301a-28a4-4cda-a7d3-701f475a926b","name":"Get an attribute value","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":{"raw":"{{domain}}/v1/catalog/attributes/values/1","host":["{{domain}}"],"path":["v1","catalog","attributes","values","1"],"query":[{"key":"context[user_group_id]","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 14:53:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"c041df4f4c08b649f0e16b71c3a4d825e976f570\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"attribute_type_id\": 1,\n        \"color\": null,\n        \"position\": 0,\n        \"created_at\": \"2020-09-16T12:47:09.000000Z\",\n        \"updated_at\": \"2020-09-16T12:47:09.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"S\",\n                    \"created_at\": \"2020-09-16T12:47:10.000000Z\",\n                    \"updated_at\": \"2020-09-16T12:47:10.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"597d2d2b-6b07-4da4-80a7-18ef30990f0e"},{"name":"Create an attribute value","id":"c8d9deaa-95c5-4922-a421-27688aa71dec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attribute_type_id\": \"1\",\n    \"color\": \"#FFFFFF\",\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"name\": \"15kg\"\n        },\n        {\n            \"language_id\": \"2\",\n            \"name\": \"15 pounds\"\n        }\n    ],\n}"},"url":"{{domain}}/v1/catalog/attributes/values/","description":"<p>CREATE an <code>AttributeValue</code>.<br />If the related <code>AttributeType</code> (from <code>attribute_type_id</code>) has <code>allow_custom_values</code> to <code>true</code>, it is possible to use another route to create an <code>AttributeValue</code> : the route used to create a <code>ProductVarient</code> (see the related documentation below).</p>\n","urlObject":{"path":["v1","catalog","attributes","values",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"969ecbfc-e098-424f-b208-06e66cad00b0","name":"Create an attribute value","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attribute_type_id\": \"1\",\n    \"color\": \"#FFFFFF\",\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"name\": \"15kg\"\n        },\n        {\n            \"language_id\": \"2\",\n            \"name\": \"15 pounds\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/attributes/values"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 14:58:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"adc9326cfbe127d6fd9807719b08f7439456a065\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 10,\n        \"attribute_type_id\": 1,\n        \"color\": \"#FFFFFF\",\n        \"position\": 3,\n        \"created_at\": \"2020-10-23T14:58:02.000000Z\",\n        \"updated_at\": \"2020-10-23T14:58:02.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 10,\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"15kg\",\n                    \"created_at\": \"2020-10-23T14:58:02.000000Z\",\n                    \"updated_at\": \"2020-10-23T14:58:02.000000Z\"\n                },\n                {\n                    \"id\": 11,\n                    \"locale\": \"en\",\n                    \"default\": true,\n                    \"language_id\": 2,\n                    \"name\": \"15 pounds\",\n                    \"created_at\": \"2020-10-23T14:58:02.000000Z\",\n                    \"updated_at\": \"2020-10-23T14:58:02.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"c8d9deaa-95c5-4922-a421-27688aa71dec"},{"name":"Update an attribute value","id":"56074e84-a8b3-4386-9ec9-b70bfb561f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"attribute_type_id\": \"1\",\n  \"color\": \"#FFFFFF\",\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"16kg\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"16 pounds\"\n      }\n  ]\n}"},"url":"{{domain}}/v1/catalog/attributes/values/1","description":"<p>UPDATE an attribute_value</p>\n","urlObject":{"path":["v1","catalog","attributes","values","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"889258b3-602e-41d4-a1bd-b89c958bfb8f","name":"Update an attribute value","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}"}],"body":{"mode":"raw","raw":"{\n  \"attribute_type_id\": \"1\",\n  \"color\": \"#FFFFFF\",\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"16kg\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"16 pounds\"\n      }\n  ],\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/attributes/values/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 15:00:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"56074e84-a8b3-4386-9ec9-b70bfb561f79"},{"name":"Delete an attribute value","id":"71f4ebe3-3a66-440c-b3fa-510ba1b75160","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/attributes/values/10","description":"<p>DELETE an attribute_value</p>\n","urlObject":{"path":["v1","catalog","attributes","values","10"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6e50229f-27f9-4e72-9082-f3900b13eebe","name":"Delete an attribute value","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{domain}}/v1/catalog/attributes/values/10","host":["{{domain}}"],"path":["v1","catalog","attributes","values","10"],"query":[{"key":"context[user_group_id]","value":"1","disabled":true}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 15:00:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"71f4ebe3-3a66-440c-b3fa-510ba1b75160"}],"id":"5c605cae-8782-469e-869f-52e69bc0972b","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Attribute value translations</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attribute_type_id</td>\n<td>Id of related attribtue type</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>color</td>\n<td>Color if attribute type is color type</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[TRANS] Attribute type name</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8c464f59-580f-4868-baa3-9831b496d69a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"69acbe29-cd59-4b18-8ca2-365362aa4ca1","type":"text/javascript","exec":[""]}}],"_postman_id":"5c605cae-8782-469e-869f-52e69bc0972b"}],"id":"73ac6f1b-2657-4964-b41b-351c6a22aafb","event":[{"listen":"prerequest","script":{"id":"2d673482-6cf5-40ed-bbeb-9e795e9e4f22","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d967e040-0c8e-4c7b-b823-ddba25300727","type":"text/javascript","exec":[""]}}],"_postman_id":"73ac6f1b-2657-4964-b41b-351c6a22aafb","description":""},{"name":"Categories","item":[{"name":"List all categories","id":"dce6c630-84e3-47e8-bd7a-e6a65cfb7ca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/categories","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>categories.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/Category-1f0a87eb360f40fc8edee26eb7fec01e\">Category</a></p>\n","urlObject":{"path":["v1","catalog","categories"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e3f3cab7-c4e0-4d5f-9459-3a62e83226b3","name":"List all categories","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 15:05:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"6b3269c04a511b409fa722e78933f64b66f6476e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 1,\n            \"level_depth\": 0,\n            \"parent_id\": null,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Racine\",\n                        \"description\": \"Racine\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 2,\n            \"level_depth\": 1,\n            \"parent_id\": 1,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Accueil\",\n                        \"description\": \"Accueil\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 3,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 3,\n            \"level_depth\": 2,\n            \"parent_id\": 2,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie 1\",\n                        \"description\": \"Catégorie 1\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 4,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 6,\n            \"level_depth\": 3,\n            \"parent_id\": 3,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie 1 b\",\n                        \"description\": \"Catégorie 1 b\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 6,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 4,\n            \"level_depth\": 2,\n            \"parent_id\": 2,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie 2\",\n                        \"description\": \"Catégorie 2\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 7,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 7,\n            \"level_depth\": 3,\n            \"parent_id\": 6,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie 2 a\",\n                        \"description\": \"Catégorie 2 a\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 8,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 5,\n            \"level_depth\": 3,\n            \"parent_id\": 3,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie 1 a\",\n                        \"description\": \"Catégorie 1 a\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 9,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": 8,\n            \"level_depth\": 3,\n            \"parent_id\": 6,\n            \"cover_image_url\": null,\n            \"mini_image_url\": null,\n            \"mini_menu_image_url\": null,\n            \"simplified_url\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie 2 b\",\n                        \"description\": \"Catégorie 2 b\",\n                        \"meta_title\": null,\n                        \"meta_keywords\": null,\n                        \"meta_description\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 10,\n            \"link_rewrite\": null,\n            \"seller_visible\": 1,\n            \"scs_parent_id\": null,\n            \"external_id\": null,\n            \"level_depth\": null,\n            \"parent_id\": 7,\n            \"cover_image_url\": \"https://admin.staging.origami-marketplace.com/images/5f732626d1f8e/5f732626d1f8e.jpg\",\n            \"mini_image_url\": \"https://admin.staging.origami-marketplace.com/images/5f732626d2237/5f732626d2237.jpg\",\n            \"mini_menu_image_url\": \"https://admin.staging.origami-marketplace.com/images/5f732626d23b4/5f732626d23b4.jpg\",\n            \"simplified_url\": \"url-simplifie\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Catégorie enfante\",\n                        \"description\": \"<p>Coucou ceci est une description de cat&eacute;gorie</p>\",\n                        \"meta_title\": \"Balise titre\",\n                        \"meta_keywords\": \"Mots-clés\",\n                        \"meta_description\": \"Meta description\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"dce6c630-84e3-47e8-bd7a-e6a65cfb7ca9"},{"name":"Get a category","id":"ea56d9f9-31cd-4cb9-aaed-57a167d69bdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/categories/2","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>categories.show</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/Category-1f0a87eb360f40fc8edee26eb7fec01e\">Category</a></p>\n","urlObject":{"path":["v1","catalog","categories","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"530a0974-c193-4407-9db4-e7a41df7ea08","name":"Get a category","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/categories/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 26 Oct 2020 15:05:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f5057ccbdf4e2e9dd2157d1d3db40fdabe6af24a\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"link_rewrite\": null,\n        \"seller_visible\": 1,\n        \"scs_parent_id\": null,\n        \"external_id\": 2,\n        \"level_depth\": 1,\n        \"parent_id\": 1,\n        \"cover_image_url\": null,\n        \"mini_image_url\": null,\n        \"mini_menu_image_url\": null,\n        \"simplified_url\": null,\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"default\": false,\n                    \"name\": \"Accueil\",\n                    \"description\": \"Accueil\",\n                    \"meta_title\": null,\n                    \"meta_keywords\": null,\n                    \"meta_description\": null\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"ea56d9f9-31cd-4cb9-aaed-57a167d69bdd"},{"name":"Create a category","id":"e3c6d301-d9ab-4a1f-acd8-89d9c55d0428","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent_id\": 2,\n    \"seller_visible\": true,\n    \"external_id\": 16,\n    \"level_depth\": 1,\n    \"cover_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_menu_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"active\": true,\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/categories","urlObject":{"path":["v1","catalog","categories"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3c31a288-e31a-4d02-900e-2ee789f2a975","name":"Create a category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent_id\": 2,\n    \"seller_visible\": true,\n    \"external_id\": 16,\n    \"level_depth\": 1,\n    \"cover_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_menu_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"active\": true,\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/categories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 26 Oct 2020 15:15:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"61611395d7f1c5efd98f2fffd0eba39a3aafa640\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 14,\n        \"link_rewrite\": \"my-category\",\n        \"seller_visible\": 1,\n        \"scs_parent_id\": null,\n        \"external_id\": 16,\n        \"level_depth\": 1,\n        \"parent_id\": 2,\n        \"cover_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n        \"mini_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n        \"mini_menu_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n        \"simplified_url\": null,\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"default\": false,\n                    \"name\": \"My Category\",\n                    \"description\": \"Lorem Ipsum\",\n                    \"meta_title\": \"my cateory\",\n                    \"meta_keywords\": \"category\",\n                    \"meta_description\": \"Lorem Ipsum\"\n                },\n                {\n                    \"locale\": \"en\",\n                    \"language_id\": 2,\n                    \"default\": true,\n                    \"name\": \"My Category\",\n                    \"description\": \"Lorem Ipsum\",\n                    \"meta_title\": \"my cateory\",\n                    \"meta_keywords\": \"category\",\n                    \"meta_description\": \"Lorem Ipsum\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e3c6d301-d9ab-4a1f-acd8-89d9c55d0428"},{"name":"Update a category","id":"59095627-c6f0-4762-89b9-9b1d90fdfccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent_id\": 2,\n    \"seller_visible\": true,\n    \"external_id\": 16,\n    \"level_depth\": 1,\n    \"cover_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_menu_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"active\": true,\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        }\n    ],\n    \"attributes\": [\n        {\n            \"id\": 4,\n            \"required\": false\n        },\n        {\n            \"id\": 5,\n            \"required\": true\n        }\n    ],\n    \"features\": [\n        {\n            \"id\": 4,\n            \"required\": false\n        },\n        {\n            \"id\": 5,\n            \"required\": true\n        }\n    ],\n    \"shipping_packs\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/categories/14","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>categories.update</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features[*][id]</td>\n<td>Attach a feature to this category.</td>\n<td>Must be a <code>Feature</code> ID.</td>\n</tr>\n<tr>\n<td>features[*][required]</td>\n<td></td>\n<td>Boolean. If not set, required is autamatically set to true.</td>\n</tr>\n<tr>\n<td>attributes[*][id]</td>\n<td>Attach an AttributeType to this Category.</td>\n<td>Integer. Required. Must be a <code>AttributeType</code> id.</td>\n</tr>\n<tr>\n<td>attributes[*][required]</td>\n<td></td>\n<td>Boolean. If not set, required is autamatically set to true.</td>\n</tr>\n<tr>\n<td>shipping_packs[*][id]</td>\n<td>ID of the shipping pack to attach.</td>\n<td>Must be a <code>ShippingPack</code> ID.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","categories","14"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"f774dc17-ade0-469e-9fdd-d6669992c7eb","name":"Update a category","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent_id\": 2,\n    \"seller_visible\": true,\n    \"external_id\": 16,\n    \"level_depth\": 1,\n    \"cover_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"mini_menu_image_url\": \"https://origami-marketplace.com/wp-content/uploads/2017/05/logoazul.png\",\n    \"active\": true,\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"My Category\",\n            \"description\": \"Lorem Ipsum\",\n            \"link_rewrite\": \"my-category\",\n            \"meta_title\": \"my cateory\",\n            \"meta_keywords\": \"category\",\n            \"meta_description\": \"Lorem Ipsum\"\n        }\n    ],\n    \"attributes\": [\n        {\n            \"id\": 4,\n            \"required\": false\n        },\n        {\n            \"id\": 5,\n            \"required\": true\n        }\n    ],\n    \"features\": [\n        {\n            \"id\": 4,\n            \"required\": false\n        },\n        {\n            \"id\": 5,\n            \"required\": true\n        }\n    ],\n    \"shipping_packs\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/categories/14"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 26 Oct 2020 15:16:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"59095627-c6f0-4762-89b9-9b1d90fdfccb"},{"name":"Delete a category","id":"279ef493-da5b-46d0-89ae-70940cf10246","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/categories/14","urlObject":{"path":["v1","catalog","categories","14"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cde2a49c-35f3-4b3f-9751-8942904eec09","name":"Delete a category","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/categories/14"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 26 Oct 2020 15:16:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"279ef493-da5b-46d0-89ae-70940cf10246"}],"id":"c7af6f4c-b079-4f0a-90ae-ed86ab3397d3","description":"<p>Model documentation : <a href=\"https://origami-marketplace.notion.site/Category-1f0a87eb360f40fc8edee26eb7fec01e\">Category</a></p>\n","event":[{"listen":"prerequest","script":{"id":"e1a8f701-c243-4d25-a7ed-8096a1baee8d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6ab2cad7-5d24-4c13-a020-0e4cbf3d4cfb","type":"text/javascript","exec":[""]}}],"_postman_id":"c7af6f4c-b079-4f0a-90ae-ed86ab3397d3"},{"name":"Features","item":[{"name":"Feature Types","item":[{"name":"List all feature types","id":"47b76c5f-999f-4830-8d1e-92514be3c416","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/types","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","catalog","features","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"42ae24b6-abf4-4846-aad8-59f6c4a7fa2b","name":"List all feature types","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:11:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"901fcf04cf965d5d228ccf368791fe1eaba35115\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"external_uid\": null,\n            \"position\": 0,\n            \"is_customizable\": 0,\n            \"created_at\": \"2020-09-29T08:37:23.000000Z\",\n            \"updated_at\": \"2020-09-29T08:37:23.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Composition\",\n                        \"display_name\": \"Composition\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"47b76c5f-999f-4830-8d1e-92514be3c416"},{"name":"Get a feature type","id":"3df5c4e3-b8a6-4dcd-ba9c-3a0973188045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/types/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","types","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"bf64557b-56a2-4976-a4fd-8337174d48fd","name":"Get a feature type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/types/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:19:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"2ef28901723da50e4d4005d4d5647820be87fce2\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"external_uid\": null,\n        \"position\": 0,\n        \"is_customizable\": 0,\n        \"created_at\": \"2020-09-29T08:37:23.000000Z\",\n        \"updated_at\": \"2020-09-29T08:37:23.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"Composition\",\n                    \"display_name\": \"Composition\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"3df5c4e3-b8a6-4dcd-ba9c-3a0973188045"},{"name":"Create a feature type","id":"badceb26-e1ad-477c-938e-5cc6a3106848","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n  \"type\": \"position\",\n  \"external_uid\": \"123\",\n  \"is_customizable\": false,\n  \"position\": 0,\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\",\n        \"display_name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\",\n        \"display_name\": \"Weight\"\n      }\n  ],\n}"},"url":"{{domain}}/v1/catalog/features/types/","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","types",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6c5e7121-6d7c-44c9-9990-a6e7fb692379","name":"Create a feature type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n  \"type\": \"position\",\n  \"external_uid\": \"123\",\n  \"is_customizable\": false,\n  \"position\": 0,\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\",\n        \"display_name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\",\n        \"display_name\": \"Weight\"\n      }\n  ],\n}"},"url":"{{domain}}/v1/catalog/features/types/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:21:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"5809b1a91a713be85daa068a4aa9cd47de0f7d7f\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"external_uid\": null,\n        \"position\": 1,\n        \"is_customizable\": 1,\n        \"created_at\": \"2020-10-28T09:21:14.000000Z\",\n        \"updated_at\": \"2020-10-28T09:21:14.000000Z\",\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"badceb26-e1ad-477c-938e-5cc6a3106848"},{"name":"Update an feature type","id":"d7981196-ff52-475f-80de-86c232f8fee1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"select\",\n  \"position\": 12,\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\"\n      }\n  ],\n}"},"url":"{{domain}}/v1/catalog/features/types/2","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","types","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5dc06245-9e11-4ff6-b5ee-3f7d8dd1b2d8","name":"Update an feature type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"select\",\n  \"position\": 12,\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Poids\"\n    },\n      {\n        \"language_id\": \"2\",\n        \"name\": \"Weight\"\n      }\n  ],\n}"},"url":"{{domain}}/v1/catalog/features/types/2"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:22:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d7981196-ff52-475f-80de-86c232f8fee1"},{"name":"Delete a feature type","id":"926cde26-8821-4849-b819-da9e4cfd6f8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/features/types/2","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","types","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"94b7dfb3-6b52-4bb5-a186-2696c6c96c96","name":"Delete a feature type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/features/types/2"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"926cde26-8821-4849-b819-da9e4cfd6f8d"}],"id":"62366487-7469-4c48-b07a-46dbace5ab65","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Feature type translations</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>feature_values</td>\n<td>Values list for this feature type</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"with_counts-available\">With_counts available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>products</td>\n<td>Total of <code>Products</code> related to this model.</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>is_customizable</td>\n<td>Can add custom value on this feature type</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[TRANS] Attribute type name</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>[TRANS] Name displayed on front-office</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"900417c9-0fa0-40f1-bbde-80d7b0beff69","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"66921b65-ca13-4fb3-a2a7-93cd7a80aab1","type":"text/javascript","exec":[""]}}],"_postman_id":"62366487-7469-4c48-b07a-46dbace5ab65"},{"name":"Feature Values","item":[{"name":"List all feature values","id":"38e3a8b0-cb54-4e18-8622-417d10d861f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/values","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","catalog","features","values"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a82e0246-7982-47bc-827f-8ceecbc366ba","name":"List all feature values","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/values"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:11:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"901fcf04cf965d5d228ccf368791fe1eaba35115\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"external_uid\": null,\n            \"position\": 0,\n            \"is_customizable\": 0,\n            \"created_at\": \"2020-09-29T08:37:23.000000Z\",\n            \"updated_at\": \"2020-09-29T08:37:23.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Composition\",\n                        \"display_name\": \"Composition\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"38e3a8b0-cb54-4e18-8622-417d10d861f9"},{"name":"Get a feature value","id":"b840ede6-7b28-4d5d-b336-ab9955b734a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/values/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","values","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"49b0e3b4-a10a-49c5-976c-d22476af0318","name":"Get a feature value","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/features/values/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:24:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"5018fc8d0b372bd2e7d7d4a0682e3ae143f6e966\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"feature_type_id\": 1,\n        \"is_custom\": 0,\n        \"position\": 0,\n        \"external_uid\": null,\n        \"created_at\": \"2020-09-29T08:37:28.000000Z\",\n        \"updated_at\": \"2020-09-29T08:37:28.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"value\": \"Latex\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"b840ede6-7b28-4d5d-b336-ab9955b734a3"},{"name":"Create a feature value","id":"2f4fc47f-e968-4149-9b01-29e4a123ade6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"feature_type_id\": 1,\n    \"is_custom\": false,\n    \"external_uid\": false,\n    \"position\": 0,\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"value\": \"15kg\"\n        },\n        {\n            \"language_id\": \"2\",\n            \"value\": \"15 pounds\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/features/values","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","values"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"459d5288-9018-4c51-8a82-bb18ecd22c1c","name":"Create a feature value","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"feature_type_id\": 1,\n    \"is_custom\": false,\n    \"external_uid\": false,\n    \"position\": 0,\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"value\": \"15kg\"\n        },\n        {\n            \"language_id\": \"2\",\n            \"value\": \"15 pounds\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/features/values"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:33:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"485bebbd946ba9e9c5c3e83eb1900b54a68c39c6\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 10,\n        \"feature_type_id\": 1,\n        \"is_custom\": 0,\n        \"position\": 0,\n        \"external_uid\": \"0\",\n        \"created_at\": \"2020-10-28T09:33:54.000000Z\",\n        \"updated_at\": \"2020-10-28T09:33:54.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"value\": \"15kg\"\n                },\n                {\n                    \"locale\": \"en\",\n                    \"default\": true,\n                    \"language_id\": 2,\n                    \"value\": \"15 pounds\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"2f4fc47f-e968-4149-9b01-29e4a123ade6"},{"name":"Update a feature value","id":"2d008409-18d8-4d11-88be-3b7b8aa22a24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"feature_type_id\": 1,\n    \"is_custom\": false,\n    \"external_uid\": false,\n    \"position\": 0,\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"value\": \"15kg\"\n        },\n        {\n            \"language_id\": \"2\",\n            \"value\": \"15 pounds\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/features/values/10","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","values","10"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"88b22c44-b02b-49df-8d54-6acf379e0d79","name":"Update a feature value","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"feature_type_id\": 1,\n    \"is_custom\": false,\n    \"external_uid\": false,\n    \"position\": 0,\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"value\": \"15kg\"\n        },\n        {\n            \"language_id\": \"2\",\n            \"value\": \"15 pounds\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/features/values/10"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:34:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2d008409-18d8-4d11-88be-3b7b8aa22a24"},{"name":"Delete a feature value","id":"e3998c86-2334-471b-9b4e-556cbd697712","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/features/values/10","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","values","10"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"787810c1-ff0d-4c0a-83c5-a8db8987d4dc","name":"Delete a feature type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/features/types/2"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e3998c86-2334-471b-9b4e-556cbd697712"}],"id":"ab718454-b61d-46e5-82c3-513fbe72217c","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Feature value translations</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>feature_type_id</td>\n<td>Id of the related fature type</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>is_custom</td>\n<td>Is this value custom</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>value</td>\n<td>[TRANS] Feature value value</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"31f55cf2-e886-43bf-af5f-edcae4bf9ff7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"03f0be4e-04bb-483b-8e1a-140504da2cf4","type":"text/javascript","exec":[""]}}],"_postman_id":"ab718454-b61d-46e5-82c3-513fbe72217c"}],"id":"6959f6d9-f780-4933-a1c7-2d988bd5b293","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Feature type translations</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>feature_values</td>\n<td>Values list for this feature type</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>is_customizable</td>\n<td>Can add custom value on this feature type</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[TRANS] Attribute type name</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>[TRANS] Name displayed on front-office</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"510084ee-0ea0-4731-962f-6f587c93bbe8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5dc9e1bd-80c1-4416-bd1e-e7accbce23e5","type":"text/javascript","exec":[""]}}],"_postman_id":"6959f6d9-f780-4933-a1c7-2d988bd5b293"},{"name":"Feeds","item":[{"name":"Feeds","item":[{"name":"List all feeds","id":"f100721a-39b3-49ff-9a12-77b00464792e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","feeds"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a1493853-85bf-4f4a-878c-2b1880413d4a","name":"List all feeds","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:58:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"63670a1ea13b4e5a385dc08febd9190e4d5be7a4\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"name\": \"testest44\",\n            \"params\": {\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\",\n                \"delimiter\": \",\"\n            },\n            \"mapping\": {\n                \"fields\": {\n                    \"categories\": {\n                        \"cat1\": \"8\",\n                        \"cat2\": \"8\"\n                    }\n                },\n                \"columns\": {\n                    \"parent_id\": {\n                        \"value\": \"parent_reference\"\n                    },\n                    \"external_id\": {\n                        \"value\": \"reference\"\n                    },\n                    \"name\": {\n                        \"value\": \"name\"\n                    },\n                    \"quantity\": {\n                        \"value\": \"quantity\",\n                        \"default_value\": null\n                    },\n                    \"price_tax_exc\": {\n                        \"value\": \"price_tax_exc\",\n                        \"default_value\": null\n                    },\n                    \"purchase_price_tax_exc\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"images\": {\n                        \"value\": [\n                            \"image\"\n                        ]\n                    },\n                    \"categories\": {\n                        \"value\": [\n                            \"Category\"\n                        ]\n                    },\n                    \"attributes\": {\n                        \"value\": [\n                            \"Taille\"\n                        ]\n                    },\n                    \"tax\": {\n                        \"value\": \"Tax\"\n                    },\n                    \"reference\": {\n                        \"value\": \"reference\"\n                    },\n                    \"short_description\": {\n                        \"value\": \"short_description\",\n                        \"default_value\": null\n                    },\n                    \"long_description\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"ean13\": {\n                        \"value\": \"ean13\"\n                    },\n                    \"upc\": {\n                        \"value\": null\n                    },\n                    \"meta_description\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"meta_title\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"meta_keywords\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"height\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"width\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"weight\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"depth\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"specific_price_value\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"specific_price_value_type\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"specific_price_impact_on_price_tax_inc\": {\n                        \"value\": null\n                    },\n                    \"specific_price_begin_date\": {\n                        \"value\": null\n                    },\n                    \"specific_price_end_date\": {\n                        \"value\": null\n                    },\n                    \"specific_price_from_quantity\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    }\n                }\n            },\n            \"seller_id\": 4,\n            \"created_at\": \"2020-10-26T15:03:01.000000Z\",\n            \"updated_at\": \"2020-10-28T09:57:56.000000Z\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"exemplecsvdemo45\",\n            \"params\": {\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f993bed3f15c/5f993bed3f15c-5f993bed48f7d.csv\",\n                \"delimiter\": \",\"\n            },\n            \"mapping\": null,\n            \"seller_id\": 4,\n            \"created_at\": \"2020-10-28T09:37:30.000000Z\",\n            \"updated_at\": \"2020-10-28T09:37:49.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"f100721a-39b3-49ff-9a12-77b00464792e"},{"name":"Get a feed","id":"61158a3e-4dc1-4315-8c48-1d4a40c9c0fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d2358426-0a83-4095-81ad-a25e648a03f4","name":"Get a feed","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:53:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"69778d020a78e5be77b5df8ef2b8c8cbb6a08e8f\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"testest44\",\n        \"params\": {\n            \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\",\n            \"delimiter\": \",\"\n        },\n        \"mapping\": {\n            \"columns\": {\n                \"parent_id\": {\n                    \"value\": \"parent_reference\"\n                },\n                \"external_id\": {\n                    \"value\": \"reference\"\n                },\n                \"name\": {\n                    \"value\": \"name\"\n                },\n                \"quantity\": {\n                    \"value\": \"quantity\",\n                    \"default_value\": null\n                },\n                \"price_tax_exc\": {\n                    \"value\": \"price_tax_exc\",\n                    \"default_value\": null\n                },\n                \"purchase_price_tax_exc\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"images\": {\n                    \"value\": [\n                        \"image\"\n                    ]\n                },\n                \"categories\": {\n                    \"value\": [\n                        \"Category\"\n                    ]\n                },\n                \"attributes\": {\n                    \"value\": [\n                        \"Taille\"\n                    ]\n                },\n                \"tax\": {\n                    \"value\": \"Tax\"\n                },\n                \"reference\": {\n                    \"value\": \"reference\"\n                },\n                \"short_description\": {\n                    \"value\": \"short_description\",\n                    \"default_value\": null\n                },\n                \"long_description\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"ean13\": {\n                    \"value\": \"ean13\"\n                },\n                \"upc\": {\n                    \"value\": null\n                },\n                \"meta_description\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"meta_title\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"meta_keywords\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"height\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"width\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"weight\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"depth\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"specific_price_value\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"specific_price_value_type\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"specific_price_impact_on_price_tax_inc\": {\n                    \"value\": null\n                },\n                \"specific_price_begin_date\": {\n                    \"value\": null\n                },\n                \"specific_price_end_date\": {\n                    \"value\": null\n                },\n                \"specific_price_from_quantity\": {\n                    \"value\": null,\n                    \"default_value\": null\n                }\n            }\n        },\n        \"seller_id\": 4,\n        \"created_at\": \"2020-10-26T15:03:01.000000Z\",\n        \"updated_at\": \"2020-10-26T15:03:21.000000Z\"\n    }\n}"}],"_postman_id":"61158a3e-4dc1-4315-8c48-1d4a40c9c0fd"},{"name":"Get a feed config","id":"8226c88d-7f64-4c9c-858b-a4ce9b582f34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/config","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2","config"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"22f14934-0741-4be5-a2a5-78d38d9f4d54","name":"Get a feed config","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:13:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"42d6e8f0624b869942327451b79c94b6c45966f0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"params\": {\n        \"url\": {\n            \"0\": \"\",\n            \"type\": \"inputOrFile\"\n        }\n    },\n    \"mapping\": {\n        \"product_identification\": {\n            \"parent_id\": {\n                \"required\": true,\n                \"default_value\": false\n            },\n            \"external_id\": {\n                \"required\": true,\n                \"default_value\": false\n            },\n            \"ean13\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"marketplace_reference\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"reference\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"upc\": {\n                \"required\": false,\n                \"default_value\": false\n            }\n        },\n        \"product_informations\": {\n            \"name\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"short_description\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"long_description\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"meta_description\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"meta_title\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"meta_keywords\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"images\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            },\n            \"categories\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            },\n            \"is_active\": {\n                \"required\": false,\n                \"default_value\": true\n            }\n        },\n        \"attributes_and_features\": {\n            \"attributes\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            },\n            \"features\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            }\n        },\n        \"stock_and_price\": {\n            \"quantity\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"price_tax_exc\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"purchase_price_tax_exc\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"tax\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_value\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"specific_price_value_type\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"specific_price_impact_on_price_tax_inc\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_begin_date\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_end_date\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_from_quantity\": {\n                \"required\": false,\n                \"default_value\": true\n            }\n        },\n        \"product_dimensions\": {\n            \"height\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"width\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"weight\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"depth\": {\n                \"required\": false,\n                \"default_value\": true\n            }\n        }\n    }\n}"}],"_postman_id":"8226c88d-7f64-4c9c-858b-a4ce9b582f34"},{"name":"Get a feed mapping for orders","id":"9e72f04e-bdef-4e51-8d06-4cf24f5b354b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/order_mapping","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2","order_mapping"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d8351b61-aa89-4361-bf91-9dc3b44922d9","name":"Get a feed mapping for orders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/order_mapping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:14:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"97d170e1550eee4afc0af065b78cda302a97674c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9e72f04e-bdef-4e51-8d06-4cf24f5b354b"},{"name":"Get a feed mapping for products","id":"2fe5dd27-6466-48f0-9455-f156571c6df7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/mapping","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2","mapping"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7dd413d2-8f05-4ac0-9b9b-77f9852af2ec","name":"Get a feed mapping for orders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/mapping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:15:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"2295ac095d2212c654e6944374d3ce27ba18df1d\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"attributes\": [\n        {\n            \"name\": \"Taille\",\n            \"external_id\": \"Taille\",\n            \"values\": [\n                {\n                    \"name\": \"200x200\",\n                    \"external_id\": \"200x200\"\n                },\n                {\n                    \"name\": \"240x220\",\n                    \"external_id\": \"240x220\"\n                },\n                {\n                    \"name\": \"50x50\",\n                    \"external_id\": \"50x50\"\n                },\n                {\n                    \"name\": \"100x100\",\n                    \"external_id\": \"100x100\"\n                },\n                {\n                    \"name\": \"140x190\",\n                    \"external_id\": \"140x190\"\n                }\n            ]\n        }\n    ],\n    \"taxes\": [\n        {\n            \"name\": \"tax1\",\n            \"external_id\": \"tax1\"\n        }\n    ],\n    \"categories\": [\n        {\n            \"name\": \"Category\",\n            \"external_id\": \"Category\",\n            \"values\": [\n                {\n                    \"name\": \"cat1\",\n                    \"external_id\": \"cat1\"\n                },\n                {\n                    \"name\": \"cat2\",\n                    \"external_id\": \"cat2\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"2fe5dd27-6466-48f0-9455-f156571c6df7"},{"name":"Create a feed","id":"0e7f7934-8ecc-44e0-8ab5-f8564bfded2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","feeds"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"477f8b86-3152-4cd2-a67d-1577c76f80b4","name":"Create a feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:09:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"6422c799e1887560a945c7fd41591b273e556ca0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"Test feed\",\n        \"params\": null,\n        \"mapping\": null,\n        \"seller_id\": 1,\n        \"created_at\": \"2020-10-28T10:09:40.000000Z\",\n        \"updated_at\": \"2020-10-28T10:09:40.000000Z\"\n    }\n}"}],"_postman_id":"0e7f7934-8ecc-44e0-8ab5-f8564bfded2f"},{"name":"Synchronize a feed","id":"7e4340af-5531-4e9b-badb-a4c21935b1df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds/2/synchronize","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","feeds","2","synchronize"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7d948a24-1539-45dd-83ed-25cf22b2745c","name":"Synchronize a feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds/2/synchronize"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:17:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7e4340af-5531-4e9b-badb-a4c21935b1df"},{"name":"Update a feed","id":"b2552957-d178-4531-935d-5272aabc2b2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"params\": {\n        \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\"\n    },\n    \"mapping\": {\n         \"fields\": {\n            \"categories\": {\n                \"cat1\": \"8\",\n                \"cat2\": \"8\"\n            }\n        },\n        \"columns\": {\n            \"parent_id\": {\n                \"value\": \"parent_reference\"\n            },\n            \"external_id\": {\n                \"value\": \"reference\"\n            },\n            \"name\": {\n                \"value\": \"name\"\n            },\n            \"quantity\": {\n                \"value\": \"quantity\",\n                \"default_value\": null\n            },\n            \"price_tax_exc\": {\n                \"value\": \"price_tax_exc\",\n                \"default_value\": null\n            },\n            \"purchase_price_tax_exc\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"images\": {\n                \"value\": [\n                    \"image\"\n                ]\n            },\n            \"categories\": {\n                \"value\": [\n                    \"Category\"\n                ]\n            },\n            \"attributes\": {\n                \"value\": [\n                    \"Taille\"\n                ]\n            },\n            \"tax\": {\n                \"value\": \"Tax\"\n            },\n            \"reference\": {\n                \"value\": \"reference\"\n            },\n            \"short_description\": {\n                \"value\": \"short_description\",\n                \"default_value\": null\n            },\n            \"long_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"ean13\": {\n                \"value\": \"ean13\"\n            },\n            \"upc\": {\n                \"value\": null\n            },\n            \"meta_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_title\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_keywords\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"height\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"width\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"weight\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"depth\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value_type\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_impact_on_price_tax_inc\": {\n                \"value\": null\n            },\n            \"specific_price_begin_date\": {\n                \"value\": null\n            },\n            \"specific_price_end_date\": {\n                \"value\": null\n            },\n            \"specific_price_from_quantity\": {\n                \"value\": null,\n                \"default_value\": null\n            }\n        }\n    }\n}"},"url":"{{domain}}/v1/feeds/4","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","feeds","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"222b4cb9-5bea-461c-a823-ee1757579b61","name":"Update a feed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"params\": {\n        \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\"\n    },\n    \"mapping\": {\n         \"fields\": {\n            \"categories\": {\n                \"cat1\": \"8\",\n                \"cat2\": \"8\"\n            }\n        },\n        \"columns\": {\n            \"parent_id\": {\n                \"value\": \"parent_reference\"\n            },\n            \"external_id\": {\n                \"value\": \"reference\"\n            },\n            \"name\": {\n                \"value\": \"name\"\n            },\n            \"quantity\": {\n                \"value\": \"quantity\",\n                \"default_value\": null\n            },\n            \"price_tax_exc\": {\n                \"value\": \"price_tax_exc\",\n                \"default_value\": null\n            },\n            \"purchase_price_tax_exc\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"images\": {\n                \"value\": [\n                    \"image\"\n                ]\n            },\n            \"categories\": {\n                \"value\": [\n                    \"Category\"\n                ]\n            },\n            \"attributes\": {\n                \"value\": [\n                    \"Taille\"\n                ]\n            },\n            \"tax\": {\n                \"value\": \"Tax\"\n            },\n            \"reference\": {\n                \"value\": \"reference\"\n            },\n            \"short_description\": {\n                \"value\": \"short_description\",\n                \"default_value\": null\n            },\n            \"long_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"ean13\": {\n                \"value\": \"ean13\"\n            },\n            \"upc\": {\n                \"value\": null\n            },\n            \"meta_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_title\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_keywords\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"height\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"width\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"weight\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"depth\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value_type\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_impact_on_price_tax_inc\": {\n                \"value\": null\n            },\n            \"specific_price_begin_date\": {\n                \"value\": null\n            },\n            \"specific_price_end_date\": {\n                \"value\": null\n            },\n            \"specific_price_from_quantity\": {\n                \"value\": null,\n                \"default_value\": null\n            }\n        }\n    }\n}"},"url":"{{domain}}/v1/feeds/4"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:11:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b2552957-d178-4531-935d-5272aabc2b2e"},{"name":"Delete a feature value","id":"87aa19cd-d9cb-453a-9f47-3d386f77e8c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/features/values/10","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","features","values","10"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"653c9241-15a8-42e3-b795-e61d4721790e","name":"Delete a feature type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/features/types/2"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"87aa19cd-d9cb-453a-9f47-3d386f77e8c3"}],"id":"cf77a8ee-4af9-4acc-bf27-bd6522abaa57","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Attribute type translations</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>values</td>\n<td>Values list for this attribute type</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>Can be select or color</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[TRANS] Attribute type name</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>[TRANS] Name displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>url</td>\n<td>[TRANS] Url rewrite for front-office SEO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>meta_title</td>\n<td>[TRANS] Meta title for front-office SEO</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"08f80e66-9994-4bb8-9c06-7dd8fffe4389","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8eed6819-6353-45a9-ae72-d3780e0a9123","type":"text/javascript","exec":[""]}}],"_postman_id":"cf77a8ee-4af9-4acc-bf27-bd6522abaa57"},{"name":"Feed Products","item":[{"name":"List all feed products","id":"9aac32d7-3a07-42ec-bd1a-a301fcc1b788","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/products","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","feeds","products"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7741093e-8f68-4758-a6c3-3cb3717f8444","name":"List all feeds","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:58:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"63670a1ea13b4e5a385dc08febd9190e4d5be7a4\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"name\": \"testest44\",\n            \"params\": {\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\",\n                \"delimiter\": \",\"\n            },\n            \"mapping\": {\n                \"fields\": {\n                    \"categories\": {\n                        \"cat1\": \"8\",\n                        \"cat2\": \"8\"\n                    }\n                },\n                \"columns\": {\n                    \"parent_id\": {\n                        \"value\": \"parent_reference\"\n                    },\n                    \"external_id\": {\n                        \"value\": \"reference\"\n                    },\n                    \"name\": {\n                        \"value\": \"name\"\n                    },\n                    \"quantity\": {\n                        \"value\": \"quantity\",\n                        \"default_value\": null\n                    },\n                    \"price_tax_exc\": {\n                        \"value\": \"price_tax_exc\",\n                        \"default_value\": null\n                    },\n                    \"purchase_price_tax_exc\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"images\": {\n                        \"value\": [\n                            \"image\"\n                        ]\n                    },\n                    \"categories\": {\n                        \"value\": [\n                            \"Category\"\n                        ]\n                    },\n                    \"attributes\": {\n                        \"value\": [\n                            \"Taille\"\n                        ]\n                    },\n                    \"tax\": {\n                        \"value\": \"Tax\"\n                    },\n                    \"reference\": {\n                        \"value\": \"reference\"\n                    },\n                    \"short_description\": {\n                        \"value\": \"short_description\",\n                        \"default_value\": null\n                    },\n                    \"long_description\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"ean13\": {\n                        \"value\": \"ean13\"\n                    },\n                    \"upc\": {\n                        \"value\": null\n                    },\n                    \"meta_description\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"meta_title\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"meta_keywords\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"height\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"width\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"weight\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"depth\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"specific_price_value\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"specific_price_value_type\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    },\n                    \"specific_price_impact_on_price_tax_inc\": {\n                        \"value\": null\n                    },\n                    \"specific_price_begin_date\": {\n                        \"value\": null\n                    },\n                    \"specific_price_end_date\": {\n                        \"value\": null\n                    },\n                    \"specific_price_from_quantity\": {\n                        \"value\": null,\n                        \"default_value\": null\n                    }\n                }\n            },\n            \"seller_id\": 4,\n            \"created_at\": \"2020-10-26T15:03:01.000000Z\",\n            \"updated_at\": \"2020-10-28T09:57:56.000000Z\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"exemplecsvdemo45\",\n            \"params\": {\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f993bed3f15c/5f993bed3f15c-5f993bed48f7d.csv\",\n                \"delimiter\": \",\"\n            },\n            \"mapping\": null,\n            \"seller_id\": 4,\n            \"created_at\": \"2020-10-28T09:37:30.000000Z\",\n            \"updated_at\": \"2020-10-28T09:37:49.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"9aac32d7-3a07-42ec-bd1a-a301fcc1b788"},{"name":"Get a feed","id":"105555f6-9048-425f-a96a-27c94ff2fa07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fb64f506-1781-448e-80a4-035767c6004f","name":"Get a feed","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:53:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"69778d020a78e5be77b5df8ef2b8c8cbb6a08e8f\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"testest44\",\n        \"params\": {\n            \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\",\n            \"delimiter\": \",\"\n        },\n        \"mapping\": {\n            \"columns\": {\n                \"parent_id\": {\n                    \"value\": \"parent_reference\"\n                },\n                \"external_id\": {\n                    \"value\": \"reference\"\n                },\n                \"name\": {\n                    \"value\": \"name\"\n                },\n                \"quantity\": {\n                    \"value\": \"quantity\",\n                    \"default_value\": null\n                },\n                \"price_tax_exc\": {\n                    \"value\": \"price_tax_exc\",\n                    \"default_value\": null\n                },\n                \"purchase_price_tax_exc\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"images\": {\n                    \"value\": [\n                        \"image\"\n                    ]\n                },\n                \"categories\": {\n                    \"value\": [\n                        \"Category\"\n                    ]\n                },\n                \"attributes\": {\n                    \"value\": [\n                        \"Taille\"\n                    ]\n                },\n                \"tax\": {\n                    \"value\": \"Tax\"\n                },\n                \"reference\": {\n                    \"value\": \"reference\"\n                },\n                \"short_description\": {\n                    \"value\": \"short_description\",\n                    \"default_value\": null\n                },\n                \"long_description\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"ean13\": {\n                    \"value\": \"ean13\"\n                },\n                \"upc\": {\n                    \"value\": null\n                },\n                \"meta_description\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"meta_title\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"meta_keywords\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"height\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"width\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"weight\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"depth\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"specific_price_value\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"specific_price_value_type\": {\n                    \"value\": null,\n                    \"default_value\": null\n                },\n                \"specific_price_impact_on_price_tax_inc\": {\n                    \"value\": null\n                },\n                \"specific_price_begin_date\": {\n                    \"value\": null\n                },\n                \"specific_price_end_date\": {\n                    \"value\": null\n                },\n                \"specific_price_from_quantity\": {\n                    \"value\": null,\n                    \"default_value\": null\n                }\n            }\n        },\n        \"seller_id\": 4,\n        \"created_at\": \"2020-10-26T15:03:01.000000Z\",\n        \"updated_at\": \"2020-10-26T15:03:21.000000Z\"\n    }\n}"}],"_postman_id":"105555f6-9048-425f-a96a-27c94ff2fa07"},{"name":"Get a feed config","id":"8703a87e-f515-4d6e-a90d-1e857a723dc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/config","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2","config"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"32f290a1-a3b9-4db2-8aed-e845efb03532","name":"Get a feed config","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:13:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"42d6e8f0624b869942327451b79c94b6c45966f0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"params\": {\n        \"url\": {\n            \"0\": \"\",\n            \"type\": \"inputOrFile\"\n        }\n    },\n    \"mapping\": {\n        \"product_identification\": {\n            \"parent_id\": {\n                \"required\": true,\n                \"default_value\": false\n            },\n            \"external_id\": {\n                \"required\": true,\n                \"default_value\": false\n            },\n            \"ean13\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"marketplace_reference\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"reference\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"upc\": {\n                \"required\": false,\n                \"default_value\": false\n            }\n        },\n        \"product_informations\": {\n            \"name\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"short_description\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"long_description\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"meta_description\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"meta_title\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"meta_keywords\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"images\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            },\n            \"categories\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            },\n            \"is_active\": {\n                \"required\": false,\n                \"default_value\": true\n            }\n        },\n        \"attributes_and_features\": {\n            \"attributes\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            },\n            \"features\": {\n                \"required\": false,\n                \"multiple\": true,\n                \"default_value\": false\n            }\n        },\n        \"stock_and_price\": {\n            \"quantity\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"price_tax_exc\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"purchase_price_tax_exc\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"tax\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_value\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"specific_price_value_type\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"specific_price_impact_on_price_tax_inc\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_begin_date\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_end_date\": {\n                \"required\": false,\n                \"default_value\": false\n            },\n            \"specific_price_from_quantity\": {\n                \"required\": false,\n                \"default_value\": true\n            }\n        },\n        \"product_dimensions\": {\n            \"height\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"width\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"weight\": {\n                \"required\": false,\n                \"default_value\": true\n            },\n            \"depth\": {\n                \"required\": false,\n                \"default_value\": true\n            }\n        }\n    }\n}"}],"_postman_id":"8703a87e-f515-4d6e-a90d-1e857a723dc8"},{"name":"Get a feed mapping for orders","id":"0721e9a0-a930-445b-8881-e3a24fd153fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/order_mapping","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2","order_mapping"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"286bcfb1-50c6-462e-8f5a-e8b7ffb3bece","name":"Get a feed mapping for orders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/order_mapping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:14:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"97d170e1550eee4afc0af065b78cda302a97674c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0721e9a0-a930-445b-8881-e3a24fd153fc"},{"name":"Get a feed mapping for products","id":"1b28e478-30ea-4880-8ff5-716c1f099c18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/order_mapping","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","feeds","2","order_mapping"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"80e40584-2357-44ae-87ac-81b8e51b9f5c","name":"Get a feed mapping for orders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/feeds/2/mapping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:15:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"2295ac095d2212c654e6944374d3ce27ba18df1d\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"attributes\": [\n        {\n            \"name\": \"Taille\",\n            \"external_id\": \"Taille\",\n            \"values\": [\n                {\n                    \"name\": \"200x200\",\n                    \"external_id\": \"200x200\"\n                },\n                {\n                    \"name\": \"240x220\",\n                    \"external_id\": \"240x220\"\n                },\n                {\n                    \"name\": \"50x50\",\n                    \"external_id\": \"50x50\"\n                },\n                {\n                    \"name\": \"100x100\",\n                    \"external_id\": \"100x100\"\n                },\n                {\n                    \"name\": \"140x190\",\n                    \"external_id\": \"140x190\"\n                }\n            ]\n        }\n    ],\n    \"taxes\": [\n        {\n            \"name\": \"tax1\",\n            \"external_id\": \"tax1\"\n        }\n    ],\n    \"categories\": [\n        {\n            \"name\": \"Category\",\n            \"external_id\": \"Category\",\n            \"values\": [\n                {\n                    \"name\": \"cat1\",\n                    \"external_id\": \"cat1\"\n                },\n                {\n                    \"name\": \"cat2\",\n                    \"external_id\": \"cat2\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"1b28e478-30ea-4880-8ff5-716c1f099c18"},{"name":"Create a feed","id":"d2a54eb3-8e12-438b-8ffd-5a6ddf31324b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","feeds"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"83644eea-d711-4d48-af1c-e2852f0305af","name":"Create a feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:09:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"6422c799e1887560a945c7fd41591b273e556ca0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"Test feed\",\n        \"params\": null,\n        \"mapping\": null,\n        \"seller_id\": 1,\n        \"created_at\": \"2020-10-28T10:09:40.000000Z\",\n        \"updated_at\": \"2020-10-28T10:09:40.000000Z\"\n    }\n}"}],"_postman_id":"d2a54eb3-8e12-438b-8ffd-5a6ddf31324b"},{"name":"Synchronize a feed","id":"9078f362-9aa8-48ea-a5bd-b2cfde48a304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds/2/synchronize","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","feeds","2","synchronize"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ffd74864-c7ed-42a6-8757-ce9cf2cc921f","name":"Synchronize a feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test feed\",\n    \"language_id\": 1,\n    \"seller_id\": 1,\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/feeds/2/synchronize"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:17:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9078f362-9aa8-48ea-a5bd-b2cfde48a304"},{"name":"Update a feed","id":"0a093135-c848-4e87-a0a8-6cd91a0691e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"params\": {\n        \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\"\n    },\n    \"mapping\": {\n         \"fields\": {\n            \"categories\": {\n                \"cat1\": \"8\",\n                \"cat2\": \"8\"\n            }\n        },\n        \"columns\": {\n            \"parent_id\": {\n                \"value\": \"parent_reference\"\n            },\n            \"external_id\": {\n                \"value\": \"reference\"\n            },\n            \"name\": {\n                \"value\": \"name\"\n            },\n            \"quantity\": {\n                \"value\": \"quantity\",\n                \"default_value\": null\n            },\n            \"price_tax_exc\": {\n                \"value\": \"price_tax_exc\",\n                \"default_value\": null\n            },\n            \"purchase_price_tax_exc\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"images\": {\n                \"value\": [\n                    \"image\"\n                ]\n            },\n            \"categories\": {\n                \"value\": [\n                    \"Category\"\n                ]\n            },\n            \"attributes\": {\n                \"value\": [\n                    \"Taille\"\n                ]\n            },\n            \"tax\": {\n                \"value\": \"Tax\"\n            },\n            \"reference\": {\n                \"value\": \"reference\"\n            },\n            \"short_description\": {\n                \"value\": \"short_description\",\n                \"default_value\": null\n            },\n            \"long_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"ean13\": {\n                \"value\": \"ean13\"\n            },\n            \"upc\": {\n                \"value\": null\n            },\n            \"meta_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_title\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_keywords\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"height\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"width\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"weight\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"depth\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value_type\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_impact_on_price_tax_inc\": {\n                \"value\": null\n            },\n            \"specific_price_begin_date\": {\n                \"value\": null\n            },\n            \"specific_price_end_date\": {\n                \"value\": null\n            },\n            \"specific_price_from_quantity\": {\n                \"value\": null,\n                \"default_value\": null\n            }\n        }\n    }\n}"},"url":"{{domain}}/v1/feeds/4","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","feeds","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4f32d3fb-7362-43de-869f-b939fd84f523","name":"Update a feed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"params\": {\n        \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f96e52fa62f4/5f96e52fa62f4-5f96e52fb05b9.csv\"\n    },\n    \"mapping\": {\n         \"fields\": {\n            \"categories\": {\n                \"cat1\": \"8\",\n                \"cat2\": \"8\"\n            }\n        },\n        \"columns\": {\n            \"parent_id\": {\n                \"value\": \"parent_reference\"\n            },\n            \"external_id\": {\n                \"value\": \"reference\"\n            },\n            \"name\": {\n                \"value\": \"name\"\n            },\n            \"quantity\": {\n                \"value\": \"quantity\",\n                \"default_value\": null\n            },\n            \"price_tax_exc\": {\n                \"value\": \"price_tax_exc\",\n                \"default_value\": null\n            },\n            \"purchase_price_tax_exc\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"images\": {\n                \"value\": [\n                    \"image\"\n                ]\n            },\n            \"categories\": {\n                \"value\": [\n                    \"Category\"\n                ]\n            },\n            \"attributes\": {\n                \"value\": [\n                    \"Taille\"\n                ]\n            },\n            \"tax\": {\n                \"value\": \"Tax\"\n            },\n            \"reference\": {\n                \"value\": \"reference\"\n            },\n            \"short_description\": {\n                \"value\": \"short_description\",\n                \"default_value\": null\n            },\n            \"long_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"ean13\": {\n                \"value\": \"ean13\"\n            },\n            \"upc\": {\n                \"value\": null\n            },\n            \"meta_description\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_title\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"meta_keywords\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"height\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"width\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"weight\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"depth\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_value_type\": {\n                \"value\": null,\n                \"default_value\": null\n            },\n            \"specific_price_impact_on_price_tax_inc\": {\n                \"value\": null\n            },\n            \"specific_price_begin_date\": {\n                \"value\": null\n            },\n            \"specific_price_end_date\": {\n                \"value\": null\n            },\n            \"specific_price_from_quantity\": {\n                \"value\": null,\n                \"default_value\": null\n            }\n        }\n    }\n}"},"url":"{{domain}}/v1/feeds/4"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:11:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0a093135-c848-4e87-a0a8-6cd91a0691e2"}],"id":"94a1f2a4-49e1-46d6-8f0f-8f25e9b2a862","event":[{"listen":"prerequest","script":{"id":"e9805e6c-078c-478c-95dd-5f6cb53ef9d1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ae425044-43a0-4e5e-9aab-c3c2806aa82a","type":"text/javascript","exec":[""]}}],"_postman_id":"94a1f2a4-49e1-46d6-8f0f-8f25e9b2a862","description":""}],"id":"4756772b-92ce-44cf-953d-35578281cef0","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations</td>\n<td>Attribute type translations</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>values</td>\n<td>Values list for this attribute type</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>Can be select or color</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>position</td>\n<td>Position displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[TRANS] Attribute type name</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>[TRANS] Name displayed on front-office</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>url</td>\n<td>[TRANS] Url rewrite for front-office SEO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>meta_title</td>\n<td>[TRANS] Meta title for front-office SEO</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8eedec41-632a-416a-be39-b6a79b4ef920","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0281ec82-e997-4e6c-9ab3-b5ef95ca85cf","type":"text/javascript","exec":[""]}}],"_postman_id":"4756772b-92ce-44cf-953d-35578281cef0"},{"name":"Gift Cards","item":[{"name":"List all gift cards","id":"932d1789-d36d-41a4-836d-e616038bd9a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/gift_cards","urlObject":{"path":["v1","gift_cards"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cc694eb5-7e8c-45e0-b03d-f2270678edf6","name":"List all gift cards","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/gift_cards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:15:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"1e230f8422415f60d12df42275b4506832d7ae4d\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 4,\n            \"name\": \"Test Gift Card\",\n            \"amount\": \"1.000000\",\n            \"code\": \"GIFTCARD\",\n            \"remaining_amount\": \"1.000000\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"932d1789-d36d-41a4-836d-e616038bd9a0"},{"name":"Get a gift card","id":"54e3aede-08a9-4edb-a6be-9e43cea4f301","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/gift_cards/4","urlObject":{"path":["v1","gift_cards","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"42353de0-0fef-4e00-9ba3-2a764cc84d1d","name":"Get a gift card","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/gift_cards/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:16:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"bb5f8588e99c225108acd4121a904325599478db\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"Test Gift Card\",\n        \"amount\": \"1.000000\",\n        \"code\": \"GIFTCARD\",\n        \"remaining_amount\": \"1.000000\"\n    }\n}"}],"_postman_id":"54e3aede-08a9-4edb-a6be-9e43cea4f301"}],"id":"e11fc77c-4cc2-455a-be2d-deebb5bd76ef","event":[{"listen":"prerequest","script":{"id":"ef07ee10-4a13-4a7d-8d7e-7c8f65dd7932","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"03c59a65-a5e8-4f6c-8833-6c815e3c27e2","type":"text/javascript","exec":[""]}}],"_postman_id":"e11fc77c-4cc2-455a-be2d-deebb5bd76ef","description":""},{"name":"Products","item":[{"name":"Products","item":[{"name":"List all products","id":"f33d2221-04e4-49e8-9e4f-9efc52d4c8cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/products","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>products.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h2 id=\"parameters-available\">Parameters available</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[min_price]</td>\n<td>Get all <code>Products</code> whose all product offers have <code>price_tax_inc</code> higher than <code>min_price</code>.</td>\n</tr>\n<tr>\n<td>filter[max_price]</td>\n<td>Get all <code>Products</code> with price lower than <code>max_price</code>.</td>\n</tr>\n<tr>\n<td>filter[seller_id]</td>\n<td>Get all <code>Products</code> which <code>Seller</code> id matches this value.</td>\n</tr>\n<tr>\n<td>filter[warehouse_id]</td>\n<td>Get all <code>Products</code> which <code>Warehouse</code> id matches this value.</td>\n</tr>\n<tr>\n<td>filter[category_id]</td>\n<td>Get all <code>Products</code> which <code>Category</code> id matches this value.</td>\n</tr>\n<tr>\n<td>filter[feature_value_id][]</td>\n<td>Get all <code>Products</code> that has a <code>FeatureValue</code> which id matches this value.</td>\n</tr>\n<tr>\n<td>filter[attribute_value_id][]</td>\n<td>Get all <code>Products</code> that has an <code>AttributeValue</code> which id matches this value.</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Get all <code>Products</code> which at least one of the translated <code>names</code> contains the <code>search</code> value.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/Product-fb475aeecae54c6bafc9c4bb3256970c\">Product</a></p>\n","urlObject":{"path":["v1","catalog","products"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2ea62a0e-6977-4526-9536-40fdae189b95","name":"List all products","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:29:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"939e083df08a5cdb7f25f10d298c29f427db8656\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"reference\": \"P1364848329\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": true,\n            \"variants_count\": 4,\n            \"image_default\": {\n                \"id\": 1,\n                \"product_id\": 1,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/img/products/products-5f7327e8beec6.jpeg\",\n                \"created_at\": \"2020-09-14T15:04:24.000000Z\",\n                \"updated_at\": \"2020-09-29T12:26:18.000000Z\",\n                \"legend\": null,\n                \"translations\": [\n                    {\n                        \"id\": 1,\n                        \"product_image_id\": 1,\n                        \"language_id\": 1,\n                        \"legend\": \"test\",\n                        \"created_at\": \"2020-09-29T08:12:26.000000Z\",\n                        \"updated_at\": \"2020-09-29T08:12:26.000000Z\",\n                        \"language\": {\n                            \"id\": 1,\n                            \"locale\": \"fr\",\n                            \"name\": \"Français\",\n                            \"is_default\": 1,\n                            \"is_active\": 1,\n                            \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n                            \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n                        }\n                    }\n                ]\n            },\n            \"default_category_id\": 2,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"enabled\",\n            \"state_id\": 2,\n            \"created_at\": \"2020-09-14T15:02:14.000000Z\",\n            \"updated_at\": \"2020-10-22T13:40:51.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/1-produit-de-test.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Produit de test\",\n                        \"description\": \"<p>Produit de test</p>\",\n                        \"description_short\": \"<p>Produit de test description</p>\",\n                        \"url_rewrite\": \"produit-de-test\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"produit-de-test\",\n                        \"meta_title\": \"Produit de test\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Produit de test\",\n                        \"meta_description\": \"Produit de test description\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"Produit de test description\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"reference\": \"P1561988534\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": true,\n            \"variants_count\": 3,\n            \"image_default\": {\n                \"id\": 3,\n                \"product_id\": 2,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f6209e27a736/5f6209e27a736-5f6209e2833c1.png\",\n                \"created_at\": \"2020-09-16T12:49:38.000000Z\",\n                \"updated_at\": \"2020-09-16T13:21:07.000000Z\",\n                \"legend\": null,\n                \"translations\": []\n            },\n            \"default_category_id\": 3,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"enabled\",\n            \"state_id\": 2,\n            \"created_at\": \"2020-09-16T12:47:55.000000Z\",\n            \"updated_at\": \"2020-09-16T13:21:24.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/2-test-product-with-variant.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Test product with variant\",\n                        \"description\": \"<p>Long description, Long description, Long description, Long description, Long description, Long description,&nbsp;</p>\",\n                        \"description_short\": \"<p>Short description</p>\",\n                        \"url_rewrite\": \"test-product-with-variant\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"test-product-with-variant\",\n                        \"meta_title\": \"Test product with variant\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Test product with variant\",\n                        \"meta_description\": \"Short description\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"Short description\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 3,\n            \"reference\": \"P1507634275\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": false,\n            \"variants_count\": 1,\n            \"image_default\": {\n                \"id\": 4,\n                \"product_id\": 3,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f620f628e780/5f620f628e780-5f620f629587e.png\",\n                \"created_at\": \"2020-09-16T13:13:07.000000Z\",\n                \"updated_at\": \"2020-09-29T15:49:39.000000Z\",\n                \"legend\": null,\n                \"translations\": []\n            },\n            \"default_category_id\": 8,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"enabled\",\n            \"state_id\": 2,\n            \"created_at\": \"2020-09-16T13:13:05.000000Z\",\n            \"updated_at\": \"2020-09-16T13:21:45.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/3-test-product-2.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Test product 2\",\n                        \"description\": \"<p>Description tedt product 2</p>\",\n                        \"description_short\": null,\n                        \"url_rewrite\": \"test-product-2\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"test-product-2\",\n                        \"meta_title\": \"Test product 2\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Test product 2\",\n                        \"meta_description\": \"\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 4,\n            \"reference\": \"P1167969096\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": true,\n            \"variants_count\": 3,\n            \"image_default\": {\n                \"id\": 6,\n                \"product_id\": 4,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f6b3a2496dec/5f6b3a2496dec-5f6b3a249f6e7.jpg\",\n                \"created_at\": \"2020-09-23T12:05:57.000000Z\",\n                \"updated_at\": \"2020-09-23T12:06:16.000000Z\",\n                \"legend\": null,\n                \"translations\": []\n            },\n            \"default_category_id\": 8,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"enabled\",\n            \"state_id\": 2,\n            \"created_at\": \"2020-09-23T12:03:22.000000Z\",\n            \"updated_at\": \"2020-09-23T12:07:30.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/4-produit-customizable.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Produit customizable\",\n                        \"description\": \"<p>Avec couleur et texte</p>\",\n                        \"description_short\": \"<p>Produit de test customizable</p>\",\n                        \"url_rewrite\": \"produit-customizable\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"produit-customizable\",\n                        \"meta_title\": \"Produit customizable\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Produit customizable\",\n                        \"meta_description\": \"Produit de test customizable\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"Produit de test customizable\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 5,\n            \"reference\": \"P1079929397\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": false,\n            \"variants_count\": 1,\n            \"image_default\": {\n                \"id\": 8,\n                \"product_id\": 5,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f6dd9eeb108b/5f6dd9eeb108b-5f6dd9eeb8608.jpeg\",\n                \"created_at\": \"2020-09-25T11:52:16.000000Z\",\n                \"updated_at\": \"2020-09-25T11:52:31.000000Z\",\n                \"legend\": null,\n                \"translations\": []\n            },\n            \"default_category_id\": null,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"waiting\",\n            \"state_id\": 1,\n            \"created_at\": \"2020-09-24T13:21:08.000000Z\",\n            \"updated_at\": \"2020-09-24T13:21:16.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/5-test-product.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"TESt product\",\n                        \"description\": null,\n                        \"description_short\": null,\n                        \"url_rewrite\": \"test-product\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"test-product\",\n                        \"meta_title\": \"TESt product\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"TESt product\",\n                        \"meta_description\": \"\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 26,\n            \"reference\": \"P1276152034\",\n            \"external_uid\": null,\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"is_virtual\": 0,\n            \"has_variants\": false,\n            \"variants_count\": 1,\n            \"image_default\": null,\n            \"default_category_id\": null,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"waiting\",\n            \"state_id\": 1,\n            \"created_at\": \"2020-10-02T06:38:12.000000Z\",\n            \"updated_at\": \"2020-10-02T06:38:12.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": null,\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Test Lead\",\n                        \"description\": \"<p>Test Lead</p>\",\n                        \"description_short\": \"<p>Test Lead</p>\",\n                        \"url_rewrite\": \"test-lead\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"test-lead\",\n                        \"meta_title\": \"Test Lead\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Test Lead\",\n                        \"meta_description\": \"Test Lead\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"Test Lead\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 27,\n            \"reference\": \"P670937195\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": false,\n            \"variants_count\": 1,\n            \"image_default\": {\n                \"id\": 10,\n                \"product_id\": 27,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f76cc47baf2f/5f76cc47baf2f-5f76cc47c2d68.png\",\n                \"created_at\": \"2020-10-02T06:44:25.000000Z\",\n                \"updated_at\": \"2020-10-02T06:44:55.000000Z\",\n                \"legend\": null,\n                \"translations\": []\n            },\n            \"default_category_id\": 3,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"state\": \"enabled\",\n            \"state_id\": 2,\n            \"created_at\": \"2020-10-02T06:38:12.000000Z\",\n            \"updated_at\": \"2020-10-02T06:49:01.000000Z\",\n            \"product_type\": \"product\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/9-test-lead.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Test Lead\",\n                        \"description\": \"<p>Test Lead</p>\",\n                        \"description_short\": \"<p>Test Lead</p>\",\n                        \"url_rewrite\": \"test-lead\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"test-lead\",\n                        \"meta_title\": \"Test Lead\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Test Lead\",\n                        \"meta_description\": \"Test Lead\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"Test Lead\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 28,\n            \"reference\": \"P599715664\",\n            \"external_uid\": null,\n            \"ean13\": null,\n            \"upc\": null,\n            \"is_virtual\": 0,\n            \"has_variants\": false,\n            \"variants_count\": 1,\n            \"image_default\": {\n                \"id\": 12,\n                \"product_id\": 28,\n                \"is_default\": 1,\n                \"position\": 0,\n                \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f9060c19bd48/5f9060c19bd48-5f9060c1a752b.png\",\n                \"created_at\": \"2020-10-21T16:24:34.000000Z\",\n                \"updated_at\": \"2020-10-21T16:26:49.000000Z\",\n                \"legend\": null,\n                \"translations\": []\n            },\n            \"default_category_id\": 6,\n            \"rate_total\": 7.21,\n            \"rate_count\": 2,\n            \"state\": \"enabled\",\n            \"state_id\": 2,\n            \"created_at\": \"2020-10-21T16:24:15.000000Z\",\n            \"updated_at\": \"2020-10-21T16:27:00.000000Z\",\n            \"product_type\": \"service\",\n            \"url_front\": \"https://staging.origami-marketplace.com/fr/10-service-de-test.html\",\n            \"additional_information\": [],\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"default\": false,\n                        \"name\": \"Service de test\",\n                        \"description\": \"<p>Service de test</p>\",\n                        \"description_short\": \"<p>Service de test</p>\",\n                        \"url_rewrite\": \"service-de-test\",\n                        \"url_rewrite_overwritten\": 0,\n                        \"url_rewrite_default\": \"service-de-test\",\n                        \"meta_title\": \"Service de test\",\n                        \"meta_title_overwritten\": 0,\n                        \"meta_title_default\": \"Service de test\",\n                        \"meta_description\": \"Service de test\",\n                        \"meta_description_overwritten\": 0,\n                        \"meta_description_default\": \"Service de test\",\n                        \"meta_keywords\": null\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 8,\n            \"count\": 8,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"f33d2221-04e4-49e8-9e4f-9efc52d4c8cf"},{"name":"List all product states","id":"6a8bfb2f-e4ea-416c-bb75-881d10ae404a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/products/states","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_states.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p>ProductState (link to be coming)</p>\n","urlObject":{"path":["v1","catalog","products","states"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9707abfc-195a-4d77-bffc-469f38d20b9c","name":"List all product states","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/products/states"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:35:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"e53fc4bdcb6488e2e051d2574eed2b9d358bd84a\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"waiting\",\n            \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n            \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"enabled\",\n            \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n            \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"disabled\",\n            \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n            \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"refused\",\n            \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n            \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 4,\n            \"count\": 4,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"6a8bfb2f-e4ea-416c-bb75-881d10ae404a"},{"name":"Get a product","id":"e6bdd305-dc6d-4d57-beb6-9e795dd95bcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/products/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>products.show</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/Product-fb475aeecae54c6bafc9c4bb3256970c\">Product</a></p>\n","urlObject":{"path":["v1","catalog","products","{{id}}"],"host":["{{domain}}"],"query":[{"disabled":true,"key":"id","value":"2"}],"variable":[]}},"response":[{"id":"6889fc5f-4d5a-4e0b-9c45-4a1edf461f71","name":"Get a product","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/products/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:30:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"acc08f2fd84227b24b970d6594afbfbf511281a8\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"reference\": \"P1364848329\",\n        \"external_uid\": null,\n        \"ean13\": null,\n        \"upc\": null,\n        \"is_virtual\": 0,\n        \"has_variants\": true,\n        \"variants_count\": 4,\n        \"image_default\": {\n            \"id\": 1,\n            \"product_id\": 1,\n            \"is_default\": 1,\n            \"position\": 0,\n            \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/img/products/products-5f7327e8beec6.jpeg\",\n            \"created_at\": \"2020-09-14T15:04:24.000000Z\",\n            \"updated_at\": \"2020-09-29T12:26:18.000000Z\",\n            \"legend\": null,\n            \"translations\": [\n                {\n                    \"id\": 1,\n                    \"product_image_id\": 1,\n                    \"language_id\": 1,\n                    \"legend\": \"test\",\n                    \"created_at\": \"2020-09-29T08:12:26.000000Z\",\n                    \"updated_at\": \"2020-09-29T08:12:26.000000Z\",\n                    \"language\": {\n                        \"id\": 1,\n                        \"locale\": \"fr\",\n                        \"name\": \"Français\",\n                        \"is_default\": 1,\n                        \"is_active\": 1,\n                        \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n                        \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n                    }\n                }\n            ]\n        },\n        \"default_category_id\": 2,\n        \"rate_total\": 0,\n        \"rate_count\": 0,\n        \"state\": \"enabled\",\n        \"state_id\": 2,\n        \"created_at\": \"2020-09-14T15:02:14.000000Z\",\n        \"updated_at\": \"2020-10-22T13:40:51.000000Z\",\n        \"product_type\": \"product\",\n        \"url_front\": \"https://staging.origami-marketplace.com/fr/1-produit-de-test.html\",\n        \"additional_information\": [],\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"default\": false,\n                    \"name\": \"Produit de test\",\n                    \"description\": \"<p>Produit de test</p>\",\n                    \"description_short\": \"<p>Produit de test description</p>\",\n                    \"url_rewrite\": \"produit-de-test\",\n                    \"url_rewrite_overwritten\": 0,\n                    \"url_rewrite_default\": \"produit-de-test\",\n                    \"meta_title\": \"Produit de test\",\n                    \"meta_title_overwritten\": 0,\n                    \"meta_title_default\": \"Produit de test\",\n                    \"meta_description\": \"Produit de test description\",\n                    \"meta_description_overwritten\": 0,\n                    \"meta_description_default\": \"Produit de test description\",\n                    \"meta_keywords\": null\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e6bdd305-dc6d-4d57-beb6-9e795dd95bcd"},{"name":"Create a product","id":"709d5040-a2a7-4605-8a2d-3a550a6b3cc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reference\": \"REF424242\",\n\t\"ean13\": \"1234567891234\",\n\t\"upc\": \"123456789\",\n\t\"translations\": [\n\t\t{\n\t\t\t\"language_id\": \"1\",\n\t\t\t\"name\": \"Product 1\",\n\t\t\t\"descritpion\": \"Lorem ipsum\",\n\t\t\t\"description_short\": \"Lorem ipsum\",\n\t\t\t\"meta_title\": \"Lorem ipsum\",\n\t\t\t\"meta_description\": \"Lorem ipsum\",\n\t\t\t\"meta_keywords\": \"Lorem ipsum\"\n\t\t}\n\t]\n}"},"url":"{{domain}}/v1/catalog/products","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>products.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations.*.language_id</td>\n<td>ID of language used to create the name, and eventually url_rewrite, meta_title, description, description_short, meta_description, meta_keywords.</td>\n<td>Required. Existing ID of a language.</td>\n</tr>\n<tr>\n<td>translations.*.name</td>\n<td>Name of the model</td>\n<td>Required. String. Max: 128 characters.  <br />Must not contain these characters: <code>&lt;&gt;;=#{}</code></td>\n</tr>\n<tr>\n<td>translations.*.url_rewrite</td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td>translations.*.meta_title</td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td>translations.*.meta_description</td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td>translations.*.meta_keywords</td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td>translations.*.description</td>\n<td></td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>translations.*.description_short</td>\n<td></td>\n<td>Nullable. String. Maximum of characters depending on marketplace configuration <code>catalog_product_short_description_max_characters</code></td>\n</tr>\n<tr>\n<td>external_uid</td>\n<td>UID of the model</td>\n<td>Nullable. String. Max: 128 characters.</td>\n</tr>\n<tr>\n<td>ean13</td>\n<td>Is used to fill <code>ean13</code> value of the base <code>ProductVariant</code> related to this new <code>Product</code></td>\n<td>Nullable. Must have EAN13 structure.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td></td>\n<td>Unique.</td>\n</tr>\n<tr>\n<td>upc</td>\n<td>Is used to fill <code>upc</code> value of the base <code>ProductVariant</code> related to this new <code>Product</code></td>\n<td>Nullable. Must have Universal Product Code structure.</td>\n</tr>\n<tr>\n<td>url_front</td>\n<td>URL of the front-office <code>Product</code> page</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>features.*.[feature_type_id]</td>\n<td><code>FeatureType</code>. Only useful with <code>features.\\*.[feature_value_id]</code> or <code>features.\\*.[custom_value]</code></td>\n<td>Required with features. Integer. Existing ID of a <code>FeatureType</code>.</td>\n</tr>\n<tr>\n<td>features.*.[feature_value_id]</td>\n<td><code>FeatureValue</code> related to <code>features.\\*.[feature_type_id]</code></td>\n<td>Integer. Existing ID of a <code>FeatureValue</code>.</td>\n</tr>\n<tr>\n<td>features.*.[custom_value]</td>\n<td>Custom value related to <code>features.\\*.[feature_type_id]</code></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>Array containing the ids of the <code>Category</code> of your <code>Product</code></td>\n<td>Array. Must contain existing <code>Category</code> ids.</td>\n</tr>\n<tr>\n<td>default_category_id</td>\n<td>Default <code>Category</code> ID</td>\n<td>Integer. Must be an id contained in the field <code>categories</code>.</td>\n</tr>\n<tr>\n<td>product_image_ids</td>\n<td>Array containing the ids of the <code>ProductImage</code> you want to attach to your <code>Product</code></td>\n<td>Array. Must contain existing <code>ProductImage</code> ids.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/Product-fb475aeecae54c6bafc9c4bb3256970c\">Product</a></p>\n","urlObject":{"path":["v1","catalog","products"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2fd45506-b946-473c-b6dd-c5d718afc89c","name":"Create a product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reference\": \"REF424242\",\n\t\"ean13\": \"1234567891234\",\n\t\"upc\": \"123456789\",\n\t\"translations\": [\n\t\t{\n\t\t\t\"language_id\": \"1\",\n\t\t\t\"name\": \"Product 1\",\n\t\t\t\"descritpion\": \"Lorem ipsum\",\n\t\t\t\"description_short\": \"Lorem ipsum\",\n\t\t\t\"meta_title\": \"Lorem ipsum\",\n\t\t\t\"meta_description\": \"Lorem ipsum\",\n\t\t\t\"meta_keywords\": \"Lorem ipsum\"\n\t\t}\n\t]\n}"},"url":"{{domain}}/v1/catalog/products"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:32:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"3bf2b1fc667fc142abe4c993ae3254a6d517ff16\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 30,\n        \"reference\": \"REF424242\",\n        \"external_uid\": null,\n        \"ean13\": \"1234567891234\",\n        \"upc\": \"123456789\",\n        \"is_virtual\": 0,\n        \"has_variants\": false,\n        \"variants_count\": 1,\n        \"image_default\": null,\n        \"default_category_id\": null,\n        \"rate_total\": 0,\n        \"rate_count\": 0,\n        \"state\": \"waiting\",\n        \"state_id\": 1,\n        \"created_at\": \"2020-10-28T17:32:55.000000Z\",\n        \"updated_at\": \"2020-10-28T17:32:55.000000Z\",\n        \"product_type\": \"product\",\n        \"url_front\": null,\n        \"additional_information\": [],\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"default\": false,\n                    \"name\": \"Product 1\",\n                    \"description\": null,\n                    \"description_short\": \"Lorem ipsum\",\n                    \"url_rewrite\": \"product-1\",\n                    \"url_rewrite_overwritten\": 0,\n                    \"url_rewrite_default\": \"product-1\",\n                    \"meta_title\": \"Lorem ipsum\",\n                    \"meta_title_overwritten\": 1,\n                    \"meta_title_default\": \"Product 1\",\n                    \"meta_description\": \"Lorem ipsum\",\n                    \"meta_description_overwritten\": 1,\n                    \"meta_description_default\": \"Lorem ipsum\",\n                    \"meta_keywords\": \"Lorem ipsum\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"709d5040-a2a7-4605-8a2d-3a550a6b3cc9"},{"name":"Update a product","id":"ef3b052f-1cee-4d89-835b-5aa86855eca8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reference\": \"REF424242\",\n\t\"ean13\": \"1234567891234\",\n\t\"upc\": \"123456789\",\n\t\"translations\": [\n\t\t{\n\t\t\t\"language_id\": \"1\",\n\t\t\t\"name\": \"Product 1\",\n\t\t\t\"descritpion\": \"Lorem ipsum\",\n\t\t\t\"description_short\": \"Lorem ipsum\",\n\t\t\t\"meta_title\": \"Lorem ipsum\",\n\t\t\t\"meta_description\": \"Lorem ipsum\",\n\t\t\t\"meta_keywords\": \"Lorem ipsum\"\n\t\t}\n\t],\n    \"features\": [\n        {\n            \"feature_type_id\": 1\n        },\n        {\n            \"feature_type_id\": 2,\n            \"feature_value_id\": 1\n        },\n        {\n            \"feature_type_id\": 3,\n            \"custom_value\": \"Custom Value\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>products.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>state_id</td>\n<td>ID of the new product state.</td>\n<td>Existing ID of a product state.</td>\n</tr>\n<tr>\n<td>state_message</td>\n<td>Message to add in the latest <code>StateLog</code> (this one saves the changes of the product <code>state_id</code>). If the current request has <code>state_id</code>, <code>state_message</code> will be saved in the current creation of <code>StateLog</code> .</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>IDs of all categories to attach to this product. Parent categories of these categories will be attached to the product, too.  <br />Not that, if this parameter is sent, all the categories not in the array, and already attached to this product, will be detached.</td>\n<td>Array of objects with id as key and the ID of the category as value, like this example:  <br /><code>[{id: 1},{id:2}]</code></td>\n</tr>\n<tr>\n<td>features</td>\n<td>Array containing all the features to attach or to keep attached to this product.  <br />Note that a feature value that was already attached to this product, and that wouldn't be in this array, will be detached from this product.</td>\n<td>Array of objects. Not required.</td>\n</tr>\n<tr>\n<td>features.*.feature_type_id</td>\n<td></td>\n<td>Required with <code>features</code>. Existing ID of a <code>FeatureType</code>.</td>\n</tr>\n<tr>\n<td>features.*.feature_value_id</td>\n<td>Feature value to attach to this product.</td>\n<td>Required with <code>features.\\*.feature_type_id</code>.  <br />and without <code>features.\\*.custom_value</code>. Existing ID of a <code>FeatureValue</code>.</td>\n</tr>\n<tr>\n<td>features.*.custom_value</td>\n<td>Feature value to attach to this product.</td>\n<td>Required with <code>features.\\*.feature_type_id</code>.  <br />and without <code>features.\\*.feature_value_id</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","products","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9b2032d0-affd-4a97-b8c2-f1949af56d1f","name":"Update a product","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reference\": \"REF424242\",\n\t\"ean13\": \"1234567891234\",\n\t\"upc\": \"123456789\",\n\t\"translations\": [\n\t\t{\n\t\t\t\"language_id\": \"1\",\n\t\t\t\"name\": \"Product 1\",\n\t\t\t\"descritpion\": \"Lorem ipsum\",\n\t\t\t\"description_short\": \"Lorem ipsum\",\n\t\t\t\"meta_title\": \"Lorem ipsum\",\n\t\t\t\"meta_description\": \"Lorem ipsum\",\n\t\t\t\"meta_keywords\": \"Lorem ipsum\"\n\t\t}\n\t],\n    \"features\": [\n        {\n            \"feature_type_id\": 1\n        },\n        {\n            \"feature_type_id\": 2,\n            \"feature_value_id\": 1\n        },\n        {\n            \"feature_type_id\": 3,\n            \"custom_value\": \"Custom Value\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/30"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:33:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ef3b052f-1cee-4d89-835b-5aa86855eca8"},{"name":"Delete a product","id":"527f2ae9-9d61-47c8-bfcc-cede21aee26c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>products.delete</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n","urlObject":{"path":["v1","catalog","products","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7701bc96-c06b-4c62-948a-e0c2df804084","name":"Delete a product","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/30"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:34:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"527f2ae9-9d61-47c8-bfcc-cede21aee26c"}],"id":"97b95a87-498e-4acd-a94a-f971ea3347f5","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>categories</td>\n<td><code>Categories</code> related to this model, via <code>ProductCategory</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>customizations</td>\n<td><code>ProductCustomizations</code> related to this <code>Product</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>default_category</td>\n<td><code>Category</code> which ID is the <code>default_category_id</code> of the <code>Product</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>features</td>\n<td><code>ProductFeatureValues</code> related to this <code>Product</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>final_categories</td>\n<td><code>Categories</code> related to the <code>Product</code>, where <code>is_final</code> is true.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>offers</td>\n<td><code>ProductOffers</code> related to this <code>Product</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product_reviews</td>\n<td>Reviews related to the Product</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>related_products</td>\n<td><code>Products</code> related to this <code>Product</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>state_histories</td>\n<td><code>ProductStateHistories</code> related to this <code>Product</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Product translations</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>variants</td>\n<td><code>ProductVariants</code> reated to this <code>Product</code>, containing at least the base <code>Variant</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>visibilities</td>\n<td></td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"19fc699b-9f42-442c-bea8-cc37e1e243e2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2beaa98a-c1e6-4424-8565-99be5442cb0c","type":"text/javascript","exec":[""]}}],"_postman_id":"97b95a87-498e-4acd-a94a-f971ea3347f5"},{"name":"Product Categories","item":[{"name":"Get all product categories","id":"de37f9cc-35bb-407d-bc61-74c1d2b2fb10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/categories","description":"<p>GET the list of all the product categories.</p>\n<h3 id=\"permissions\">PERMISSIONS</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The permission <code>product_categories.index</code> is required.</p>\n<h3 id=\"body-parameters\">BODY PARAMETERS</h3>\n<p>None.</p>\n<h3 id=\"model\">MODEL</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductCategory-8936fd2fceb14eb4a0646314a269e681\">ProductCategory</a></p>\n","urlObject":{"path":["v1","catalog","products","categories"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fefead7e-d6d4-4789-b4c8-d0e0d2511757","name":"Create a product category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"product_id\": 2,\n    \"category_id\": 2\n}"},"url":"{{domain}}/v1/catalog/products/categories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:37:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"ed69e8d2a49c8e46457fe038b21ecf02cab2949e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 26,\n        \"product_id\": 2,\n        \"category_id\": 2,\n        \"position\": 1\n    }\n}"}],"_postman_id":"de37f9cc-35bb-407d-bc61-74c1d2b2fb10"},{"name":"Create a product category","id":"5b3f0c40-63d2-4b95-bf65-726cf02de6d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"product_id\": 2,\n    \"category_id\": 2\n}"},"url":"{{domain}}/v1/catalog/products/categories","description":"<p>CREATE a <code>ProductCategory</code> in order to classify a product in a category.</p>\n<h3 id=\"permissions\">PERMISSIONS</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The permission <code>product_categories.create</code> is required.</p>\n<h3 id=\"body-parameters\">BODY PARAMETERS</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>product_id</strong></td>\n<td>Identifier of the product.</td>\n</tr>\n<tr>\n<td><strong>category_id</strong></td>\n<td>Identifier of the category.</td>\n</tr>\n<tr>\n<td><strong>position</strong></td>\n<td>Position of the product in the category.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">MODEL</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductCategory-8936fd2fceb14eb4a0646314a269e681\">ProductCategory</a></p>\n","urlObject":{"path":["v1","catalog","products","categories"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cc0f3360-fadf-43c2-b26a-1abb70ed933f","name":"Create a product category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"product_id\": 2,\n    \"category_id\": 2\n}"},"url":"{{domain}}/v1/catalog/products/categories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:37:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"ed69e8d2a49c8e46457fe038b21ecf02cab2949e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 26,\n        \"product_id\": 2,\n        \"category_id\": 2,\n        \"position\": 1\n    }\n}"}],"_postman_id":"5b3f0c40-63d2-4b95-bf65-726cf02de6d4"},{"name":"Update a product category","id":"4e877c33-3b95-45de-aed4-8fa62cbb39d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"position\": 1\n}"},"url":"{{domain}}/v1/catalog/products/categories/26","description":"<p>UPDATE a <code>ProductCategory</code>.</p>\n<h3 id=\"permissions\">PERMISSIONS</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The permission <code>product_categories.update</code> is required.</p>\n<h3 id=\"body-parameters\">BODY PARAMETERS</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>position</strong></td>\n<td>Position of the product in the category.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","products","categories","26"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9e95894e-a0fd-4906-b17e-2d9cd5fc8c1d","name":"Update a product category","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"position\": 1\n}"},"url":"{{domain}}/v1/catalog/products/categories/26"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 09:22:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4e877c33-3b95-45de-aed4-8fa62cbb39d4"},{"name":"Delete a product category","id":"4f51e163-fa82-488f-b075-1011fe644bf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/categories/{id}","description":"<p>DELETE a <code>ProductCategory</code> to remove the product from the category.</p>\n<h3 id=\"permissions\">PERMISSIONS</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The permission <code>product_categories.delete</code> is required.</p>\n<h3 id=\"body-parameters\">BODY PARAMETERS</h3>\n<p>None.</p>\n","urlObject":{"path":["v1","catalog","products","categories","{id}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"26b14232-38e8-4d09-b4a9-fd6ff653914d","name":"Delete a product category","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/categories/27"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 09:22:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4f51e163-fa82-488f-b075-1011fe644bf2"}],"id":"d76a2f41-f7ea-4efa-b750-12c0dc388479","description":"<p>Model documentation : <a href=\"https://origami-marketplace.notion.site/ProductCategory-8936fd2fceb14eb4a0646314a269e681\">ProductCategory</a></p>\n","event":[{"listen":"prerequest","script":{"id":"4c809922-5f86-4049-b125-b44879bca9a6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e22a0c6c-4160-44c2-9229-ce501219640d","type":"text/javascript","exec":[""]}}],"_postman_id":"d76a2f41-f7ea-4efa-b750-12c0dc388479"},{"name":"Product Images","item":[{"name":"Get a product image","id":"24a44b35-4964-4802-902e-0293c265dd76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_product\": 2,\n    \"url\": \"http://myImage.png\"\n}"},"url":"{{domain}}/v1/catalog/products/images/{{id}}","description":"<p>GET the details of a product image, determined by the image ID.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_images.show</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductImage-527d60982271476097c1ac4c19588704\">ProductImage</a></p>\n","urlObject":{"path":["v1","catalog","products","images","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b475718a-5c4a-4010-aed5-d17d4d540a30","name":"Get a product image","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_product\": 2,\n    \"url\": \"http://myImage.png\"\n}"},"url":"{{domain}}/v1/catalog/products/images/15"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 12:54:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"402b6b4a0cf01be0ff376c3f7df5076069e1af5b\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 15,\n        \"url\": \"https://storage.gra.cloud.ovh.net/v1/AUTH_bcd845e0b5634d6c8b2535ea00e54c53/ori-staging/images/5f9191d807d3f/5f9191d807d3f-5f9191d811c6a.jpeg\",\n        \"locale\": null,\n        \"is_default\": 0,\n        \"position\": 2,\n        \"product_id\": 1,\n        \"created_at\": \"2020-10-22T14:06:17.000000Z\",\n        \"updated_at\": \"2020-10-22T14:06:17.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"legend\": null,\n                    \"created_at\": \"2020-10-22T14:07:50.000000Z\",\n                    \"updated_at\": \"2020-10-22T14:07:50.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"24a44b35-4964-4802-902e-0293c265dd76"},{"name":"Create a product image","id":"7d51afe8-5a4b-4bdc-9910-a0bd84492517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"id_product","value":"66055","type":"text"},{"key":"file_base64","type":"text","value":"base64"}]},"url":"{{domain}}/v1/catalog/products/images","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_images.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_product</td>\n<td></td>\n<td>Nullable. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td><strong>url</strong></td>\n<td>URL where picture of this model is hosted.</td>\n<td>String. Required if \"file\" parameter is not supplied. Forbidden if \"file\" parameter is supplied. Must be an URL.</td>\n</tr>\n<tr>\n<td><strong>file</strong></td>\n<td>Image data</td>\n<td>File. Required if \"url\" parameter is not supplied. Forbidden if \"url\" parameter is supplied. Must be an image file.</td>\n</tr>\n<tr>\n<td>external_uid</td>\n<td>Field that you may want to fill with some internal ID of yours</td>\n<td>Nullable. String. Max length : 100</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductImage-527d60982271476097c1ac4c19588704\">ProductImage</a></p>\n","urlObject":{"path":["v1","catalog","products","images"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6dcac8c4-a4e6-4497-80fa-0984011161bd","name":"Create a product image","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_product\": 2,\n    \"url\": \"http://myImage.png\"\n}"},"url":"{{domain}}/v1/catalog/products/images"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 10:42:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"3bbbd46c800758534df519d4e9eacfd1976a7e2d\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 16,\n        \"url\": \"https://origami-marketplace.com/wp-content/uploads/2023/10/OrigamiMarketplace_Logo.svg\",\n        \"locale\": null,\n        \"is_default\": 0,\n        \"position\": 1,\n        \"product_id\": 2,\n        \"created_at\": \"2020-10-29T10:42:54.000000Z\",\n        \"updated_at\": \"2020-10-29T10:42:54.000000Z\",\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"7d51afe8-5a4b-4bdc-9910-a0bd84492517"},{"name":"Update a product image","id":"e6c5e2bd-eb64-4f93-a1c0-cc6ba2b32ea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_product\": 2,\n    \"url\": \"http://myImage.png\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"legend\": \"my image\"\n        },\n        {\n            \"language_id\": 2,\n            \"legend\": \"my image\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/images/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_images.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id_product</strong></td>\n<td></td>\n<td>Integer. Required. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td><strong>url</strong></td>\n<td>URL where picture of this model is hosted.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>is_default</strong></td>\n<td>Determine if the model is the default Image of the product.  <br />When is true, value <code>position</code> of this model is set to <code>0</code>.  <br />Only 1 model per Product has value <code>is_default</code> set to true.</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td><strong>position</strong></td>\n<td>Determine the position of the model among all the models of the same <code>Product</code>.  <br />Begins at zero.  <br />Each model of a <code>Product</code> must have unique position value.</td>\n<td>Integer.</td>\n</tr>\n<tr>\n<td><strong>variants</strong></td>\n<td>Set all the variants attached to this <code>ProductImage</code>. This means, if a the <code>ProductVariant</code> was already attached to this <code>ProductImage</code> and is not present in this array, it will be detached from the ProductImage.  <br />But if this array <code>variants</code> is not in the request, it won't detach any <code>ProductVariant</code> from this <code>ProductImage</code></td>\n<td>Not required. Array of integers. Values must be existing <code>ProductVariant</code> IDs.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","products","images","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"601d09fb-f986-45bc-b04a-4e1e80b8c209","name":"Update a product image","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_product\": 2,\n    \"url\": \"http://myImage.png\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"legend\": \"my image\"\n        },\n        {\n            \"language_id\": 2,\n            \"legend\": \"my image\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/images/16"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 12:52:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e6c5e2bd-eb64-4f93-a1c0-cc6ba2b32ea4"},{"name":"Delete a product image","id":"653e7331-5e6a-4491-b6f8-f47bf4a2868c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/images/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_images.delete</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n","urlObject":{"path":["v1","catalog","products","images","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4f3a4a8e-dfea-4807-bbc7-20049ff7ee02","name":"Delete a product image","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/images/16"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 12:53:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"653e7331-5e6a-4491-b6f8-f47bf4a2868c"}],"id":"7623d076-bb01-4be4-8b19-9d72a22c0285","event":[{"listen":"prerequest","script":{"id":"ca7d373c-28e1-4fe7-8952-eb743a1303d6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5aa12057-b46a-4ce5-97d8-1a1fb4df7669","type":"text/javascript","exec":[""]}}],"_postman_id":"7623d076-bb01-4be4-8b19-9d72a22c0285","description":""},{"name":"Product Offers","item":[{"name":"Get all product offers","id":"b3d02d09-6792-433e-9657-1623627bdb02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_offers.index</code> permission is needed.</p>\n<h2 id=\"parameters-available\">Parameters available</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order[name]</td>\n<td>Orders the <code>ProductOffers</code> by the value that has to match a column of the <code>ProductOffer</code> model: <code>price_tax_inc</code> to order by price, <code>updated_at</code> by last update, <code>created_at</code> by date of creation, <code>quantity</code> by quantity, <code>is_active</code> by the boolean of is_active. Default way if <code>order[way]</code> is not set: <code>asc</code>.</td>\n</tr>\n<tr>\n<td>order[way]</td>\n<td>Way to order the ProductOffers regards to order[name] value. Possible values: <code>desc</code> or <code>asc</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n<p><a href=\"https://origami-marketplace.notion.site/ProductOffer-1e5ffbd9409c48bfa364a9e818da2f97\">ProductOffer</a></p>\n","urlObject":{"path":["v1","catalog","products","variants","offers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b9f138c4-ad15-497e-bad9-3362d0838de3","name":"Get all product offers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/products/variants/offers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 30 Jun 2022 15:16:29 GMT"},{"key":"Etag","value":"\"157e089c45051ffd9deea98b34e47de8f364fd8f\""},{"key":"Ngrok-Agent-Ips","value":"2001:861:3500:72a0:c48:2710:4091:5f87"},{"key":"Ngrok-Trace-Id","value":"f84576c0aa468a42f17285e3c0c0f189"},{"key":"Server","value":"nginx"},{"key":"X-Powered-By","value":"PHP/8.0.16"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"product_id\": 1,\n            \"product_variant_id\": 2,\n            \"seller_id\": 4,\n            \"warehouse_id\": 2,\n            \"tax_id\": 1,\n            \"position\": 1,\n            \"price_tax_exc\": \"46.000000\",\n            \"price_tax_inc\": \"55.200000\",\n            \"price_tax_exc_with_discount\": 46,\n            \"price_tax_inc_with_discount\": 55.2,\n            \"quantity\": 48,\n            \"reference_supplier\": \"STATUE_FOX_ORANGE\",\n            \"is_active\": true,\n            \"unit_type\": \"unit\",\n            \"type\": \"fixed_price\",\n            \"is_default\": true,\n            \"purchase_price_tax_exc\": null,\n            \"additional_shipping_cost\": null,\n            \"minimal_quantity\": 1,\n            \"additional_fees\": [],\n            \"additional_information\": []\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"b3d02d09-6792-433e-9657-1623627bdb02"},{"name":"Get product offer config","id":"439e072d-f41e-4f22-9b8f-c8cd2c623e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers/config","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_offers.show</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<p>None.</p>\n","urlObject":{"path":["v1","catalog","products","variants","offers","config"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"dd4a3fe7-9e52-4071-97b6-2cdce3d22b80","name":"Get product offer config","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/products/variants/offers/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 30 Jun 2022 15:13:55 GMT"},{"key":"Etag","value":"\"b911f63982bdd1fa5409d7d08aa1292ccc9e13ac\""},{"key":"Ngrok-Agent-Ips","value":"2001:861:3500:72a0:c48:2710:4091:5f87"},{"key":"Ngrok-Trace-Id","value":"ebd31865ef92f646f2b668997eb37a15"},{"key":"Server","value":"nginx"},{"key":"X-Powered-By","value":"PHP/8.0.16"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"types\": [\n        \"fixed_price\",\n        \"subscription\",\n        \"quote\",\n        \"booking\",\n        \"punchout\"\n    ],\n    \"unit_types\": {\n        \"fixed_price\": [\n            \"unit\"\n        ],\n        \"subscription\": [\n            \"annual\",\n            \"monthly\"\n        ],\n        \"quote\": [\n            \"unit\"\n        ],\n        \"booking\": [\n            \"unit\"\n        ],\n        \"punchout\": [\n            \"unit\"\n        ]\n    }\n}"}],"_postman_id":"439e072d-f41e-4f22-9b8f-c8cd2c623e7f"},{"name":"Get a product offer","id":"3c0bc4f1-5e3d-44d3-b9e0-68b130809236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers/{{id}}","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_offers.show</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<p>None.</p>\n<p><strong>MODEL</strong></p>\n<p><a href=\"https://origami-marketplace.notion.site/ProductOffer-1e5ffbd9409c48bfa364a9e818da2f97\">ProductOffer</a></p>\n","urlObject":{"path":["v1","catalog","products","variants","offers","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e992afe7-f4db-4d13-869a-61c8ceecaf78","name":"Get a product offer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/products/variants/offers/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 30 Jun 2022 15:11:56 GMT"},{"key":"Etag","value":"\"d76aad34c73bbd477bef269cef9d23594e503fc1\""},{"key":"Ngrok-Agent-Ips","value":"2001:861:3500:72a0:c48:2710:4091:5f87"},{"key":"Ngrok-Trace-Id","value":"ec8cda7d10afcb7936aa28300487f44d"},{"key":"Server","value":"nginx"},{"key":"X-Powered-By","value":"PHP/8.0.16"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 9,\n        \"product_id\": 7,\n        \"product_variant_id\": 11,\n        \"seller_id\": 3,\n        \"warehouse_id\": 1,\n        \"tax_id\": 1,\n        \"position\": 0,\n        \"price_tax_exc\": \"20.000000\",\n        \"price_tax_inc\": \"24.000000\",\n        \"price_tax_exc_with_discount\": 11.666666666666668,\n        \"price_tax_inc_with_discount\": 14,\n        \"quantity\": 1,\n        \"reference_supplier\": \"P1LQ1730802028526652\",\n        \"is_active\": true,\n        \"unit_type\": \"unit\",\n        \"type\": \"fixed_price\",\n        \"is_default\": true,\n        \"purchase_price_tax_exc\": \"20.000000\",\n        \"additional_shipping_cost\": null,\n        \"minimal_quantity\": 1,\n        \"additional_fees\": [],\n        \"additional_information\": []\n    }\n}"}],"_postman_id":"3c0bc4f1-5e3d-44d3-b9e0-68b130809236"},{"name":"Create a product offer","id":"51c89a3e-03eb-4b62-a493-d1996e80f825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": 1,\n    \"product_variant_id\": 2,\n    \"seller_id\": 7,\n    \"tax_id\": 1,\n    \"price_tax_exc\": 12,\n    \"quantity\": 1,\n    \"position\": 1,\n    \"reference_supplier\": \"REF\"\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_offers.create</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>product_id</strong></td>\n<td>Id of the <code>Product</code> linked to this model.</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>product_variant_id</strong></td>\n<td>Id of the <code>ProductVariant</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>Id of the <code>Seller</code> who owns this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>tax_id</strong></td>\n<td>Id of the <code>Tax</code> linked to this model</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><strong>price_tax_exc</strong></td>\n<td>The product offer price tax excluded</td>\n<td>Float</td>\n</tr>\n<tr>\n<td><strong>quantity</strong></td>\n<td>The product offer quantity</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><strong>position</strong></td>\n<td>The position of product offer on front when displaying the associated product</td>\n<td>Integer. Default: 0</td>\n</tr>\n<tr>\n<td><strong>reference_supplier</strong></td>\n<td>The product offer reference of the associated seller</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n<p><a href=\"https://origami-marketplace.notion.site/ProductOffer-1e5ffbd9409c48bfa364a9e818da2f97\">ProductOffer</a></p>\n","urlObject":{"path":["v1","catalog","products","variants","offers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a97e9b96-acd3-4cf1-8101-dccf9b98e70e","name":"Create a product offer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": 1,\n    \"product_variant_id\": 2,\n    \"seller_id\": 7,\n    \"tax_id\": 1,\n    \"price_tax_exc\": 12,\n    \"quantity\": 1,\n    \"position\": 100,\n    \"reference_supplier\": \"REF\"\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/products/variants/offers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 30 Jun 2022 14:52:58 GMT"},{"key":"Etag","value":"\"7344efc904a6cbee17607bf66164be9d1abd1360\""},{"key":"Location","value":""},{"key":"Ngrok-Agent-Ips","value":"2001:861:3500:72a0:c48:2710:4091:5f87"},{"key":"Ngrok-Trace-Id","value":"1fc91265e971fe5863181d0fdb0f0701"},{"key":"Server","value":"nginx"},{"key":"X-Powered-By","value":"PHP/8.0.16"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 10,\n        \"product_id\": 1,\n        \"product_variant_id\": 2,\n        \"seller_id\": 7,\n        \"warehouse_id\": 3,\n        \"tax_id\": 1,\n        \"position\": 100,\n        \"price_tax_exc\": \"12.000000\",\n        \"price_tax_inc\": \"14.400000\",\n        \"price_tax_exc_with_discount\": 12,\n        \"price_tax_inc_with_discount\": 14.4,\n        \"quantity\": 1,\n        \"reference_supplier\": \"REF\",\n        \"is_active\": true,\n        \"unit_type\": \"unit\",\n        \"type\": \"fixed_price\",\n        \"is_default\": false,\n        \"purchase_price_tax_exc\": null,\n        \"additional_shipping_cost\": null,\n        \"minimal_quantity\": 1,\n        \"additional_fees\": [],\n        \"additional_information\": []\n    }\n}"}],"_postman_id":"51c89a3e-03eb-4b62-a493-d1996e80f825"},{"name":"Update a product offer","id":"4ae8864b-faf5-44c7-92f2-1f0bf9e1c0bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quantity\": 3\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers/1","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_offers.update</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>product_id</strong></td>\n<td>Id of the <code>Product</code> linked to this model.</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>product_variant_id</strong></td>\n<td>Id of the <code>ProductVariant</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>Id of the <code>Seller</code> who owns this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>tax_id</strong></td>\n<td>Id of the <code>Tax</code> linked to this model</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><strong>price_tax_exc</strong></td>\n<td>The product offer price tax excluded</td>\n<td>Float</td>\n</tr>\n<tr>\n<td><strong>quantity</strong></td>\n<td>The product offer quantity</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><strong>position</strong></td>\n<td>The position of product offer on front when displaying the associated product</td>\n<td>Integer. Default: 0</td>\n</tr>\n<tr>\n<td><strong>reference_supplier</strong></td>\n<td>The product offer reference of the associated seller</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n<p><a href=\"https://origami-marketplace.notion.site/ProductOffer-1e5ffbd9409c48bfa364a9e818da2f97\">ProductOffer</a></p>\n","urlObject":{"path":["v1","catalog","products","variants","offers","1"],"host":["{{domain}}"],"query":[{"disabled":true,"key":"id","value":null}],"variable":[]}},"response":[{"id":"ae4b2ad2-7663-48b4-8d10-e4514a4ccb99","name":"Update a product offer","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": 1,\n    \"product_variant_id\": 2,\n    \"seller_id\": 7,\n    \"tax_id\": 1,\n    \"price_tax_exc\": 20,\n    \"quantity\": 1,\n    \"position\": 1,\n    \"reference_supplier\": \"REF\"\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/catalog/products/variants/offers/{{id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 30 Jun 2022 15:06:37 GMT"},{"key":"Etag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Ngrok-Agent-Ips","value":"2001:861:3500:72a0:c48:2710:4091:5f87"},{"key":"Ngrok-Trace-Id","value":"891ff67f657e09ada59e7ec6435070c1"},{"key":"Server","value":"nginx"},{"key":"X-Powered-By","value":"PHP/8.0.16"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4ae8864b-faf5-44c7-92f2-1f0bf9e1c0bc"},{"name":"Delete a product offer","id":"98beef5b-a930-4de3-a8f2-693de12efa91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers/{{id}}","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_offers.delete</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<p>None.</p>\n","urlObject":{"path":["v1","catalog","products","variants","offers","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7387eec5-8546-473f-a54e-0d7e4aeb5f04","name":"Delete a product offer","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers/{{id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 30 Jun 2022 15:09:18 GMT"},{"key":"Etag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Ngrok-Agent-Ips","value":"2001:861:3500:72a0:c48:2710:4091:5f87"},{"key":"Ngrok-Trace-Id","value":"5ad4641d18982b5a8671d29e74deb852"},{"key":"Server","value":"nginx"},{"key":"X-Powered-By","value":"PHP/8.0.16"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"98beef5b-a930-4de3-a8f2-693de12efa91"}],"id":"dc97eb97-01e7-486f-976d-fd3cfec8bcac","event":[{"listen":"prerequest","script":{"id":"59efc44b-b6f8-448c-a1ac-5290d0b9e0ba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"76c2e61d-12a0-4e65-a5fd-697f9c59e706","type":"text/javascript","exec":[""]}}],"_postman_id":"dc97eb97-01e7-486f-976d-fd3cfec8bcac","description":""},{"name":"Product Offer Specific Price Rules","item":[{"name":"Get all product offer specific price rules","id":"48c49f65-2f60-4e6f-8f06-be315692e682","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers/specific_price_rules","urlObject":{"path":["v1","catalog","products","variants","offers","specific_price_rules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3efd076e-844d-4df3-899b-00078d80ff59","name":"Get all product offer specific price rules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/offers/specific_price_rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 13:52:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"76dffd2cb3d0868c0236096f2c8b156f83cc06ff\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"value_type\": \"flat\",\n            \"begin_date\": null,\n            \"end_date\": null,\n            \"impact_on_price_tax_inc\": 1,\n            \"value\": \"10.000000\",\n            \"customer_group_id\": null,\n            \"from_quantity\": null,\n            \"name\": null\n        },\n        {\n            \"id\": 2,\n            \"value_type\": \"percentage\",\n            \"begin_date\": null,\n            \"end_date\": null,\n            \"impact_on_price_tax_inc\": 1,\n            \"value\": \"10.000000\",\n            \"customer_group_id\": null,\n            \"from_quantity\": null,\n            \"name\": null\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"48c49f65-2f60-4e6f-8f06-be315692e682"},{"name":"Create a product offer specific price rule","id":"0bd8e771-7ba5-4dc7-8514-1bfb6fae67ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"begin_date\": \"2020-08-01\",\n    \"end_date\": \"2020-09-01\",\n    \"impact_on_price_tax_inc\": true,\n    \"value_type\": \"percentage\",\n    \"value\": 20,\n    \"customer_group_id\": null,\n    \"from_quantity\": null,\n    \"name\": \"My rule\"\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers/specific_price_rules","description":"<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>begin_date</strong></td>\n<td>The begin date from which the specific price rule will be applied</td>\n<td>Date.</td>\n</tr>\n<tr>\n<td><strong>end_date</strong></td>\n<td>The end date from which the specific price rule will not be applied</td>\n<td>Date.</td>\n</tr>\n<tr>\n<td><strong>impact_on_price_tax_inc</strong></td>\n<td>Will define if the specific price rule will be applied on the offer <code>price_tax_inc</code> or <code>price_tax_exc</code>. If <code>true</code> the specific price rule will be applied on <code>price_tax_inc</code>.</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td><strong>value_type</strong></td>\n<td>The type of the specific price rule.</td>\n<td>String. Choose between <code>flat</code> or <code>percentage</code>.</td>\n</tr>\n<tr>\n<td><strong>value</strong></td>\n<td>The value of the specific price rule.</td>\n<td>Integer.</td>\n</tr>\n<tr>\n<td><strong>customer_group_id</strong></td>\n<td>The customer group id (from model <code>CustomerGroup</code> ) on which the specific price rule will be applied.</td>\n<td>Integer.</td>\n</tr>\n<tr>\n<td><strong>from_quantity</strong></td>\n<td>The minimum quantity from which the specific price rule will be applied.</td>\n<td>Integer.</td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td>The name of the specific price rule.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td><strong>offers</strong></td>\n<td>Should add the created specific price rule to all <code>ProductOffer</code> listed in this array.</td>\n<td>Array of integer.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","products","variants","offers","specific_price_rules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"87dc77de-bd54-48f9-a20a-f781c1bc0dc0","name":"Create a product offer specific price rule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"begin_date\": \"2020-08-01\",\n    \"end_date\": \"2020-09-01\",\n    \"impact_on_price_tax_inc\": true,\n    \"value_type\": \"percentage\",\n    \"value\": 20,\n    \"customer_group_id\": null,\n    \"from_quantity\": null,\n    \"name\": \"My rule\"\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers/specific_price_rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 13:54:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"a2157e6286298ee33d0459f052566ec115da2713\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"value_type\": \"percentage\",\n        \"begin_date\": \"2020-08-01 00:00:00\",\n        \"end_date\": \"2020-09-01 00:00:00\",\n        \"impact_on_price_tax_inc\": 1,\n        \"value\": \"20.000000\",\n        \"customer_group_id\": null,\n        \"from_quantity\": null,\n        \"name\": \"My rule\"\n    }\n}"}],"_postman_id":"0bd8e771-7ba5-4dc7-8514-1bfb6fae67ff"},{"name":"Add a specific price on a product offer","id":"6eeeca43-c597-4ef3-81bc-de0b532c228b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"rules\": [\n        {\n            \"id\": \"1\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers/14/specific_price_rules","urlObject":{"path":["v1","catalog","products","variants","offers","14","specific_price_rules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2fe2a0a3-0832-4f59-bfe5-cb5c52c9a69e","name":"Add a specific price on a product offer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"rules\": [\n        {\n            \"id\": \"1\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers/14/specific_price_rules"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 13:56:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6eeeca43-c597-4ef3-81bc-de0b532c228b"},{"name":"Delete a specific price from a product offer","id":"da83bddc-8c32-4908-a72f-83cef3f35961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"rules\": [\n        {\n            \"id\": \"1\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants/offers/14/specific_price_rules","urlObject":{"path":["v1","catalog","products","variants","offers","14","specific_price_rules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"da83bddc-8c32-4908-a72f-83cef3f35961"}],"id":"16201c40-eb87-4f5a-bbaa-f03ab2a3801c","event":[{"listen":"prerequest","script":{"id":"7875586c-1de6-4854-85e8-ed4331db1bbd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"901b2540-cfe2-413f-b895-ba5136c48de9","type":"text/javascript","exec":[""]}}],"_postman_id":"16201c40-eb87-4f5a-bbaa-f03ab2a3801c","description":""},{"name":"Product Variant","item":[{"name":"Get all product variants","id":"85a9666f-1ae9-411b-bacb-d5b57c2f5e18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_variants.index</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductVariant-d96d57787d11448fa1f4d09fd1906139\">ProductVariant</a></p>\n","urlObject":{"path":["v1","catalog","products","variants"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ac63cc8c-0e45-44aa-9ef2-1ef29743a44b","name":"Get all product variants","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 13:59:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"718b188ce9381ddb9f62c72d121bf3c64c6b69ad\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3,\n            \"product_id\": 3,\n            \"is_base\": 1,\n            \"is_default\": 1,\n            \"reference\": \"P1507634275\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 4,\n            \"product_id\": 2,\n            \"is_base\": 0,\n            \"is_default\": 1,\n            \"reference\": \"P1561988534-2\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 5,\n            \"product_id\": 2,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1561988534-3\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 6,\n            \"product_id\": 2,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1561988534-4\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 8,\n            \"product_id\": 4,\n            \"is_base\": 0,\n            \"is_default\": 1,\n            \"reference\": \"P1167969096-2\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 9,\n            \"product_id\": 4,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1167969096-3\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 10,\n            \"product_id\": 4,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1167969096-4\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 11,\n            \"product_id\": 5,\n            \"is_base\": 1,\n            \"is_default\": 1,\n            \"reference\": \"P1079929397\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 12,\n            \"product_id\": 1,\n            \"is_base\": 0,\n            \"is_default\": 1,\n            \"reference\": \"P1364848329-2\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.1000\",\n            \"height\": \"0.2000\",\n            \"depth\": \"0.1500\",\n            \"weight\": 2000,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 13,\n            \"product_id\": 1,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1364848329-3\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 14,\n            \"product_id\": 1,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1364848329-4\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 15,\n            \"product_id\": 1,\n            \"is_base\": 0,\n            \"is_default\": 0,\n            \"reference\": \"P1364848329-5\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 36,\n            \"product_id\": 26,\n            \"is_base\": 1,\n            \"is_default\": 1,\n            \"reference\": \"P1276152034\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 37,\n            \"product_id\": 27,\n            \"is_base\": 1,\n            \"is_default\": 1,\n            \"reference\": \"P670937195\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        },\n        {\n            \"id\": 38,\n            \"product_id\": 28,\n            \"is_base\": 1,\n            \"is_default\": 1,\n            \"reference\": \"P599715664\",\n            \"ean13\": null,\n            \"upc\": null,\n            \"width\": \"0.0000\",\n            \"height\": \"0.0000\",\n            \"depth\": \"0.0000\",\n            \"weight\": 0,\n            \"sort_offers_method\": \"manual\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 15,\n            \"count\": 15,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"85a9666f-1ae9-411b-bacb-d5b57c2f5e18"},{"name":"Get a product variant","id":"74462970-9b6a-4f37-ade3-b4a172959e72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_variants.show</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductVariant-d96d57787d11448fa1f4d09fd1906139\">ProductVariant</a></p>\n","urlObject":{"path":["v1","catalog","products","variants","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"30bad5ad-6a41-4fc5-8447-57495fa12b4e","name":"Get a product variant","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 14:00:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"ac2b34d6280468a02027fee526578b7b258ab74e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"product_id\": 3,\n        \"is_base\": 1,\n        \"is_default\": 1,\n        \"reference\": \"P1507634275\",\n        \"ean13\": null,\n        \"upc\": null,\n        \"width\": \"0.0000\",\n        \"height\": \"0.0000\",\n        \"depth\": \"0.0000\",\n        \"weight\": 0,\n        \"sort_offers_method\": \"manual\"\n    }\n}"}],"_postman_id":"74462970-9b6a-4f37-ade3-b4a172959e72"},{"name":"Create a product variant","id":"537737e6-9210-42d7-8963-80f779df56f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"REF_VARIANT\",\n    \"product_id\": 28,\n    \"ean13\": \"1234567891011\",\n    \"upc\": null,\n    \"width\": \"50\",\n    \"height\": \"50\",\n    \"depth\": \"50\",\n    \"weight\": \"50\",\n    \"sort_offers_method\": \"cheaper\",\n    \"attribute_values\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_variants.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>product_id</strong></td>\n<td></td>\n<td>Integer. Required. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td><strong>is_base</strong></td>\n<td>If not set, will be filled with \"0\".</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td><strong>is_default</strong></td>\n<td>Determine if the <code>ProductVariant</code> is the default variant of the <code>Product</code>.</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>The reference of the <code>ProductVariant</code>. If not set, will be filled with the reference of the Product associated (which id is <strong>product_id</strong>), followed by a dash (-) and the number of variants, counting this new ProductVariant.</td>\n<td>String. Must be unique.</td>\n</tr>\n<tr>\n<td><strong>ean13</strong></td>\n<td>EAN13 of the <code>ProductVariant</code>.</td>\n<td>String. Must respect structure of EAN13. Can be <code>null</code>.</td>\n</tr>\n<tr>\n<td><strong>upc</strong></td>\n<td>UPC of the <code>ProductVariant</code>.</td>\n<td>Can be <code>null</code>.</td>\n</tr>\n<tr>\n<td><strong>width</strong></td>\n<td>Width of the ProductVariant in meters. If not set, will be filled with \"0.0000\".</td>\n<td>Float. Must not be present if the field <code>shipping_pack_id</code> is present.</td>\n</tr>\n<tr>\n<td><strong>height</strong></td>\n<td>Height of the ProductVariant in meters. If not set, will be filled with \"0.0000\".</td>\n<td>Float. Must not be present if the field <code>shipping_pack_id</code> is present.</td>\n</tr>\n<tr>\n<td><strong>depth</strong></td>\n<td>Depth of the ProductVariant in meters. If not set, will be filled with \"0.0000\".</td>\n<td>Float. Must not be present if the field <code>shipping_pack_id</code> is present.</td>\n</tr>\n<tr>\n<td><strong>weight</strong></td>\n<td>Weight of the ProductVariant in grams. If not set, will be filled with \"0.0000\".</td>\n<td>Float. Must not be present if the field <code>shipping_pack_id</code> is present.</td>\n</tr>\n<tr>\n<td><strong>shipping_pack_id</strong></td>\n<td>Id of the <code>ShippingPack</code> that will be used to fill the fields <code>width</code>, <code>height</code>, <code>depth</code> and <code>weight</code> automatically.</td>\n<td>Must not be present if any of the fields <code>width</code>, <code>height</code>, <code>depth</code> and <code>weight</code> are present. Must be an existing <code>ShippingPack</code> ID</td>\n</tr>\n<tr>\n<td><strong>sort_offers_method</strong></td>\n<td>Defines the way of sorting list of the <code>ProductOffers</code> which are attached to this <code>ProductVariant</code>. If not set, will be filled with the value of the marketplace offer configuration <code>default_sort_offer</code> (this one is set by default to \"cheaper\").</td>\n<td>Only one of these values : <code>cheaper</code>, <code>manual</code>. Can be <code>null</code>. \"cheaper\" results display of <code>ProductOffers</code> linked to this <code>ProductVariant</code> from low to high prices . \"manual\" results display of these <code>ProductOffers</code> using their <code>position</code> value.</td>\n</tr>\n<tr>\n<td><strong>attribute_values</strong></td>\n<td>The attribute values you wish to define on this ProductVariant. Each of these values must belong to an AttributeType that is permitted for this ProductVariant.</td>\n<td>Array.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[][id]</strong></td>\n<td>Id of the AttributeValue.</td>\n<td>Integer. Required if <code>attribute_values[][attribute_type_id]</code> is not present. Must be a <code>AttributeValue</code> id.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[][attribute_type_id]</strong></td>\n<td>Allows to create <code>AttributeValues</code> with their translations, and attach them to the new <code>ProductVariant</code> created. If a value already exists (regarding <code>attribute_values[\\\\\\\\\\*][translations]</code> and <code>attribute_values[\\\\\\\\\\*][attribute_type_id]</code>), the existing <code>attributeValue</code> is attached to the new <code>ProductVariant</code>.</td>\n<td>Required if <code>attribute_values[][id]</code> is not present.  <br />Integer. Must be an <code>AttributeType</code> id.  <br />This related <code>AttributeType</code> must have <code>allow_custom_values</code> to <code>true</code>.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[][color]</strong></td>\n<td>Color of <code>AttributeValue</code> that should be created or attached to thie new <code>ProductVariant</code>.</td>\n<td>Required if <code>attribute_values[][id]</code> is not present.  <br />String.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[][translations]</strong></td>\n<td>Translation(s) of <code>AttributeValue</code> that should be created or attached to this new <code>ProductVariant</code>.</td>\n<td>Required if <code>attribute_values[][id]</code> is not present.  <br />Array.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[][translations][][language_id]</strong></td>\n<td></td>\n<td>Required if <code>attribute_values[][id]</code> is not present.  <br />Integer. Must be a <code>Language</code> id.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[][translations][][name]</strong></td>\n<td></td>\n<td>Required if <code>attribute_values[][id]</code> is not present.  <br />String.</td>\n</tr>\n<tr>\n<td><strong>offers</strong></td>\n<td>Should create a list of offer related to the variant</td>\n<td>Array</td>\n</tr>\n<tr>\n<td><strong>offers[][seller_id]</strong></td>\n<td>ID of the seller ( <code>UserGroup</code> ) who owns the offer</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td><strong>offers[][tax_id]</strong></td>\n<td>ID of the tax ( <code>Tax</code> )</td>\n<td>Integer. If not filled, the default tax of the seller will be apply.</td>\n</tr>\n<tr>\n<td><strong>offers[][price_tax_exc]</strong></td>\n<td>The price without tax of the offer</td>\n<td>Float. If not filled, the default value will be <code>0</code>.</td>\n</tr>\n<tr>\n<td><strong>offers[][quantity]</strong></td>\n<td>The available quantity of the offer</td>\n<td>Integer. If not filled, this value will be <code>null</code>.</td>\n</tr>\n<tr>\n<td><strong>offers[][position]</strong></td>\n<td>The position of the offer</td>\n<td>Integer. If not filled, the default value will be <code>0</code>.</td>\n</tr>\n<tr>\n<td><strong>offers[][reference_supplier]</strong></td>\n<td>The reference of the offer</td>\n<td>String. If not filled, the default value will be <code>null</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<p><a href=\"https://origami-marketplace.notion.site/ProductVariant-d96d57787d11448fa1f4d09fd1906139\">ProductVariant</a></p>\n","urlObject":{"path":["v1","catalog","products","variants"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"14bc9ee1-8a2f-4b45-9fb6-0450b96c7aae","name":"Create a product variant","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"REF_VARIANT\",\n    \"product_id\": 28,\n    \"ean13\": \"1234567891011\",\n    \"upc\": null,\n    \"width\": \"50\",\n    \"height\": \"50\",\n    \"depth\": \"50\",\n    \"weight\": \"50\",\n    \"sort_offers_method\": \"cheaper\",\n    \"attribute_values\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 14:03:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"261c43847a33e3a932781047be1f9b2b2a6976a7\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 44,\n        \"product_id\": 28,\n        \"is_base\": 0,\n        \"is_default\": 1,\n        \"reference\": \"REF_VARIANT\",\n        \"ean13\": \"1234567891011\",\n        \"upc\": null,\n        \"width\": \"50.0000\",\n        \"height\": \"50.0000\",\n        \"depth\": \"50.0000\",\n        \"weight\": 50,\n        \"sort_offers_method\": \"cheaper\"\n    }\n}"}],"_postman_id":"537737e6-9210-42d7-8963-80f779df56f0"},{"name":"Update a product variant","id":"cc6d24a5-e7a5-43bb-ad59-94b0fce520a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"REF_VARIANT\",\n    \"product_id\": 28,\n    \"ean13\": \"1234567891011\",\n    \"upc\": null,\n    \"width\": \"50\",\n    \"height\": \"50\",\n    \"depth\": \"50\",\n    \"weight\": \"50\",\n    \"sort_offers_method\": \"cheaper\",\n    \"attribute_values\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_variants.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>product_id</strong></td>\n<td></td>\n<td>Integer. Required. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td><strong>is_base</strong></td>\n<td>If not set, will be filled with \"0\".</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td><strong>is_default</strong></td>\n<td>Determine if the <code>ProductVariant</code> is the default variant of the <code>Product</code>.</td>\n<td>Boolean.</td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>The reference of the <code>ProductVariant</code>. If not set, will be filled with the reference of the Product associated (which id is <strong>product_id</strong>), followed by a dash (-) and the number of variants, counting this new ProductVariant.</td>\n<td>String. Must be unique.</td>\n</tr>\n<tr>\n<td><strong>ean13</strong></td>\n<td>EAN13 of the <code>ProductVariant</code>.</td>\n<td>String. Must respect structure of EAN13. Can be <code>null</code>.</td>\n</tr>\n<tr>\n<td><strong>upc</strong></td>\n<td>UPC of the <code>ProductVariant</code>.</td>\n<td>Can be <code>null</code>.</td>\n</tr>\n<tr>\n<td><strong>width</strong></td>\n<td>Width of the ProductVariant. If not set, will be filled with \"0.0000\".</td>\n<td>Float.</td>\n</tr>\n<tr>\n<td><strong>height</strong></td>\n<td>Height of the ProductVariant. If not set, will be filled with \"0.0000\".</td>\n<td>Float.</td>\n</tr>\n<tr>\n<td><strong>depth</strong></td>\n<td>Depth of the ProductVariant. If not set, will be filled with \"0.0000\".</td>\n<td>Float.</td>\n</tr>\n<tr>\n<td><strong>weight</strong></td>\n<td>Weight of the ProductVariant. If not set, will be filled with \"0.0000\".</td>\n<td>Float.</td>\n</tr>\n<tr>\n<td><strong>sort_offers_method</strong></td>\n<td>Defines the way of sorting list of the <code>ProductOffers</code> which are attached to this <code>ProductVariant</code>. If not set, will be filled with the value of the marketplace offer configuration <code>default_sort_offer</code> (this one is set by default to \"cheaper\").</td>\n<td>Only one of these values : <code>cheaper</code>, <code>manual</code>. Can be <code>null</code>. \"cheaper\" results display of <code>ProductOffers</code> linked to this <code>ProductVariant</code> from low to high prices . \"manual\" results display of these <code>ProductOffers</code> using their <code>position</code> value.</td>\n</tr>\n<tr>\n<td><strong>attribute_values</strong></td>\n<td>The attribute values you wish to define on this ProductVariant. Each of these values must belong to an AttributeType that is permitted for this ProductVariant.</td>\n<td>Array.</td>\n</tr>\n<tr>\n<td><strong>attribute_values[*][id]</strong></td>\n<td>Id of the AttributeValue.</td>\n<td>Integer. Required. Must be a <code>AttributeValue</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","products","variants","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b860828c-dc5c-4101-8c5f-290778fa9e30","name":"Update a product variant","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"REF_VARIANT\",\n    \"product_id\": 28,\n    \"ean13\": \"1234567891011\",\n    \"upc\": null,\n    \"width\": \"50\",\n    \"height\": \"50\",\n    \"depth\": \"50\",\n    \"weight\": \"50\",\n    \"sort_offers_method\": \"cheaper\",\n    \"attribute_values\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/variants/44"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 14:05:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cc6d24a5-e7a5-43bb-ad59-94b0fce520a9"},{"name":"Delete a product variant","id":"aa457f90-eeca-4a49-b494-178e5e9e1664","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/{{id}}","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_variants.delete</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None.</p>\n","urlObject":{"path":["v1","catalog","products","variants","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0ba0001a-a6af-4540-8fa1-13cb34344865","name":"Delete a product variant","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/variants/44"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 14:05:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"aa457f90-eeca-4a49-b494-178e5e9e1664"}],"id":"5ec45afa-a3dd-4a04-8a6f-98569e6a593c","description":"<p>More information about ProductVariant management : <a href=\"https://origami-marketplace.notion.site/ProductVariant-management-93cdd8882e3c432f829cb53c3ad7e843\">ProductVariant documentation</a></p>\n<p>Model documentation : <a href=\"https://origami-marketplace.notion.site/ProductVariant-d96d57787d11448fa1f4d09fd1906139\">ProductVariant</a></p>\n<h2 id=\"permissions\">Permissions</h2>\n","event":[{"listen":"prerequest","script":{"id":"60dcaebd-3cb4-4a0b-bad5-03b313e3ef5b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fd89d5b9-034a-4453-a2b1-74f49ac0d730","type":"text/javascript","exec":[""]}}],"_postman_id":"5ec45afa-a3dd-4a04-8a6f-98569e6a593c"},{"name":"Product Customizations","item":[{"name":"Create a product customization","id":"ed9600df-762e-4146-b963-65019dc0e799","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"text\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Texte\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Text\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/customizations","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_customizations.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>Type of the model</td>\n<td>Required. Only value from these: <code>text</code> or <code>file</code>.</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>Id of the <code>Product</code> linked to this model</td>\n<td>Required. Integer. Must be a <code>Product</code> ID.</td>\n</tr>\n<tr>\n<td>translations.*.name</td>\n<td>Name displayed on front-office</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>translations.*.language_id</td>\n<td>ID of language used to create the name</td>\n<td>Required. Existing ID of a language.</td>\n</tr>\n<tr>\n<td>required</td>\n<td>Determine if the model is required.</td>\n<td>Boolean. Default value: <code>false</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalog","products","customizations"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a2850c2c-491a-4b06-a561-84190798086f","name":"Create a product customization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"text\",\n    \"required\": \"1\",\n    \"product_id\": \"23589\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Texte personnalisé\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom text\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/customizations"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ed9600df-762e-4146-b963-65019dc0e799"},{"name":"Update a product customization","id":"79599013-7efd-44b3-a598-b630dcde932d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"text\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Texte\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Text\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/customizations/1","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_customizations.update</code> permission is needed.</p>\n","urlObject":{"path":["v1","catalog","products","customizations","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"122949f1-6760-4b2b-8414-62d05f30eb1c","name":"Update a product customization","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"text\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Texte\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Text\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/catalog/products/customizations/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 09:59:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"79599013-7efd-44b3-a598-b630dcde932d"},{"name":"Delete a product customization","id":"522899f3-af93-4313-8ccc-21e611ab6555","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/customizations/1","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>product_customizations.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","catalog","products","customizations","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6c7a617a-c796-413c-963c-a4ef663d7528","name":"Delete a product customization","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/products/customizations/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Thu, 29 Oct 2020 10:00:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"522899f3-af93-4313-8ccc-21e611ab6555"}],"id":"1a3bc722-8132-4e4b-bd8c-470025673afa","description":"<p>Documentation : <a href=\"https://origami-marketplace.notion.site/ProductCustomization-management-ad838262853c47e7bff86b89c17784a0\">Product Customization Management</a></p>\n<p>Model documentation: <a href=\"https://origami-marketplace.notion.site/ProductCustomization-837f312fbc0b4b838f37637750c0bf58\">ProductCustomization</a></p>\n","_postman_id":"1a3bc722-8132-4e4b-bd8c-470025673afa"}],"id":"d9e989c9-0393-49c0-82e6-12539337c3c3","description":"<p>Model documentation: <a href=\"https://origami-marketplace.notion.site/Product-fb475aeecae54c6bafc9c4bb3256970c\">Product</a></p>\n","event":[{"listen":"prerequest","script":{"id":"bae71494-2a77-4697-ad61-f2e100eb9df7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d46c9fda-dd50-4a4f-b9f6-2d8b22a5d03e","type":"text/javascript","exec":[""]}}],"_postman_id":"d9e989c9-0393-49c0-82e6-12539337c3c3"},{"name":"Vouchers","item":[{"name":"List all vouchers","id":"7262af23-627e-4e7a-8ac0-0503f8fd8d1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/attributes/types","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","catalog","attributes","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"81c1b391-a099-4448-b967-781de8387652","name":"List all vouchers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/vouchers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:08:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"c7e70ff0229a8a28d814573b0155297da6f3d235\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"reduction 10%\",\n            \"date_begin\": \"2020-10-26 14:58:52\",\n            \"date_end\": \"2020-11-26 14:58:52\",\n            \"description\": \"reduction 10%\",\n            \"quantity\": 1,\n            \"quantity_per_user\": 1,\n            \"priority\": 1,\n            \"partial_use\": 1,\n            \"code\": \"REDUC10\",\n            \"minimum_amount\": \"0.00\",\n            \"minimum_amount_tax\": 0,\n            \"minimum_amount_shipping\": 0,\n            \"free_shipping\": 0,\n            \"reduction_type\": \"percent\",\n            \"reduction_amount\": \"10.00\",\n            \"reduction_tax\": 1,\n            \"reduction_exclude_special\": 0,\n            \"highlight\": 0,\n            \"is_active\": 1,\n            \"mp_ratio\": \"80.00\",\n            \"seller_id\": 6,\n            \"created_at\": \"2020-10-26T14:59:25.000000Z\",\n            \"updated_at\": \"2020-10-26T14:59:25.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"7262af23-627e-4e7a-8ac0-0503f8fd8d1f"},{"name":"Get a voucher","id":"eeeb51a1-8f1c-4761-906b-2734d6623d24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/attributes/types/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","catalog","attributes","types","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"518ea51c-1fe4-46ff-bef6-223c7374b849","name":"Get a voucher","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/catalog/vouchers/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:08:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"a15907f35097faa998286a06d4e0d00c574795e5\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"reduction 10%\",\n        \"date_begin\": \"2020-10-26 14:58:52\",\n        \"date_end\": \"2020-11-26 14:58:52\",\n        \"description\": \"reduction 10%\",\n        \"quantity\": 1,\n        \"quantity_per_user\": 1,\n        \"priority\": 1,\n        \"partial_use\": 1,\n        \"code\": \"REDUC10\",\n        \"minimum_amount\": \"0.00\",\n        \"minimum_amount_tax\": 0,\n        \"minimum_amount_shipping\": 0,\n        \"free_shipping\": 0,\n        \"reduction_type\": \"percent\",\n        \"reduction_amount\": \"10.00\",\n        \"reduction_tax\": 1,\n        \"reduction_exclude_special\": 0,\n        \"highlight\": 0,\n        \"is_active\": 1,\n        \"mp_ratio\": \"80.00\",\n        \"seller_id\": 6,\n        \"created_at\": \"2020-10-26T14:59:25.000000Z\",\n        \"updated_at\": \"2020-10-26T14:59:25.000000Z\"\n    }\n}"}],"_postman_id":"eeeb51a1-8f1c-4761-906b-2734d6623d24"},{"name":"Create a voucher","id":"9890c633-6c1a-4069-b2ef-66bdf9065e42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Reduction 20%\",\n  \"date_begin\": \"2020-01-01\",\n  \"date_end\": \"2020-02-01\",\n  \"description\": \"Lorem ipsum\",\n  \"quantity\": \"100\",\n  \"quantity_per_user\": \"1\",\n  \"priority\": \"1\",\n  \"partial_use\": false,\n  \"code\": \"REDUCT20\",\n  \"minimum_amount\": 0,\n  \"minimum_amount_tax\": 0,\n  \"minimum_amount_shipping\": 0,\n  \"free_shipping\": false,\n  \"reduction_type\": \"percent\",\n  \"reduction_amount\": 20,\n  \"reduction_tax\": true,\n  \"reduction_exclude_special\": false,\n  \"highlight\": false,\n  \"is_active\": true,\n  \"mp_ratio\": 100,\n  \"seller_id\": 2\n}"},"url":"{{domain}}/v1/catalog/vouchers","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","vouchers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"07566afb-1929-4920-b26f-97c2fcae669d","name":"Create a voucher","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Reduction 20%\",\n  \"date_begin\": \"2020-01-01\",\n  \"date_end\": \"2020-02-01\",\n  \"description\": \"Lorem ipsum\",\n  \"quantity\": \"100\",\n  \"quantity_per_user\": \"1\",\n  \"priority\": \"1\",\n  \"partial_use\": false,\n  \"code\": \"REDUCT20\",\n  \"minimum_amount\": 0,\n  \"minimum_amount_tax\": 0,\n  \"minimum_amount_shipping\": 0,\n  \"free_shipping\": false,\n  \"reduction_type\": \"percent\",\n  \"reduction_amount\": 20,\n  \"reduction_tax\": true,\n  \"reduction_exclude_special\": false,\n  \"highlight\": false,\n  \"is_active\": true,\n  \"mp_ratio\": 100,\n  \"seller_id\": 2\n}"},"url":"{{domain}}/v1/catalog/vouchers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:13:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"39300d4f4025cb4c82b4f86231b9c605a6864b37\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Reduction 20%\",\n        \"date_begin\": \"2020-01-01 00:00:00\",\n        \"date_end\": \"2020-02-01 00:00:00\",\n        \"description\": \"Lorem ipsum\",\n        \"quantity\": 100,\n        \"quantity_per_user\": 1,\n        \"priority\": 1,\n        \"partial_use\": 0,\n        \"code\": \"REDUCT20\",\n        \"minimum_amount\": \"0.00\",\n        \"minimum_amount_tax\": 0,\n        \"minimum_amount_shipping\": 0,\n        \"free_shipping\": 0,\n        \"reduction_type\": \"percent\",\n        \"reduction_amount\": \"20.00\",\n        \"reduction_tax\": 1,\n        \"reduction_exclude_special\": 0,\n        \"highlight\": 0,\n        \"is_active\": 1,\n        \"mp_ratio\": \"100.00\",\n        \"seller_id\": 2,\n        \"created_at\": \"2020-11-16T10:13:57.000000Z\",\n        \"updated_at\": \"2020-11-16T10:13:57.000000Z\"\n    }\n}"}],"_postman_id":"9890c633-6c1a-4069-b2ef-66bdf9065e42"},{"name":"Update a voucher","id":"c7c936dc-6780-4a09-bb7e-2aba87a2c8b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Reduction 20%\",\n  \"date_begin\": \"2020-01-01\",\n  \"date_end\": \"2020-02-01\",\n  \"description\": \"Lorem ipsum\",\n  \"quantity\": \"100\",\n  \"quantity_per_user\": \"1\",\n  \"priority\": \"1\",\n  \"partial_use\": false,\n  \"code\": \"REDUCT20\",\n  \"minimum_amount\": 0,\n  \"minimum_amount_tax\": 0,\n  \"minimum_amount_shipping\": 0,\n  \"free_shipping\": false,\n  \"reduction_type\": \"percent\",\n  \"reduction_amount\": 20,\n  \"reduction_tax\": true,\n  \"reduction_exclude_special\": false,\n  \"highlight\": false,\n  \"is_active\": true,\n  \"mp_ratio\": 100,\n  \"seller_id\": 2\n}"},"url":"{{domain}}/v1/catalog/vouchers/2","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","vouchers","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9fc202ba-eae9-4947-a03e-69827c7b3b49","name":"Update an attribute type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Reduction 20%\",\n  \"date_begin\": \"2020-01-01\",\n  \"date_end\": \"2020-02-01\",\n  \"description\": \"Lorem ipsum\",\n  \"quantity\": \"100\",\n  \"quantity_per_user\": \"1\",\n  \"priority\": \"1\",\n  \"partial_use\": false,\n  \"code\": \"REDUCT20\",\n  \"minimum_amount\": 0,\n  \"minimum_amount_tax\": 0,\n  \"minimum_amount_shipping\": 0,\n  \"free_shipping\": false,\n  \"reduction_type\": \"percent\",\n  \"reduction_amount\": 20,\n  \"reduction_tax\": true,\n  \"reduction_exclude_special\": false,\n  \"highlight\": false,\n  \"is_active\": true,\n  \"mp_ratio\": 100,\n  \"seller_id\": 2\n}"},"url":"{{domain}}/v1/catalog/vouchers/2"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:14:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c7c936dc-6780-4a09-bb7e-2aba87a2c8b1"},{"name":"Delete a voucher","id":"c0e90886-236c-4936-af39-ea5874d2ac32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/vouchers/2","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","catalog","vouchers","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ea9208f2-d37b-4e52-b0f9-4f390a7d4793","name":"Delete a voucher","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/catalog/vouchers/2"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:15:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c0e90886-236c-4936-af39-ea5874d2ac32"}],"id":"c221b7a7-0477-4584-8448-f44ccb372ccf","event":[{"listen":"prerequest","script":{"id":"cd04c18e-6bfe-457b-8a17-e22bb52806b2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a80ec009-28d6-4895-8938-2d4b4ab12019","type":"text/javascript","exec":[""]}}],"_postman_id":"c221b7a7-0477-4584-8448-f44ccb372ccf","description":""}],"id":"06231c23-94a3-440f-a79e-4016555b4f30","_postman_id":"06231c23-94a3-440f-a79e-4016555b4f30","description":""},{"name":"Document Management","item":[{"name":"Templates","item":[{"name":"Get template by key","id":"82a5212b-fe44-43c3-a12d-43c69b7dd8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/documents/templates?filter[key]=administrative_remit","urlObject":{"path":["v1","documents","templates"],"host":["{{domain}}"],"query":[{"key":"filter[key]","value":"administrative_remit"}],"variable":[]}},"response":[],"_postman_id":"82a5212b-fe44-43c3-a12d-43c69b7dd8d3"},{"name":"Render document in pdf","id":"8a3de886-59e4-451a-afc3-e3a906e55a0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"context","type":"text","value":"{{context}}"}],"url":"{{domain}}/v1/documents/templates/7/render?render_type=pdf","urlObject":{"path":["v1","documents","templates","7","render"],"host":["{{domain}}"],"query":[{"key":"render_type","value":"pdf"}],"variable":[]}},"response":[],"_postman_id":"8a3de886-59e4-451a-afc3-e3a906e55a0a"}],"id":"35c9c971-ea5b-47d0-ab6c-e4e4ea8a1b73","_postman_id":"35c9c971-ea5b-47d0-ab6c-e4e4ea8a1b73","description":""}],"id":"79738875-545b-4ea5-baf3-a2e7c89c7ef0","_postman_id":"79738875-545b-4ea5-baf3-a2e7c89c7ef0","description":""},{"name":"Order Management","item":[{"name":"Carts","item":[{"name":"Carts","item":[{"name":"List all carts","id":"f2ec7a55-afd5-4e50-87d9-1f8a1bc25743","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/carts","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.index</code> permission is needed.</p>\n","urlObject":{"path":["v1","carts"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2ec7a55-afd5-4e50-87d9-1f8a1bc25743"},{"name":"Get a cart","id":"9b620d24-8374-45bf-a920-629da57f63cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/carts/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.show</code> permission is needed.</p>\n<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_sellers</td>\n<td><code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.lines</td>\n<td><code>Lines</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.shippingAddress</td>\n<td><code>ShippingAddress</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.billingAddress</td>\n<td><code>BillingAddress</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.shippingOffer</td>\n<td><code>ShippingOffer</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.customer</td>\n<td><code>Customer</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.seller</td>\n<td><code>Seller</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.user</td>\n<td><code>User</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.parent</td>\n<td>Parent <code>CartSeller</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.vouchers</td>\n<td><code>Vouchers</code> of <code>CartSellers</code> related to this <code>Cart</code>.</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e1d9e027-d6c4-4734-9551-be692f18a3b1","name":"Get a cart","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/carts/29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 08 Dec 2020 15:40:28 GMT"},{"key":"ETag","value":"\"a0bb0a720c452dc20a36d07f7929cab7d2fe70dd\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 29,\n        \"total_tax_exc\": 320,\n        \"total_tax_inc\": 320,\n        \"total_products_tax_exc\": 320,\n        \"total_products_tax_inc\": 320,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"fees\": {\n            \"seller_fees_tax_exc\": 0,\n            \"seller_fees_tax_inc\": 32,\n            \"customer_fees_tax_exc\": 0,\n            \"customer_fees_tax_inc\": 32\n        },\n        \"currency\": \"EUR\",\n        \"created_at\": \"2020-12-08T14:17:29.000000Z\",\n        \"updated_at\": \"2020-12-08T14:17:29.000000Z\",\n        \"cart_sellers\": {\n            \"data\": [\n                {\n                    \"id\": 35,\n                    \"total_tax_exc\": \"300.00\",\n                    \"total_tax_inc\": \"300.00\",\n                    \"total_tax\": 0,\n                    \"total_products_tax_exc\": \"300.000000\",\n                    \"total_products_tax_inc\": \"300.000000\",\n                    \"total_products_tax\": 0,\n                    \"total_discounts_tax_exc\": \"0.000000\",\n                    \"total_discounts_tax_inc\": \"0.000000\",\n                    \"total_weight\": 0,\n                    \"currency\": \"EUR\",\n                    \"created_at\": \"2020-12-08T14:17:30.000000Z\"\n                },\n                {\n                    \"id\": 36,\n                    \"total_tax_exc\": \"20.00\",\n                    \"total_tax_inc\": \"20.00\",\n                    \"total_tax\": 0,\n                    \"total_products_tax_exc\": \"20.000000\",\n                    \"total_products_tax_inc\": \"20.000000\",\n                    \"total_products_tax\": 0,\n                    \"total_discounts_tax_exc\": \"0.000000\",\n                    \"total_discounts_tax_inc\": \"0.000000\",\n                    \"total_weight\": 0,\n                    \"currency\": \"EUR\",\n                    \"created_at\": \"2020-12-08T14:17:30.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"9b620d24-8374-45bf-a920-629da57f63cf"},{"name":"Create a cart","id":"66899aa0-a980-4c64-bbdc-17c885b4527e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 5,\n    \"lines\": [\n        {\n            \"product_offer_id\": 1,\n            \"quantity\": 1\n        },\n        {\n            \"product_offer_id\": 3,\n            \"quantity\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/carts","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer_id</td>\n<td>Id of the <code>UserGroup</code> linked to this <code>Cart</code>.</td>\n<td>Nullable. Integer. Required with <code>shipping_address</code>. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>Id of the <code>User</code> linked to this <code>Cart</code>.</td>\n<td>Nullable. Integer. Required with <code>shipping_address</code>. Must be a <code>User</code> id.</td>\n</tr>\n<tr>\n<td>lines.*.product_offer_id</td>\n<td>Id of <code>ProductOffer</code> related to the <code>CartLine</code> of this <code>Cart</code>.</td>\n<td>Integer. Required with <code>lines</code>. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td>lines.*.quantity</td>\n<td>Quantity of <code>ProductOffers</code> related to the <code>CartLine</code> of this <code>Cart</code>.</td>\n<td>Positive integer. Required with <code>lines</code>.</td>\n</tr>\n<tr>\n<td>shipping_address.external_uid</td>\n<td>Front-office address ID related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.country</td>\n<td><code>Country</code> related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.postcode</td>\n<td>Postcode related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.city</td>\n<td><code>City</code> related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.address_line1</td>\n<td>First address line related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.external_uid</td>\n<td>Front-office address ID related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.country</td>\n<td><code>Country</code> related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.postcode</td>\n<td>Postcode related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.city</td>\n<td><code>City</code> related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.address_line1</td>\n<td>First address line related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1b1f0e7a-12a6-4397-b696-b1598a104203","name":"Create a cart with lines","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 5,\n    \"user_id\": 4,\n    \"lines\": [\n        {\n            \"product_offer_id\": 2,\n            \"quantity\": 3\n        },\n        {\n            \"product_offer_id\": 3,\n            \"quantity\": 2\n        },\n        {\n            \"product_offer_id\": 1,\n            \"quantity\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/carts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 08 Dec 2020 15:41:43 GMT"},{"key":"ETag","value":"\"9a3c7e7ccd0763059a15cdf8211030c3c91e4d04\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 30,\n        \"total_tax_exc\": 320,\n        \"total_tax_inc\": 320,\n        \"total_products_tax_exc\": 320,\n        \"total_products_tax_inc\": 320,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"fees\": {\n            \"seller_fees_tax_exc\": 0,\n            \"seller_fees_tax_inc\": 32,\n            \"customer_fees_tax_exc\": 0,\n            \"customer_fees_tax_inc\": 32\n        },\n        \"currency\": \"EUR\",\n        \"created_at\": \"2020-12-08T15:41:42.000000Z\",\n        \"updated_at\": \"2020-12-08T15:41:42.000000Z\",\n        \"cart_sellers\": {\n            \"data\": [\n                {\n                    \"id\": 37,\n                    \"total_tax_exc\": \"300.00\",\n                    \"total_tax_inc\": \"300.00\",\n                    \"total_tax\": 0,\n                    \"total_products_tax_exc\": \"300.000000\",\n                    \"total_products_tax_inc\": \"300.000000\",\n                    \"total_products_tax\": 0,\n                    \"total_discounts_tax_exc\": \"0.000000\",\n                    \"total_discounts_tax_inc\": \"0.000000\",\n                    \"total_weight\": 0,\n                    \"currency\": \"EUR\",\n                    \"created_at\": \"2020-12-08T15:41:42.000000Z\"\n                },\n                {\n                    \"id\": 38,\n                    \"total_tax_exc\": \"20.00\",\n                    \"total_tax_inc\": \"20.00\",\n                    \"total_tax\": 0,\n                    \"total_products_tax_exc\": \"20.000000\",\n                    \"total_products_tax_inc\": \"20.000000\",\n                    \"total_products_tax\": 0,\n                    \"total_discounts_tax_exc\": \"0.000000\",\n                    \"total_discounts_tax_inc\": \"0.000000\",\n                    \"total_weight\": 0,\n                    \"currency\": \"EUR\",\n                    \"created_at\": \"2020-12-08T15:41:42.000000Z\"\n                }\n            ]\n        }\n    }\n}"},{"id":"354dc6c3-c2a5-4b51-9a3c-70ed33482a76","name":"Create a cart with address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 5,\n    \"user_id\": 4,\n    \"shipping_address\": {\n        \"external_uid\": \"12\",\n        \"country_iso\": \"FR\",\n        \"company\": \"\",\n        \"lastname\": \"Lastname\",\n        \"firstname\": \"Firstname\",\n        \"address_line1\": \"Street1\",\n        \"address_line2\": \"\",\n        \"postcode\": \"59000\",\n        \"city\": \"LILLE\",\n        \"region\": \"\",\n        \"other\": \"\",\n        \"phone\": \"\",\n        \"phone_mobile\": \"\",\n        \"vat_number\": \"\"\n    }\n}"},"url":"{{domain}}/v1/carts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 08 Dec 2020 15:41:43 GMT"},{"key":"ETag","value":"\"9a3c7e7ccd0763059a15cdf8211030c3c91e4d04\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1784,\n        \"total_tax_exc\": 0,\n        \"total_tax_inc\": 0,\n        \"total_tax_exc_fees_excluded\": 0,\n        \"total_tax_inc_fees_excluded\": 0,\n        \"seller_fees_amount_tax_exc\": 0,\n        \"seller_fees_amount_tax_inc\": 0,\n        \"customer_fees_amount_tax_exc\": 0,\n        \"customer_fees_amount_tax_inc\": 0,\n        \"total_products_tax_exc\": 0,\n        \"total_products_tax_inc\": 0,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"user_id\": 14,\n        \"customer_id\": 26,\n        \"created_at\": \"2026-02-20T13:47:47.000000Z\",\n        \"updated_at\": \"2026-02-20T13:47:47.000000Z\"\n    }\n}"}],"_postman_id":"66899aa0-a980-4c64-bbdc-17c885b4527e"},{"name":"Update a cart","id":"7b7085e0-e7da-4935-847e-98d56ae7778e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 119,\n    \"user_id\": 131,\n    \"billing_address\": {\n        \"external_uid\": 200,\n        \"address_line1\": \"50 rue du test\",\n        \"firstname\": \"Test\",\n        \"lastname\": \"Test\",\n        \"postcode\": 59000,\n        \"city\": \"Lille\",\n        \"country\": \"FR\"\n    }\n}"},"url":"{{domain}}/v1/carts/924","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<h3 id=\"body-parameters-1\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer_id</td>\n<td>Id of the <code>UserGroup</code> linked to this <code>Cart</code>.</td>\n<td>Nullable. Integer. Required with <code>shipping_address</code>. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>Id of the <code>User</code> linked to this <code>Cart</code>.</td>\n<td>Nullable. Integer. Required with <code>shipping_address</code>. Must be a <code>User</code> id.</td>\n</tr>\n<tr>\n<td>shipping_address.external_uid</td>\n<td>Front-office address ID related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.country</td>\n<td><code>Country</code> related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>shipping_address.country_iso</td>\n<td>ISO code of the country related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>shipping_address.postcode</td>\n<td>Postcode related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.city</td>\n<td><code>City</code> related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>shipping_address.address_line1</td>\n<td>First address line related to the <code>shipping_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>shipping_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.external_uid</td>\n<td>Front-office address ID related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.country</td>\n<td><code>Country</code> related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>billing_address.country_iso</td>\n<td>ISO code of the country related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>billing_address.postcode</td>\n<td>Postcode related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.city</td>\n<td><code>City</code> related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n<tr>\n<td>billing_address.address_line1</td>\n<td>First address line related to the <code>billing_address</code>of this <code>Cart</code>.</td>\n<td>Required with <code>billing_address</code>. String.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","924"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"85b5db9b-2085-4602-933f-8bf4434c5c84","name":"Update a cart","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 5,\n    \"user_id\": 5,\n    \"shipping_address\": {\n  \t    \"country\": \"France\",\n  \t    \"lastname\": \"Jean\",\n  \t    \"firstname\": \"Jean\",\n  \t    \"address_line1\": \"85 rue des roses\",\n        \"address_line2\": \"\",\n  \t    \"postcode\": \"75000\",\n  \t    \"city\": \"Paris\",\n  \t    \"phone\": \"0642424242\",\n        \"external_uid\": 1\n    },\n    \"billing_address\": {\n        \"country\": \"France\",\n  \t    \"lastname\": \"Jean\",\n  \t    \"firstname\": \"Jean\",\n        \"address_line1\": \"85 rue des roses\",\n  \t    \"postcode\": \"75000\",\n        \"city\": \"Paris\",\n  \t    \"phone\": \"0642424242\",\n        \"external_uid\": 4\n    }\n}"},"url":"{{domain}}/v1/carts/826"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 13 Jun 2022 13:17:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.20"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"72acaab9cf4367457d1609819e8f68664a6c127c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 826,\n        \"total_tax_exc\": 64.16,\n        \"total_tax_inc\": 76.99,\n        \"total_tax_exc_fees_excluded\": 58.33,\n        \"total_tax_inc_fees_excluded\": 69.99,\n        \"seller_fees_amount_tax_exc\": 17,\n        \"seller_fees_amount_tax_inc\": 20.4,\n        \"customer_fees_amount_tax_exc\": 5.83,\n        \"customer_fees_amount_tax_inc\": 7,\n        \"total_products_tax_exc\": 58.33,\n        \"total_products_tax_inc\": 69.99,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"user_id\": 5,\n        \"customer_id\": 5,\n        \"created_at\": \"2022-06-13T13:15:47.000000Z\",\n        \"updated_at\": \"2022-06-13T13:17:50.000000Z\"\n    }\n}"}],"_postman_id":"7b7085e0-e7da-4935-847e-98d56ae7778e"},{"name":"Delete a cart","id":"b12222cc-a362-4d1e-8a18-ce5e897247cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 5,\n    \"user_id\": 5,\n    \"shipping_address\": {\n  \t    \"country\": \"France\",\n  \t    \"lastname\": \"Jean\",\n  \t    \"firstname\": \"Jean\",\n  \t    \"address_line1\": \"85 rue des roses\",\n        \"address_line2\": \"\",\n  \t    \"postcode\": \"75000\",\n  \t    \"city\": \"Paris\",\n  \t    \"phone\": \"0642424242\",\n        \"external_uid\": 1\n    },\n    \"billing_address\": {\n        \"country\": \"France\",\n  \t    \"lastname\": \"Jean\",\n  \t    \"firstname\": \"Jean\",\n        \"address_line1\": \"85 rue des roses\",\n  \t    \"postcode\": \"75000\",\n        \"city\": \"Paris\",\n  \t    \"phone\": \"0642424242\",\n        \"external_uid\": 4\n    }\n}"},"url":"{{domain}}/v1/carts/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","carts","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2951cc23-12e5-4a12-bf3e-38a6e02119e5","name":"Update a cart","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer_id\": 5,\n    \"user_id\": 5,\n    \"shipping_address\": {\n  \t    \"country\": \"France\",\n  \t    \"lastname\": \"Jean\",\n  \t    \"firstname\": \"Jean\",\n  \t    \"address_line1\": \"85 rue des roses\",\n        \"address_line2\": \"\",\n  \t    \"postcode\": \"75000\",\n  \t    \"city\": \"Paris\",\n  \t    \"phone\": \"0642424242\",\n        \"external_uid\": 1\n    },\n    \"billing_address\": {\n        \"country\": \"France\",\n  \t    \"lastname\": \"Jean\",\n  \t    \"firstname\": \"Jean\",\n        \"address_line1\": \"85 rue des roses\",\n  \t    \"postcode\": \"75000\",\n        \"city\": \"Paris\",\n  \t    \"phone\": \"0642424242\",\n        \"external_uid\": 4\n    }\n}"},"url":"{{domain}}/v1/carts/826"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 13 Jun 2022 13:17:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.20"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"72acaab9cf4367457d1609819e8f68664a6c127c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 826,\n        \"total_tax_exc\": 64.16,\n        \"total_tax_inc\": 76.99,\n        \"total_tax_exc_fees_excluded\": 58.33,\n        \"total_tax_inc_fees_excluded\": 69.99,\n        \"seller_fees_amount_tax_exc\": 17,\n        \"seller_fees_amount_tax_inc\": 20.4,\n        \"customer_fees_amount_tax_exc\": 5.83,\n        \"customer_fees_amount_tax_inc\": 7,\n        \"total_products_tax_exc\": 58.33,\n        \"total_products_tax_inc\": 69.99,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"user_id\": 5,\n        \"customer_id\": 5,\n        \"created_at\": \"2022-06-13T13:15:47.000000Z\",\n        \"updated_at\": \"2022-06-13T13:17:50.000000Z\"\n    }\n}"}],"_postman_id":"b12222cc-a362-4d1e-8a18-ce5e897247cd"}],"id":"fb59ce3a-6071-42df-b522-c985c6d11c32","_postman_id":"fb59ce3a-6071-42df-b522-c985c6d11c32","description":""},{"name":"CartLines","item":[{"name":"Add a line to a cart","id":"78427fbc-6cd4-43b3-a2e6-9cfaf3112b3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 4,\n    \"quantity\": 2\n}"},"url":"{{domain}}/v1/carts/lines","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of the <code>Cart</code> to update.</td>\n<td>Required. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>Id of <code>ProductOffer</code> related to the <code>CartLine</code> of this <code>Cart</code>.</td>\n<td>Integer. Required with <code>lines</code>. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Quantity of <code>ProductOffers</code> related to the <code>CartLine</code> of this <code>Cart</code>.</td>\n<td>Integer. Required with <code>lines</code>. MInimal value: <code>1</code>.</td>\n</tr>\n<tr>\n<td>customizations</td>\n<td>Array of  <br />{  <br />\"customization_id\": \"ID\",  <br />\"value\": \"custom value or link to file\"  <br />}</td>\n<td>Optionnal. customization_id must be an existing <code>ProductCustomization</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"bae5937d-45a6-430e-a52a-5f35fd57f884","name":"Add a line to a cart","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 4,\n    \"quantity\": 2,\n    \"customizations\": [\n        {\n            \"customization_id\": \"62\",\n            \"value\": \"Customer text\"\n        },\n        {\n            \"customization_id\": \"63\",\n            \"value\": \"https:\\/\\/origami-marketplace.com\\/url-to-file.png\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/carts/lines"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""},{"id":"81983633-d189-41ca-9451-79e40b496e2e","name":"Add a line to a cart","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 4,\n    \"quantity\": 2\n}"},"url":"{{domain}}/v1/carts/lines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 17 Dec 2020 13:51:54 GMT"},{"key":"ETag","value":"\"6e20eace1534481afaa50f432a5151e91c8df91f\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 45,\n        \"total_tax_exc\": 423.33,\n        \"total_tax_inc\": 440,\n        \"total_tax_exc_fees_excluded\": 340,\n        \"total_tax_inc_fees_excluded\": 340,\n        \"seller_fees_amount_tax_exc\": 58.33,\n        \"seller_fees_amount_tax_inc\": 70,\n        \"customer_fees_amount_tax_exc\": 83.33,\n        \"customer_fees_amount_tax_inc\": 100,\n        \"total_products_tax_exc\": 340,\n        \"total_products_tax_inc\": 340,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"created_at\": \"2020-12-15T16:20:09.000000Z\",\n        \"updated_at\": \"2020-12-15T16:20:09.000000Z\"\n    }\n}"}],"_postman_id":"78427fbc-6cd4-43b3-a2e6-9cfaf3112b3d"},{"name":"Update a line of a cart","id":"69a11791-660d-425b-8207-9a57b6e2b2ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_variant_id\": 1,\n    \"product_offer_id\": 1,\n    \"quantity\": 2\n}"},"url":"{{domain}}/v1/carts/lines/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Id of <code>Product</code> related to this <code>CartLine</code>.</td>\n<td>Integer. Required. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>Id of <code>ProductOffer</code> related to this <code>CartLine</code>.</td>\n<td>Integer. Required. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of <code>Product</code> related to this <code>CartLine</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Quantity of <code>ProductOffers</code> related to this <code>CartLine</code></td>\n<td>Integer. Required. MInimal value: <code>1</code>.</td>\n</tr>\n<tr>\n<td>reduction_percent</td>\n<td>Reduction in percentage applied on this <code>CartLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>reduction_amount_tax_inc</td>\n<td>Reduction, tax included, applied on this <code>CartLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>reduction_amount_tax_exc</td>\n<td>Reduction, tax excluded, applied on this <code>CartLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>ean13</td>\n<td>EAN13 related to the <code>ProductOffer</code> of this <code>CartLine</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>upc</td>\n<td>UPC related to the <code>ProductOffer</code> of this <code>CartLine</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td><code>reference_supplier</code> of the<code>ProductOffer</code> of this <code>CartLine</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>purchase_price_tax_exc</td>\n<td>Purchase price, tax excluded.</td>\n<td>Float with 2 decimals. Maximum length: 6 units and 2 decimals.</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>orderSeller</code> related to this CartLine.</td>\n<td>Must be an <code>OrderSeller</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","lines","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8ec6bd9c-81ee-4ca3-9a6f-3f0165e65883","name":"Add a line to a cart","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 4,\n    \"quantity\": 2\n}"},"url":"{{domain}}/v1/carts/lines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 17 Dec 2020 13:51:54 GMT"},{"key":"ETag","value":"\"6e20eace1534481afaa50f432a5151e91c8df91f\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 45,\n        \"total_tax_exc\": 423.33,\n        \"total_tax_inc\": 440,\n        \"total_tax_exc_fees_excluded\": 340,\n        \"total_tax_inc_fees_excluded\": 340,\n        \"seller_fees_amount_tax_exc\": 58.33,\n        \"seller_fees_amount_tax_inc\": 70,\n        \"customer_fees_amount_tax_exc\": 83.33,\n        \"customer_fees_amount_tax_inc\": 100,\n        \"total_products_tax_exc\": 340,\n        \"total_products_tax_inc\": 340,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"created_at\": \"2020-12-15T16:20:09.000000Z\",\n        \"updated_at\": \"2020-12-15T16:20:09.000000Z\"\n    }\n}"}],"_postman_id":"69a11791-660d-425b-8207-9a57b6e2b2ba"},{"name":"Delete lines from a cart, related to a productOffer","id":"2d1559de-c818-4efe-b94a-b8a56cbe64e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 4\n}"},"url":"{{domain}}/v1/carts/lines","description":"<p>If the <code>cartLine</code> deleted by this request was the only one of its <code>cartSeller</code>, this <code>cartSeller</code> is deleted too.</p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of <code>Cart</code> from which the line have to be deleted.</td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>Id of <code>ProductOffer</code></td>\n<td>Required. Integer. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"39d12ae3-0e66-476a-b35b-a3aa604e2ec2","name":"Delete a line from a cart","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 4\n}"},"url":"{{domain}}/v1/carts/lines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 17 Dec 2020 13:55:53 GMT"},{"key":"ETag","value":"\"6e20eace1534481afaa50f432a5151e91c8df91f\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 45,\n        \"total_tax_exc\": 423.33,\n        \"total_tax_inc\": 440,\n        \"total_tax_exc_fees_excluded\": 340,\n        \"total_tax_inc_fees_excluded\": 340,\n        \"seller_fees_amount_tax_exc\": 58.33,\n        \"seller_fees_amount_tax_inc\": 70,\n        \"customer_fees_amount_tax_exc\": 83.33,\n        \"customer_fees_amount_tax_inc\": 100,\n        \"total_products_tax_exc\": 340,\n        \"total_products_tax_inc\": 340,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"created_at\": \"2020-12-15T16:20:09.000000Z\",\n        \"updated_at\": \"2020-12-15T16:20:09.000000Z\"\n    }\n}"}],"_postman_id":"2d1559de-c818-4efe-b94a-b8a56cbe64e0"},{"name":"Update quantity of a line in a cart","id":"d9cdc044-bfa9-4882-9cc2-3db8d8d11154","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 3,\n    \"quantity\": -6\n}"},"url":"{{domain}}/v1/carts/lines/quantity","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of <code>Cart</code> to update.</td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>Id of <code>ProductOffer</code> which quantity has to be updated.</td>\n<td>Required. Integer. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Quantity to add (when positive integer) or substract (when negative number) to the current <code>quantity</code> of <code>ProductOffer</code> (defined by <code>product_offer_id</code>) in the <code>Cart</code> defined by <code>cart_id</code>. If new <code>quantity</code> computed is equal or less than zero, <code>CartLine</code> of the targetted <code>Cart</code>, than contains the <code>ProductOffer</code>, is deleted.</td>\n<td>Required. Integer.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","lines","quantity"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"755d2fb2-fe45-46c6-96df-f46c0f4e6468","name":"Update quantity of a line in a cart","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"product_offer_id\": 3,\n    \"quantity\": -6\n}"},"url":"{{domain}}/v1/carts/lines/quantity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 17 Dec 2020 14:03:11 GMT"},{"key":"ETag","value":"\"6657bf99ae1d9573c48c5e7dd925af4eb417e733\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 45,\n        \"total_tax_exc\": 380,\n        \"total_tax_inc\": 396,\n        \"total_tax_exc_fees_excluded\": 300,\n        \"total_tax_inc_fees_excluded\": 300,\n        \"seller_fees_amount_tax_exc\": 55,\n        \"seller_fees_amount_tax_inc\": 66,\n        \"customer_fees_amount_tax_exc\": 80,\n        \"customer_fees_amount_tax_inc\": 96,\n        \"total_products_tax_exc\": 300,\n        \"total_products_tax_inc\": 300,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_discounts_tax_exc\": 0,\n        \"total_discounts_tax_inc\": 0,\n        \"currency\": \"EUR\",\n        \"created_at\": \"2020-12-15T16:20:09.000000Z\",\n        \"updated_at\": \"2020-12-15T16:20:09.000000Z\"\n    }\n}"}],"_postman_id":"d9cdc044-bfa9-4882-9cc2-3db8d8d11154"}],"id":"b39444af-683e-45dd-9cf6-9ba4b09b0ff7","_postman_id":"b39444af-683e-45dd-9cf6-9ba4b09b0ff7","description":""},{"name":"Shipping methods","item":[{"name":"Get shipping costs estimation","id":"95d8b83a-653c-4a1d-86d3-9392f25c3e3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": {{cart_id}},\n    \"shipping_zone_id\": {{shipping_zone_id}}\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/carts/shipping_costs_estimation","description":"<p>Get shipping costs estimation for a Cart or a ProductOffer, to a certain ShippingZone. An Address is not required on the Cart to use this endpoint, hence the <em>shipping_zone_id</em> parameter. This endpoint is handy to estimate shipping costs when there is no user logged in, for example.</p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>The Cart for which you want the estimation.</td>\n<td>Required if product_offer_id parameter is not present.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>The ProductOffer for which you want the estimation.</td>\n<td>Required if cart_id parameter is not present.</td>\n</tr>\n<tr>\n<td>shipping_zone_id</td>\n<td>The ShippingZone (region, country...) for which you want the estimation.</td>\n<td>Required.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","shipping_costs_estimation"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"95d8b83a-653c-4a1d-86d3-9392f25c3e3e"},{"name":"Get cart shipping methods","id":"8b8a98ff-d5b5-49d5-8b9f-2d3e90702ff5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45\n}"},"url":"{{domain}}/v1/carts/shipping_methods","description":"<p>Get all shipping methods available for a cart. Address must be set on the cart to use this endpoint.</p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of <code>Cart</code> to update.</td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","shipping_methods"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4d7b5cac-0b5c-45d8-9072-6486b08ed422","name":"Get cart shipping methods","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":{"raw":"{{domain}}/v1/carts/shipping_methods?cart_id=576","host":["{{domain}}"],"path":["v1","carts","shipping_methods"],"query":[{"key":"cart_id","value":"576"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 22 Nov 2021 09:57:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.26"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"59e7061f695c903aea3dce629bf3a8be48c304f5\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"cart_seller_id\": 769,\n        \"shipping_methods\": [\n            {\n                \"id\": 2,\n                \"shipping_offer_id\": 1,\n                \"amount_tax_exc\": 0,\n                \"amount_tax_inc\": 0,\n                \"created_at\": \"2021-11-22T09:57:31.000000Z\",\n                \"updated_at\": \"2021-11-22T09:57:31.000000Z\"\n            }\n        ]\n    }\n]"}],"_postman_id":"8b8a98ff-d5b5-49d5-8b9f-2d3e90702ff5"},{"name":"Set shipping method on a cart","id":"51f73ae1-ed46-4bb1-9817-7ec15df2f73c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": \"576\",\n    \"shipping_methods\": [\n        {\n            \"cart_seller_id\": 769,\n            \"shipping_method_id\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/carts/shipping_methods","description":"<p>Set shipping method on a cart. Address must be set on the cart to use this endpoint.</p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of <code>Cart</code> to update.</td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>shipping_methods.*.cart_seller_id</td>\n<td>Id of <code>CartSeller</code> related to the <code>Cart</code> defined by <code>cart_id</code>.</td>\n<td>Required. Integer. Must be an <code>OrderSeller</code> id.</td>\n</tr>\n<tr>\n<td>shipping_methods.*.shipping_method_id</td>\n<td>Id of <code>ShippingMethod</code> that will be related to the <code>CartSeller</code> defined by <code>shipping_methods.\\*.cart_seller_id</code></td>\n<td>Required.Integer. Must be an <code>OrderSellerShippingMethod</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","shipping_methods"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"042d1f42-9dc4-43d4-8fa9-f7592d17c35e","name":"Set shipping method on a cart","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": \"576\",\n    \"shipping_methods\": [\n        {\n            \"cart_seller_id\": 769,\n            \"shipping_method_id\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/carts/shipping_methods"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 22 Nov 2021 10:03:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.26"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"51f73ae1-ed46-4bb1-9817-7ec15df2f73c"}],"id":"ab5cb462-8193-4fcf-9229-14f2d32caa0a","_postman_id":"ab5cb462-8193-4fcf-9229-14f2d32caa0a","description":""},{"name":"Voucher","item":[{"name":"Add a voucher to a cart","id":"6ee8e785-6eee-4285-a601-bf4644ffcc37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"code\": \"CODE\"\n}"},"url":"{{domain}}/v1/carts/vouchers","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of <code>Cart</code> to update.</td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>code</td>\n<td><code>code</code> of <code>Voucher</code> to add on the <code>Cart</code> defined by <code>cart_id</code>.</td>\n<td>Required. String. Must be a <code>Voucher</code> <code>code</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","vouchers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ee8e785-6eee-4285-a601-bf4644ffcc37"},{"name":"Delete a voucher from a cart","id":"331bc0bf-1e17-4f90-bb49-499726b6a087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cart_id\": 45,\n    \"voucher_id\": 2\n}"},"url":"{{domain}}/v1/carts/vouchers","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>carts.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_id</td>\n<td>Id of <code>Cart</code> to update.</td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>voucher_id</td>\n<td>Id of <code>Voucher</code> to detach from the <code>Cart</code> defined by <code>cart_id</code>.</td>\n<td>Required. Integer. Must be a <code>Voucher</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","carts","vouchers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"331bc0bf-1e17-4f90-bb49-499726b6a087"}],"id":"454ddd94-4f31-4de1-993e-d62e00ade42a","_postman_id":"454ddd94-4f31-4de1-993e-d62e00ade42a","description":""}],"id":"d0087b6d-8ef4-4907-91fc-b266f774258e","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cart_sellers</td>\n<td>All cart_sellers, that are subdivisions of this Cart, grouped by ProductOffer's Seller.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>cart_sellers.lines</td>\n<td>All cartLines of this Cart</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"aa5abfaa-6047-449c-be83-36d8501e75a7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f6f987bf-f218-492e-8067-b4b94ceff86e","type":"text/javascript","exec":[""]}}],"_postman_id":"d0087b6d-8ef4-4907-91fc-b266f774258e"},{"name":"Order Sellers","item":[{"name":"Get all order sellers","id":"4667c8ef-c136-4cfb-aca7-43603bb78d3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.index</code> permissions are needed.</p>\n<h2 id=\"parameters-available\">Parameters available</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[state_id]</td>\n<td>Get all <code>OrderSellers</code> with this <code>state_id</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"model\">Model</h2>\n<p><a href=\"https://origami-marketplace.notion.site/OrderSeller-8db86a168ee140599754285937f0496c\">OrderSeller</a></p>\n","urlObject":{"path":["v1","orders"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6f76e101-1cf7-4c90-a60e-f900e0be7e69","name":"List all order sellers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:07:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"752af5338e8c361c5ba4e71ef875f82a412bba6e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3,\n            \"date_order\": \"2020-09-16 11:10:02\",\n            \"external_uid\": \"1\",\n            \"reference\": \"PATCKASYQ\",\n            \"total_tax_exc\": \"15.00\",\n            \"total_tax_inc\": \"18.00\",\n            \"total_tax\": 3,\n            \"total_paid\": \"18.000000\",\n            \"total_products_tax_exc\": \"10.000000\",\n            \"total_products_tax_inc\": \"12.000000\",\n            \"total_products_tax\": 2,\n            \"total_shipping_tax_exc\": \"5.000000\",\n            \"total_shipping_tax_inc\": \"6.000000\",\n            \"total_shipping_tax\": 1,\n            \"shipping_tax_rate\": 20,\n            \"total_discounts_tax_exc\": \"0.000000\",\n            \"total_discounts_tax_inc\": \"0.000000\",\n            \"total_wrapping_tax_exc\": \"0.000000\",\n            \"total_wrapping_tax_inc\": \"0.000000\",\n            \"total_weight\": 0,\n            \"commission\": 1,\n            \"tracking_number\": \"\",\n            \"url_tracking\": \"\",\n            \"created_at\": \"2020-09-16T09:12:30.000000Z\",\n            \"balance\": 0,\n            \"carrier_extra_infos\": \"[]\",\n            \"fees_amount\": 1,\n            \"fees_amount_tax_inc\": \"1.200000\",\n            \"gift\": 0,\n            \"gift_message\": \"\",\n            \"recyclable\": 0,\n            \"state_id\": 1,\n            \"currency\": \"EUR\",\n            \"exchange_rate\": \"1.000000\",\n            \"user_id\": 3,\n            \"type\": \"order\",\n            \"order_id\": 3,\n            \"additional_information\": {\n                \"front_invoice_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 5,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de facture front Office\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"order_email\": \"\"\n        },\n        {\n            \"id\": 4,\n            \"date_order\": \"2020-09-16 11:54:27\",\n            \"external_uid\": \"2\",\n            \"reference\": \"OFRXDPHWZ\",\n            \"total_tax_exc\": \"15.00\",\n            \"total_tax_inc\": \"18.00\",\n            \"total_tax\": 3,\n            \"total_paid\": \"18.000000\",\n            \"total_products_tax_exc\": \"10.000000\",\n            \"total_products_tax_inc\": \"12.000000\",\n            \"total_products_tax\": 2,\n            \"total_shipping_tax_exc\": \"5.000000\",\n            \"total_shipping_tax_inc\": \"6.000000\",\n            \"total_shipping_tax\": 1,\n            \"shipping_tax_rate\": 20,\n            \"total_discounts_tax_exc\": \"0.000000\",\n            \"total_discounts_tax_inc\": \"0.000000\",\n            \"total_wrapping_tax_exc\": \"0.000000\",\n            \"total_wrapping_tax_inc\": \"0.000000\",\n            \"total_weight\": 0,\n            \"commission\": 1,\n            \"tracking_number\": \"\",\n            \"url_tracking\": \"\",\n            \"created_at\": \"2020-09-16T09:55:02.000000Z\",\n            \"balance\": 0,\n            \"carrier_extra_infos\": \"[]\",\n            \"fees_amount\": 1,\n            \"fees_amount_tax_inc\": \"1.200000\",\n            \"gift\": 0,\n            \"gift_message\": \"\",\n            \"recyclable\": 0,\n            \"state_id\": 1,\n            \"currency\": \"EUR\",\n            \"exchange_rate\": \"1.000000\",\n            \"user_id\": 3,\n            \"type\": \"order\",\n            \"order_id\": 4,\n            \"additional_information\": {\n                \"front_invoice_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 5,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de facture front Office\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"order_email\": \"\"\n        },\n        {\n            \"id\": 5,\n            \"date_order\": \"2020-09-23 15:28:06\",\n            \"external_uid\": \"5\",\n            \"reference\": \"PPUKPNGBO\",\n            \"total_tax_exc\": \"20.83\",\n            \"total_tax_inc\": \"25.00\",\n            \"total_tax\": 4.170000000000002,\n            \"total_paid\": \"25.000000\",\n            \"total_products_tax_exc\": \"20.830000\",\n            \"total_products_tax_inc\": \"25.000000\",\n            \"total_products_tax\": 4.17,\n            \"total_shipping_tax_exc\": \"0.000000\",\n            \"total_shipping_tax_inc\": \"0.000000\",\n            \"total_shipping_tax\": 0,\n            \"shipping_tax_rate\": 20,\n            \"total_discounts_tax_exc\": \"0.000000\",\n            \"total_discounts_tax_inc\": \"0.000000\",\n            \"total_wrapping_tax_exc\": \"0.000000\",\n            \"total_wrapping_tax_inc\": \"0.000000\",\n            \"total_weight\": 0,\n            \"commission\": 2.08,\n            \"tracking_number\": \"\",\n            \"url_tracking\": \"\",\n            \"created_at\": \"2020-09-23T13:36:00.000000Z\",\n            \"balance\": 0,\n            \"carrier_extra_infos\": \"[]\",\n            \"fees_amount\": 2.08,\n            \"fees_amount_tax_inc\": \"2.499960\",\n            \"gift\": 0,\n            \"gift_message\": \"\",\n            \"recyclable\": 0,\n            \"state_id\": 1,\n            \"currency\": \"EUR\",\n            \"exchange_rate\": \"1.000000\",\n            \"user_id\": 3,\n            \"type\": \"order\",\n            \"order_id\": 5,\n            \"additional_information\": {\n                \"front_invoice_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 5,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de facture front Office\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"order_email\": \"\"\n        },\n        {\n            \"id\": 6,\n            \"date_order\": \"2020-09-23 15:28:06\",\n            \"external_uid\": \"6\",\n            \"reference\": \"PPUKPNGBO\",\n            \"total_tax_exc\": \"25.00\",\n            \"total_tax_inc\": \"30.00\",\n            \"total_tax\": 5,\n            \"total_paid\": \"30.000000\",\n            \"total_products_tax_exc\": \"25.000000\",\n            \"total_products_tax_inc\": \"30.000000\",\n            \"total_products_tax\": 5,\n            \"total_shipping_tax_exc\": \"0.000000\",\n            \"total_shipping_tax_inc\": \"0.000000\",\n            \"total_shipping_tax\": 0,\n            \"shipping_tax_rate\": 20,\n            \"total_discounts_tax_exc\": \"0.000000\",\n            \"total_discounts_tax_inc\": \"0.000000\",\n            \"total_wrapping_tax_exc\": \"0.000000\",\n            \"total_wrapping_tax_inc\": \"0.000000\",\n            \"total_weight\": 0,\n            \"commission\": 2.5,\n            \"tracking_number\": \"\",\n            \"url_tracking\": \"\",\n            \"created_at\": \"2020-09-23T13:36:01.000000Z\",\n            \"balance\": 0,\n            \"carrier_extra_infos\": \"[]\",\n            \"fees_amount\": 2.5,\n            \"fees_amount_tax_inc\": \"3.000000\",\n            \"gift\": 0,\n            \"gift_message\": \"\",\n            \"recyclable\": 0,\n            \"state_id\": 1,\n            \"currency\": \"EUR\",\n            \"exchange_rate\": \"1.000000\",\n            \"user_id\": 3,\n            \"type\": \"order\",\n            \"order_id\": 5,\n            \"additional_information\": {\n                \"front_invoice_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 5,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de facture front Office\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"order_email\": \"\"\n        },\n        {\n            \"id\": 7,\n            \"date_order\": \"2020-10-21 18:34:57\",\n            \"external_uid\": \"8\",\n            \"reference\": \"BYKPEIYSE\",\n            \"total_tax_exc\": \"1000.00\",\n            \"total_tax_inc\": \"1200.00\",\n            \"total_tax\": 200,\n            \"total_paid\": \"1200.000000\",\n            \"total_products_tax_exc\": \"1000.000000\",\n            \"total_products_tax_inc\": \"1200.000000\",\n            \"total_products_tax\": 200,\n            \"total_shipping_tax_exc\": \"0.000000\",\n            \"total_shipping_tax_inc\": \"0.000000\",\n            \"total_shipping_tax\": 0,\n            \"shipping_tax_rate\": 20,\n            \"total_discounts_tax_exc\": \"0.000000\",\n            \"total_discounts_tax_inc\": \"0.000000\",\n            \"total_wrapping_tax_exc\": \"0.000000\",\n            \"total_wrapping_tax_inc\": \"0.000000\",\n            \"total_weight\": 0,\n            \"commission\": 100,\n            \"tracking_number\": \"\",\n            \"url_tracking\": \"\",\n            \"created_at\": \"2020-10-21T16:35:02.000000Z\",\n            \"balance\": 0,\n            \"carrier_extra_infos\": \"[]\",\n            \"fees_amount\": 100,\n            \"fees_amount_tax_inc\": \"120.000000\",\n            \"gift\": 0,\n            \"gift_message\": \"\",\n            \"recyclable\": 0,\n            \"state_id\": 6,\n            \"currency\": \"EUR\",\n            \"exchange_rate\": \"1.000000\",\n            \"user_id\": 4,\n            \"type\": \"order\",\n            \"order_id\": 6,\n            \"additional_information\": {\n                \"front_invoice_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 5,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de facture front Office\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"order_email\": \"\"\n        },\n        {\n            \"id\": 8,\n            \"date_order\": \"2020-10-22 11:23:26\",\n            \"external_uid\": \"9\",\n            \"reference\": \"FMWSUQRNF\",\n            \"total_tax_exc\": \"1000.00\",\n            \"total_tax_inc\": \"1200.00\",\n            \"total_tax\": 200,\n            \"total_paid\": \"1200.000000\",\n            \"total_products_tax_exc\": \"1000.000000\",\n            \"total_products_tax_inc\": \"1200.000000\",\n            \"total_products_tax\": 200,\n            \"total_shipping_tax_exc\": \"0.000000\",\n            \"total_shipping_tax_inc\": \"0.000000\",\n            \"total_shipping_tax\": 0,\n            \"shipping_tax_rate\": 20,\n            \"total_discounts_tax_exc\": \"0.000000\",\n            \"total_discounts_tax_inc\": \"0.000000\",\n            \"total_wrapping_tax_exc\": \"0.000000\",\n            \"total_wrapping_tax_inc\": \"0.000000\",\n            \"total_weight\": 0,\n            \"commission\": 100,\n            \"tracking_number\": \"\",\n            \"url_tracking\": \"\",\n            \"created_at\": \"2020-10-22T09:24:00.000000Z\",\n            \"balance\": 0,\n            \"carrier_extra_infos\": \"[]\",\n            \"fees_amount\": 100,\n            \"fees_amount_tax_inc\": \"120.000000\",\n            \"gift\": 0,\n            \"gift_message\": \"\",\n            \"recyclable\": 0,\n            \"state_id\": 6,\n            \"currency\": \"EUR\",\n            \"exchange_rate\": \"1.000000\",\n            \"user_id\": 5,\n            \"type\": \"order\",\n            \"order_id\": 7,\n            \"additional_information\": {\n                \"front_invoice_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 5,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de facture front Office\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"order_email\": \"\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 6,\n            \"count\": 6,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"4667c8ef-c136-4cfb-aca7-43603bb78d3e"},{"name":"Get an order seller","id":"0ab61e4f-4c0d-4633-9f6f-156225193c62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/{{order_seller_id}}","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.show</code> permissions are needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<p>None.</p>\n<p><strong>MODEL</strong></p>\n<p><a href=\"https://origami-marketplace.notion.site/OrderSeller-8db86a168ee140599754285937f0496c\">OrderSeller</a></p>\n","urlObject":{"path":["v1","orders","{{order_seller_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3e6dac50-04cf-45f4-bed3-a994695963ef","name":"Get an order seller","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:08:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f9b507ad2cc2fe96c87ef95a45d4349e6f98b6cb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"date_order\": \"2020-09-16 11:10:02\",\n        \"external_uid\": \"1\",\n        \"reference\": \"PATCKASYQ\",\n        \"total_tax_exc\": \"15.00\",\n        \"total_tax_inc\": \"18.00\",\n        \"total_tax\": 3,\n        \"total_paid\": \"18.000000\",\n        \"total_products_tax_exc\": \"10.000000\",\n        \"total_products_tax_inc\": \"12.000000\",\n        \"total_products_tax\": 2,\n        \"total_shipping_tax_exc\": \"5.000000\",\n        \"total_shipping_tax_inc\": \"6.000000\",\n        \"total_shipping_tax\": 1,\n        \"shipping_tax_rate\": 20,\n        \"total_discounts_tax_exc\": \"0.000000\",\n        \"total_discounts_tax_inc\": \"0.000000\",\n        \"total_wrapping_tax_exc\": \"0.000000\",\n        \"total_wrapping_tax_inc\": \"0.000000\",\n        \"total_weight\": 0,\n        \"commission\": 1,\n        \"tracking_number\": \"\",\n        \"url_tracking\": \"\",\n        \"created_at\": \"2020-09-16T09:12:30.000000Z\",\n        \"balance\": 0,\n        \"carrier_extra_infos\": \"[]\",\n        \"fees_amount\": 1,\n        \"fees_amount_tax_inc\": \"1.200000\",\n        \"gift\": 0,\n        \"gift_message\": \"\",\n        \"recyclable\": 0,\n        \"state_id\": 1,\n        \"currency\": \"EUR\",\n        \"exchange_rate\": \"1.000000\",\n        \"user_id\": 3,\n        \"type\": \"order\",\n        \"order_id\": 3,\n        \"additional_information\": {\n            \"front_invoice_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 5,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de facture front Office\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"order_email\": \"\"\n    }\n}"}],"_postman_id":"0ab61e4f-4c0d-4633-9f6f-156225193c62"},{"name":"Get order seller shipping labels","id":"bfa4f8e3-df2f-4e07-857f-6d30fce93920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/{{order_seller_id}}/get-shipping-labels","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.show</code> permissions are needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<p>None.</p>\n<p><strong>MODEL</strong></p>\n","urlObject":{"path":["v1","orders","{{order_seller_id}}","get-shipping-labels"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"24f8d8bb-79d4-4681-854c-f9872ed96f14","name":"Get an order seller","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:08:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f9b507ad2cc2fe96c87ef95a45d4349e6f98b6cb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"date_order\": \"2020-09-16 11:10:02\",\n        \"external_uid\": \"1\",\n        \"reference\": \"PATCKASYQ\",\n        \"total_tax_exc\": \"15.00\",\n        \"total_tax_inc\": \"18.00\",\n        \"total_tax\": 3,\n        \"total_paid\": \"18.000000\",\n        \"total_products_tax_exc\": \"10.000000\",\n        \"total_products_tax_inc\": \"12.000000\",\n        \"total_products_tax\": 2,\n        \"total_shipping_tax_exc\": \"5.000000\",\n        \"total_shipping_tax_inc\": \"6.000000\",\n        \"total_shipping_tax\": 1,\n        \"shipping_tax_rate\": 20,\n        \"total_discounts_tax_exc\": \"0.000000\",\n        \"total_discounts_tax_inc\": \"0.000000\",\n        \"total_wrapping_tax_exc\": \"0.000000\",\n        \"total_wrapping_tax_inc\": \"0.000000\",\n        \"total_weight\": 0,\n        \"commission\": 1,\n        \"tracking_number\": \"\",\n        \"url_tracking\": \"\",\n        \"created_at\": \"2020-09-16T09:12:30.000000Z\",\n        \"balance\": 0,\n        \"carrier_extra_infos\": \"[]\",\n        \"fees_amount\": 1,\n        \"fees_amount_tax_inc\": \"1.200000\",\n        \"gift\": 0,\n        \"gift_message\": \"\",\n        \"recyclable\": 0,\n        \"state_id\": 1,\n        \"currency\": \"EUR\",\n        \"exchange_rate\": \"1.000000\",\n        \"user_id\": 3,\n        \"type\": \"order\",\n        \"order_id\": 3,\n        \"additional_information\": {\n            \"front_invoice_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 5,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de facture front Office\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"order_email\": \"\"\n    }\n}"}],"_postman_id":"bfa4f8e3-df2f-4e07-857f-6d30fce93920"},{"name":"Get an order seller document","id":"bbfb745a-04b6-48e9-929d-7420191599d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/{{order_seller_id}}/documents/{{document_id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>documents.show</code> permissions are needed.</p>\n","urlObject":{"path":["v1","orders","{{order_seller_id}}","documents","{{document_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"34d64b94-306c-4616-86a5-8a5049562c05","name":"Get an order seller","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:08:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f9b507ad2cc2fe96c87ef95a45d4349e6f98b6cb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"date_order\": \"2020-09-16 11:10:02\",\n        \"external_uid\": \"1\",\n        \"reference\": \"PATCKASYQ\",\n        \"total_tax_exc\": \"15.00\",\n        \"total_tax_inc\": \"18.00\",\n        \"total_tax\": 3,\n        \"total_paid\": \"18.000000\",\n        \"total_products_tax_exc\": \"10.000000\",\n        \"total_products_tax_inc\": \"12.000000\",\n        \"total_products_tax\": 2,\n        \"total_shipping_tax_exc\": \"5.000000\",\n        \"total_shipping_tax_inc\": \"6.000000\",\n        \"total_shipping_tax\": 1,\n        \"shipping_tax_rate\": 20,\n        \"total_discounts_tax_exc\": \"0.000000\",\n        \"total_discounts_tax_inc\": \"0.000000\",\n        \"total_wrapping_tax_exc\": \"0.000000\",\n        \"total_wrapping_tax_inc\": \"0.000000\",\n        \"total_weight\": 0,\n        \"commission\": 1,\n        \"tracking_number\": \"\",\n        \"url_tracking\": \"\",\n        \"created_at\": \"2020-09-16T09:12:30.000000Z\",\n        \"balance\": 0,\n        \"carrier_extra_infos\": \"[]\",\n        \"fees_amount\": 1,\n        \"fees_amount_tax_inc\": \"1.200000\",\n        \"gift\": 0,\n        \"gift_message\": \"\",\n        \"recyclable\": 0,\n        \"state_id\": 1,\n        \"currency\": \"EUR\",\n        \"exchange_rate\": \"1.000000\",\n        \"user_id\": 3,\n        \"type\": \"order\",\n        \"order_id\": 3,\n        \"additional_information\": {\n            \"front_invoice_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 5,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de facture front Office\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"order_email\": \"\"\n    }\n}"}],"_postman_id":"bbfb745a-04b6-48e9-929d-7420191599d9"},{"name":"Track all order sellers","id":"83a70284-7db7-4259-be9a-8fe96b11a16a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/trackAll","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.show</code> permissions are needed.</p>\n","urlObject":{"path":["v1","orders","trackAll"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"edffd2ee-bcbe-49ad-bfa5-bb474eb97a45","name":"Get an order seller","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:08:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f9b507ad2cc2fe96c87ef95a45d4349e6f98b6cb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"date_order\": \"2020-09-16 11:10:02\",\n        \"external_uid\": \"1\",\n        \"reference\": \"PATCKASYQ\",\n        \"total_tax_exc\": \"15.00\",\n        \"total_tax_inc\": \"18.00\",\n        \"total_tax\": 3,\n        \"total_paid\": \"18.000000\",\n        \"total_products_tax_exc\": \"10.000000\",\n        \"total_products_tax_inc\": \"12.000000\",\n        \"total_products_tax\": 2,\n        \"total_shipping_tax_exc\": \"5.000000\",\n        \"total_shipping_tax_inc\": \"6.000000\",\n        \"total_shipping_tax\": 1,\n        \"shipping_tax_rate\": 20,\n        \"total_discounts_tax_exc\": \"0.000000\",\n        \"total_discounts_tax_inc\": \"0.000000\",\n        \"total_wrapping_tax_exc\": \"0.000000\",\n        \"total_wrapping_tax_inc\": \"0.000000\",\n        \"total_weight\": 0,\n        \"commission\": 1,\n        \"tracking_number\": \"\",\n        \"url_tracking\": \"\",\n        \"created_at\": \"2020-09-16T09:12:30.000000Z\",\n        \"balance\": 0,\n        \"carrier_extra_infos\": \"[]\",\n        \"fees_amount\": 1,\n        \"fees_amount_tax_inc\": \"1.200000\",\n        \"gift\": 0,\n        \"gift_message\": \"\",\n        \"recyclable\": 0,\n        \"state_id\": 1,\n        \"currency\": \"EUR\",\n        \"exchange_rate\": \"1.000000\",\n        \"user_id\": 3,\n        \"type\": \"order\",\n        \"order_id\": 3,\n        \"additional_information\": {\n            \"front_invoice_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 5,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de facture front Office\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"order_email\": \"\"\n    }\n}"}],"_postman_id":"83a70284-7db7-4259-be9a-8fe96b11a16a"},{"name":"Get refunds","id":"b06701c1-a6d4-423e-b3d1-85e430a06072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/refunds","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.index</code> permission is needed.</p>\n<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_refund_lines</td>\n<td>Related <code>OrderRefundLines</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_seller</td>\n<td>Related <code>OrderSeller</code></td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","orders","refunds"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b06701c1-a6d4-423e-b3d1-85e430a06072"},{"name":"Create an order seller","id":"cddd0ff2-73fd-4576-9596-fc4130053ee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"ORDERTEST\",\n    \"external_uid\": \"1011\",\n    \"seller_id\": 4,\n    \"cart_id\": 2,\n    \"type\": \"order\",\n    \"state_id\": 5,\n    \"shipping_id\": 1,\n    \"shipping_address\": {\n        \"country\": \"France\",\n        \"city\": \"Paris\",\n        \"lastname\": \"lastname\",\n        \"firstname\": \"firstname\",\n        \"address_line_1\": \"42 rue du test\",\n        \"address_line_2\": \"\",\n        \"postcode\": \"42000\",\n        \"phone\": \"+3300000000\",\n        \"customer_id\": 1\n    },\n    \"billing_address\": {\n        \"country\": \"France\",\n        \"city\": \"Paris\",\n        \"lastname\": \"lastname\",\n        \"firstname\": \"firstname\",\n        \"address_line_1\": \"42 rue du test\",\n        \"address_line_2\": \"\",\n        \"postcode\": \"42000\",\n        \"phone\": \"+3300000000\",\n        \"customer_id\": 1\n    },\n    \"payments\": [\n        {\n            \"transaction_id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/orders","description":"<p>This endpoint can be used in two different ways, depending on your use case.<br />It can create an <code>OrderSeller</code> from scratch, with already all the information filled in. This is not commonly used, since in most cases an <code>OrderSeller</code> was a <code>CartSeller</code> / <code>QuoteSeller</code> before.<br />Most of the time, we will indeed transform a <code>CartSeller</code> / <code>QuoteSeller</code> into an <code>OrderSeller</code>with some additionnal information (like a <code>PaymentTransaction</code> to attach at the end of a checkout process). In the section \"Body parameters\", you will find the available parameters for both cases.</p>\n<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.create</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<p><strong>Case n°1=&gt; Creating an</strong> <strong><code>OrderSeller</code></strong> <strong>out of a</strong> <code>CartSeller</code> / <code>QuoteSeller</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>Id of the <code>UserGroup</code> with type <code>seller</code> that is selling the products inside this <code>OrderSeller</code>. Can be obtained directly from the <code>CartSeller</code> / <code>QuoteSeller</code> we are transforming.</td>\n<td>Required. Integer. Must be an existing <code>UserGroup</code>.</td>\n</tr>\n<tr>\n<td><strong>cart_id</strong></td>\n<td>Id of the <code>Cart</code> containing the original <code>CartSeller</code> / <code>QuoteSeller</code>. Can be obtained directly from the <code>CartSeller</code> / <code>QuoteSeller</code> we are transforming.</td>\n<td>Required. Integer. Must be an existing <code>Cart</code>/ <code>Quote</code>.</td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td>In this use case, it will be \"order\".</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>A string you would like to use to identify an <code>OrderSeller</code>.  <br />We recommand to follow the following rules :  <br />- Several <code>OrderSeller</code> belonging to the same <code>Order</code> should have the same reference.  <br />- Every <code>Order</code> should have a unique reference.  <br />  <br />A simple way to achieve that is to supplly a reference generated from the id of the <code>Order</code>.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>Several <code>OrderSeller</code> in the same <code>Order</code> can have the same <code>Seller</code>. In this case, they need to have a different <code>Warehouse</code>. Otherwise, in most cases, this field can be null.</td>\n<td>Nullable. If present, must be an existing <code>Warehouse</code>.</td>\n</tr>\n<tr>\n<td>external_total_tax_inc</td>\n<td>This field can contain the total product amount of the original <code>CartSeller</code>, to perform <strong>optionnal</strong> extra verification. Can be obtained directly from the <code>CartSeller</code> we are transforming, in the field \"total_products_tax_inc\".</td>\n<td>Nullable. String. Numeric value.</td>\n</tr>\n<tr>\n<td>shipping.0.extra_info</td>\n<td>Extra information about shipping (useful to store a relay point id for example).</td>\n<td>Nullable.</td>\n</tr>\n<tr>\n<td>payments.*.transaction_id</td>\n<td>Id of a <code>PaymentTransaction</code> you need to attach to the <code>OrderSeller</code>.</td>\n<td>Required if \"payments\" array is not empty. Must be an existing <code>PaymentTransaction</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Case n°2 =&gt; Creating an</strong> <strong><code>OrderSeller</code></strong> <strong>from scratch (WIP)</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>seller_id</td>\n<td>Id of the <code>UserGroup</code> with type <code>seller</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td>state_id</td>\n<td>Id of <code>State</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td>shipping_id</td>\n<td>Id of <code>ShippingOffer</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td>shipping_address_id</td>\n<td>Id of <code>OrderAddress</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td>billing_address_id</td>\n<td>Id of <code>OrderAddress</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td>payments.*.transaction_id</td>\n<td>Array of <code>PaymentTransaction</code> id linked to this model</td>\n<td>Array of transaction_id. Required</td>\n</tr>\n<tr>\n<td>type</td>\n<td>It is the type of order_seller. It can be <code>order</code>, <code>cart</code> or <code>quote</code></td>\n<td>String</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>Reference of the order_seller</td>\n<td>String</td>\n</tr>\n<tr>\n<td>external_uid</td>\n<td>Unique external_uid</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n","urlObject":{"path":["v1","orders"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"87086155-afb3-474c-ba39-ed076e363a9b","name":"Create an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  •••••••"},{"key":"context","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"ORDERTEST\",\n    \"external_uid\": \"1011\",\n    \"seller_id\": 4,\n    \"cart_id\": 2,\n    \"type\": \"order\",\n    \"state_id\": 5,\n    \"shipping_id\": 1,\n    \"shipping_address_id\": {\n        \"country\": \"France\",\n        \"city\": \"Paris\",\n        \"lastname\": \"lastname\",\n        \"firstname\": \"firstname\",\n        \"address_line_1\": \"42 rue du test\",\n        \"address_line_2\": \"\",\n        \"phone\": \"+3300000000\",\n        \"customer_id\": 1\n    },\n    \"billing_address_id\": {\n        \"country\": \"France\",\n        \"city\": \"Paris\",\n        \"lastname\": \"lastname\",\n        \"firstname\": \"firstname\",\n        \"address_line_1\": \"42 rue du test\",\n        \"address_line_2\": \"\",\n        \"postcode\": \"42000\",\n        \"phone\": \"+3300000000\",\n        \"customer_id\": 1\n    },\n    \"payments\": [\n        {\n            \"transaction_id\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/v1/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:20:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"efafca31bfc78f89daba621aa52970e606705e30\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 10,\n        \"date_order\": \"2020-08-01 00:00:00\",\n        \"external_uid\": \"\",\n        \"reference\": \"ORDERTEST\",\n        \"total_tax_exc\": \"0.00\",\n        \"total_tax_inc\": \"0.00\",\n        \"total_tax\": 0,\n        \"total_paid\": \"0.000000\",\n        \"total_products_tax_exc\": \"0.000000\",\n        \"total_products_tax_inc\": \"0.000000\",\n        \"total_products_tax\": 0,\n        \"total_shipping_tax_exc\": \"0.000000\",\n        \"total_shipping_tax_inc\": \"0.000000\",\n        \"total_shipping_tax\": 0,\n        \"shipping_tax_rate\": 0,\n        \"total_discounts_tax_exc\": \"0.000000\",\n        \"total_discounts_tax_inc\": \"0.000000\",\n        \"total_wrapping_tax_exc\": \"0.000000\",\n        \"total_wrapping_tax_inc\": \"0.000000\",\n        \"total_weight\": 0,\n        \"commission\": 168,\n        \"tracking_number\": \"\",\n        \"url_tracking\": \"\",\n        \"created_at\": \"2020-10-28T14:20:39.000000Z\",\n        \"balance\": 0,\n        \"carrier_extra_infos\": null,\n        \"fees_amount\": 168,\n        \"fees_amount_tax_inc\": \"201.600000\",\n        \"gift\": 0,\n        \"gift_message\": null,\n        \"recyclable\": 0,\n        \"state_id\": 1,\n        \"currency\": \"EUR\",\n        \"exchange_rate\": \"1.000000\",\n        \"user_id\": 1,\n        \"type\": \"order\",\n        \"order_id\": 9,\n        \"additional_information\": {\n            \"front_invoice_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 5,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de facture front Office\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"order_email\": \"\"\n    }\n}"}],"_postman_id":"cddd0ff2-73fd-4576-9596-fc4130053ee0"},{"name":"Accept an order seller","id":"fad481af-e6d8-4a98-a987-4fac828544ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 2\n}"},"url":"{{domain}}/v1/orders/accept","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.update</code> permissions are needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>OrderSeller</code> linked to this model</td>\n<td>Integer. Required</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n","urlObject":{"path":["v1","orders","accept"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fe75a418-f48c-4cdf-9284-b950856e10e0","name":"Accept an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10\n}"},"url":"{{domain}}/v1/orders/accept"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:41:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fad481af-e6d8-4a98-a987-4fac828544ed"},{"name":"Cancel an order seller","id":"ce618da7-78d1-4977-8aed-02a1a509373f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10\n}"},"url":"{{domain}}/v1/orders/cancel","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.update</code> permissions are needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>OrderSeller</code> linked this model</td>\n<td>Integer. Required</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n","urlObject":{"path":["v1","orders","cancel"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0231b485-f036-4b5f-acd6-b28b5464252a","name":"Cancel an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10\n}"},"url":"{{domain}}/v1/orders/cancel"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:42:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ce618da7-78d1-4977-8aed-02a1a509373f"},{"name":"Refund an order seller","id":"e678355e-a4bb-409a-add4-9f1346e58e12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Refund OrderSeller 10\",\n    \"total\": 72,\n    \"lines\": [\n        {\n            \"amount_tax_inc\": 72,\n            \"label\": \"Refund Line 10\",\n            \"quantity\": 1,\n            \"order_line_id\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/orders/{{order_seller_id}}/refund","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_refunds.create</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\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>Rules</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>total</td>\n<td>Total amount to refund</td>\n<td>Required. Numeric.</td>\n</tr>\n<tr>\n<td>refund_fees_tax_inc</td>\n<td>Part of the total amount to refund that should be dedicated to customer fees.</td>\n<td>Numeric. Must be less than <code>total</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","orders","{{order_seller_id}}","refund"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4186cea1-1637-4d60-a83a-a14b686a48c4","name":"Refund an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"total\": 72,\n    \"lines\": [\n        {\n            \"amount_tax_inc\": 72,\n            \"label\": \"Refund Line 10\",\n            \"quantity\": 1,\n            \"order_line_id\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/orders/1/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:56:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"ea464790b30307bddcd72b740c01e58946ca7373\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 10,\n        \"date_order\": \"2020-08-01 00:00:00\",\n        \"external_uid\": \"\",\n        \"reference\": \"ORDERTEST\",\n        \"total_tax_exc\": \"0.00\",\n        \"total_tax_inc\": \"0.00\",\n        \"total_tax\": 0,\n        \"total_paid\": \"0.000000\",\n        \"total_products_tax_exc\": \"0.000000\",\n        \"total_products_tax_inc\": \"0.000000\",\n        \"total_products_tax\": 0,\n        \"total_shipping_tax_exc\": \"0.000000\",\n        \"total_shipping_tax_inc\": \"0.000000\",\n        \"total_shipping_tax\": 0,\n        \"shipping_tax_rate\": 0,\n        \"total_discounts_tax_exc\": \"0.000000\",\n        \"total_discounts_tax_inc\": \"0.000000\",\n        \"total_wrapping_tax_exc\": \"0.000000\",\n        \"total_wrapping_tax_inc\": \"0.000000\",\n        \"total_weight\": 0,\n        \"commission\": 168,\n        \"tracking_number\": \"\",\n        \"url_tracking\": \"\",\n        \"created_at\": \"2020-10-28T14:20:39.000000Z\",\n        \"balance\": 0,\n        \"carrier_extra_infos\": null,\n        \"fees_amount\": 168,\n        \"fees_amount_tax_inc\": \"201.600000\",\n        \"gift\": 0,\n        \"gift_message\": null,\n        \"recyclable\": 0,\n        \"state_id\": 3,\n        \"currency\": \"EUR\",\n        \"exchange_rate\": \"1.000000\",\n        \"user_id\": 1,\n        \"type\": \"order\",\n        \"order_id\": 9,\n        \"additional_information\": {\n            \"front_invoice_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 5,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de facture front Office\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"order_email\": \"\"\n    }\n}"},{"id":"ad717507-e202-45de-bb85-c21eaf3bf2eb","name":"Refund an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"total\": 72,\n    \"lines\": [\n        {\n            \"amount_tax_inc\": 72,\n            \"label\": \"Refund Line 10\",\n            \"quantity\": 1,\n            \"order_line_id\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/orders/{id}/refund"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e678355e-a4bb-409a-add4-9f1346e58e12"},{"name":"Add a document to an order seller","id":"d4ab3b65-a3f3-49b0-aa57-c96474cae9ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"invoice.pdf\",\n    \"order_seller_id\": \"1\",\n    \"type\": \"invoice\",\n    \"content\": \"http://www.africau.edu/images/default/sample.pdf\"\n}"},"url":"{{domain}}/v1/orders/{{order_seller_id}}/documents","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>documents.create</code> permission is needed.</p>\n<p>If another <code>OrderDocument</code> is already existing for the same targetted <code>OrderSeller</code> with same type, it will be replaced with this new <code>OrderDocument</code>.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>The name of the document</td>\n<td>String. Default value: empty string.</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>OrderSeller</code> linked to the model</td>\n<td>Integer. Required.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of document. Use in <code>invoice</code></td>\n<td>String. Required.</td>\n</tr>\n<tr>\n<td>content</td>\n<td>Url of the hosting document</td>\n<td>String. Required.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","orders","{{order_seller_id}}","documents"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b634068a-7981-4255-97e7-c144d2fa2fc0","name":"Add a document to an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  •••••••"},{"key":"context","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"invoice.pdf\",\n    \"order_seller_id\": \"1\",\n    \"type\": \"invoice\",\n    \"content\": \"http://www.africau.edu/images/default/sample.pdf\"\n}"},"url":"/v1/orders/10/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:47:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"0d6a647de5e15a258202071a5e76b3e4ea038037\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"invoice.pdf\",\n        \"type\": \"invoice\",\n        \"path\": \"http://172.20.0.1:8092/images/order_document/order_document-6319b9c2e5288.pdf\",\n        \"content\": \"http://www.africau.edu/images/default/sample.pdf,JVBERi0xLjMNCiXi48/TDQoNCjEgMCBvYmoNCjw8DQovVHlwZSAvQ2F0YWxvZw0KL091dGxpbmVzIDIgMCBSDQovUGFnZXMgMyAwIFINCj4+DQplbmRvYmoNCg0KMiAwIG9iag0KPDwNCi9UeXBlIC9PdXRsaW5lcw0KL0NvdW50IDANCj4+DQplbmRvYmoNCg0KMyAwIG9iag0KPDwNCi9UeXBlIC9QYWdlcw0KL0NvdW50IDINCi9LaWRzIFsgNCAwIFIgNiAwIFIgXSANCj4+DQplbmRvYmoNCg0KNCAwIG9iag0KPDwNCi9UeXBlIC9QYWdlDQovUGFyZW50IDMgMCBSDQovUmVzb3VyY2VzIDw8DQovRm9udCA8PA0KL0YxIDkgMCBSIA0KPj4NCi9Qcm9jU2V0IDggMCBSDQo+Pg0KL01lZGlhQm94IFswIDAgNjEyLjAwMDAgNzkyLjAwMDBdDQovQ29udGVudHMgNSAwIFINCj4+DQplbmRvYmoNCg0KNSAwIG9iag0KPDwgL0xlbmd0aCAxMDc0ID4+DQpzdHJlYW0NCjIgSg0KQlQNCjAgMCAwIHJnDQovRjEgMDAyNyBUZg0KNTcuMzc1MCA3MjIuMjgwMCBUZA0KKCBBIFNpbXBsZSBQREYgRmlsZSApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY4OC42MDgwIFRkDQooIFRoaXMgaXMgYSBzbWFsbCBkZW1vbnN0cmF0aW9uIC5wZGYgZmlsZSAtICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNjY0LjcwNDAgVGQNCigganVzdCBmb3IgdXNlIGluIHRoZSBWaXJ0dWFsIE1lY2hhbmljcyB0dXRvcmlhbHMuIE1vcmUgdGV4dC4gQW5kIG1vcmUgKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA2NTIuNzUyMCBUZA0KKCB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDYyOC44NDgwIFRkDQooIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNjE2Ljg5NjAgVGQNCiggdGV4dC4gQW5kIG1vcmUgdGV4dC4gQm9yaW5nLCB6enp6ei4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNjA0Ljk0NDAgVGQNCiggbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDU5Mi45OTIwIFRkDQooIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNTY5LjA4ODAgVGQNCiggQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA1NTcuMTM2MCBUZA0KKCB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBFdmVuIG1vcmUuIENvbnRpbnVlZCBvbiBwYWdlIDIgLi4uKSBUag0KRVQNCmVuZHN0cmVhbQ0KZW5kb2JqDQoNCjYgMCBvYmoNCjw8DQovVHlwZSAvUGFnZQ0KL1BhcmVudCAzIDAgUg0KL1Jlc291cmNlcyA8PA0KL0ZvbnQgPDwNCi9GMSA5IDAgUiANCj4+DQovUHJvY1NldCA4IDAgUg0KPj4NCi9NZWRpYUJveCBbMCAwIDYxMi4wMDAwIDc5Mi4wMDAwXQ0KL0NvbnRlbnRzIDcgMCBSDQo+Pg0KZW5kb2JqDQoNCjcgMCBvYmoNCjw8IC9MZW5ndGggNjc2ID4+DQpzdHJlYW0NCjIgSg0KQlQNCjAgMCAwIHJnDQovRjEgMDAyNyBUZg0KNTcuMzc1MCA3MjIuMjgwMCBUZA0KKCBTaW1wbGUgUERGIEZpbGUgMiApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY4OC42MDgwIFRkDQooIC4uLmNvbnRpbnVlZCBmcm9tIHBhZ2UgMS4gWWV0IG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA2NzYuNjU2MCBUZA0KKCBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY2NC43MDQwIFRkDQooIHRleHQuIE9oLCBob3cgYm9yaW5nIHR5cGluZyB0aGlzIHN0dWZmLiBCdXQgbm90IGFzIGJvcmluZyBhcyB3YXRjaGluZyApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY1Mi43NTIwIFRkDQooIHBhaW50IGRyeS4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA2NDAuODAwMCBUZA0KKCBCb3JpbmcuICBNb3JlLCBhIGxpdHRsZSBtb3JlIHRleHQuIFRoZSBlbmQsIGFuZCBqdXN0IGFzIHdlbGwuICkgVGoNCkVUDQplbmRzdHJlYW0NCmVuZG9iag0KDQo4IDAgb2JqDQpbL1BERiAvVGV4dF0NCmVuZG9iag0KDQo5IDAgb2JqDQo8PA0KL1R5cGUgL0ZvbnQNCi9TdWJ0eXBlIC9UeXBlMQ0KL05hbWUgL0YxDQovQmFzZUZvbnQgL0hlbHZldGljYQ0KL0VuY29kaW5nIC9XaW5BbnNpRW5jb2RpbmcNCj4+DQplbmRvYmoNCg0KMTAgMCBvYmoNCjw8DQovQ3JlYXRvciAoUmF2ZSBcKGh0dHA6Ly93d3cubmV2cm9uYS5jb20vcmF2ZVwpKQ0KL1Byb2R1Y2VyIChOZXZyb25hIERlc2lnbnMpDQovQ3JlYXRpb25EYXRlIChEOjIwMDYwMzAxMDcyODI2KQ0KPj4NCmVuZG9iag0KDQp4cmVmDQowIDExDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMTkgMDAwMDAgbg0KMDAwMDAwMDA5MyAwMDAwMCBuDQowMDAwMDAwMTQ3IDAwMDAwIG4NCjAwMDAwMDAyMjIgMDAwMDAgbg0KMDAwMDAwMDM5MCAwMDAwMCBuDQowMDAwMDAxNTIyIDAwMDAwIG4NCjAwMDAwMDE2OTAgMDAwMDAgbg0KMDAwMDAwMjQyMyAwMDAwMCBuDQowMDAwMDAyNDU2IDAwMDAwIG4NCjAwMDAwMDI1NzQgMDAwMDAgbg0KDQp0cmFpbGVyDQo8PA0KL1NpemUgMTENCi9Sb290IDEgMCBSDQovSW5mbyAxMCAwIFINCj4+DQoNCnN0YXJ0eHJlZg0KMjcxNA0KJSVFT0YNCg==\",\n        \"created_at\": \"2022-09-08T09:45:38.000000Z\",\n        \"updated_at\": \"2022-09-08T09:45:38.000000Z\"\n    }\n}"}],"_postman_id":"d4ab3b65-a3f3-49b0-aa57-c96474cae9ad"},{"name":"Add a shipping label to an order seller","id":"f50f77b9-5e54-4500-9d19-11e65278d615","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"module\": \"send_cloud\",\n    \"order_seller_id\": \"1\"\n}"},"url":"{{domain}}/v1/orders/{{order_seller_id}}/generate-label","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.show</code> permission is needed.</p>\n<p>If a <code>ShippingLabel</code> is already existing for the same targetted <code>OrderSeller</code>, a new<code>ShippingLabel</code> won't be created and the existing one won't be updated.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>module</td>\n<td>The name of the shipping plateform</td>\n<td>String. In: send_cloud,boxtal</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>OrderSeller</code> linked to the model. If not filled, <code>ShippingLabel</code> will not be generated.</td>\n<td>Integer.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","orders","{{order_seller_id}}","generate-label"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"f4712524-9ed9-4e5d-a9dd-bb0c75dcd038","name":"Add a document to an order seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  •••••••"},{"key":"context","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"invoice.pdf\",\n    \"order_seller_id\": \"1\",\n    \"type\": \"invoice\",\n    \"content\": \"http://www.africau.edu/images/default/sample.pdf\"\n}"},"url":"/v1/orders/10/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 14:47:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"0d6a647de5e15a258202071a5e76b3e4ea038037\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"invoice.pdf\",\n        \"type\": \"invoice\",\n        \"path\": \"http://172.20.0.1:8092/images/order_document/order_document-6319b9c2e5288.pdf\",\n        \"content\": \"http://www.africau.edu/images/default/sample.pdf,JVBERi0xLjMNCiXi48/TDQoNCjEgMCBvYmoNCjw8DQovVHlwZSAvQ2F0YWxvZw0KL091dGxpbmVzIDIgMCBSDQovUGFnZXMgMyAwIFINCj4+DQplbmRvYmoNCg0KMiAwIG9iag0KPDwNCi9UeXBlIC9PdXRsaW5lcw0KL0NvdW50IDANCj4+DQplbmRvYmoNCg0KMyAwIG9iag0KPDwNCi9UeXBlIC9QYWdlcw0KL0NvdW50IDINCi9LaWRzIFsgNCAwIFIgNiAwIFIgXSANCj4+DQplbmRvYmoNCg0KNCAwIG9iag0KPDwNCi9UeXBlIC9QYWdlDQovUGFyZW50IDMgMCBSDQovUmVzb3VyY2VzIDw8DQovRm9udCA8PA0KL0YxIDkgMCBSIA0KPj4NCi9Qcm9jU2V0IDggMCBSDQo+Pg0KL01lZGlhQm94IFswIDAgNjEyLjAwMDAgNzkyLjAwMDBdDQovQ29udGVudHMgNSAwIFINCj4+DQplbmRvYmoNCg0KNSAwIG9iag0KPDwgL0xlbmd0aCAxMDc0ID4+DQpzdHJlYW0NCjIgSg0KQlQNCjAgMCAwIHJnDQovRjEgMDAyNyBUZg0KNTcuMzc1MCA3MjIuMjgwMCBUZA0KKCBBIFNpbXBsZSBQREYgRmlsZSApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY4OC42MDgwIFRkDQooIFRoaXMgaXMgYSBzbWFsbCBkZW1vbnN0cmF0aW9uIC5wZGYgZmlsZSAtICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNjY0LjcwNDAgVGQNCigganVzdCBmb3IgdXNlIGluIHRoZSBWaXJ0dWFsIE1lY2hhbmljcyB0dXRvcmlhbHMuIE1vcmUgdGV4dC4gQW5kIG1vcmUgKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA2NTIuNzUyMCBUZA0KKCB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDYyOC44NDgwIFRkDQooIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNjE2Ljg5NjAgVGQNCiggdGV4dC4gQW5kIG1vcmUgdGV4dC4gQm9yaW5nLCB6enp6ei4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNjA0Ljk0NDAgVGQNCiggbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDU5Mi45OTIwIFRkDQooIEFuZCBtb3JlIHRleHQuIEFuZCBtb3JlIHRleHQuICkgVGoNCkVUDQpCVA0KL0YxIDAwMTAgVGYNCjY5LjI1MDAgNTY5LjA4ODAgVGQNCiggQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA1NTcuMTM2MCBUZA0KKCB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBFdmVuIG1vcmUuIENvbnRpbnVlZCBvbiBwYWdlIDIgLi4uKSBUag0KRVQNCmVuZHN0cmVhbQ0KZW5kb2JqDQoNCjYgMCBvYmoNCjw8DQovVHlwZSAvUGFnZQ0KL1BhcmVudCAzIDAgUg0KL1Jlc291cmNlcyA8PA0KL0ZvbnQgPDwNCi9GMSA5IDAgUiANCj4+DQovUHJvY1NldCA4IDAgUg0KPj4NCi9NZWRpYUJveCBbMCAwIDYxMi4wMDAwIDc5Mi4wMDAwXQ0KL0NvbnRlbnRzIDcgMCBSDQo+Pg0KZW5kb2JqDQoNCjcgMCBvYmoNCjw8IC9MZW5ndGggNjc2ID4+DQpzdHJlYW0NCjIgSg0KQlQNCjAgMCAwIHJnDQovRjEgMDAyNyBUZg0KNTcuMzc1MCA3MjIuMjgwMCBUZA0KKCBTaW1wbGUgUERGIEZpbGUgMiApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY4OC42MDgwIFRkDQooIC4uLmNvbnRpbnVlZCBmcm9tIHBhZ2UgMS4gWWV0IG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA2NzYuNjU2MCBUZA0KKCBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSB0ZXh0LiBBbmQgbW9yZSApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY2NC43MDQwIFRkDQooIHRleHQuIE9oLCBob3cgYm9yaW5nIHR5cGluZyB0aGlzIHN0dWZmLiBCdXQgbm90IGFzIGJvcmluZyBhcyB3YXRjaGluZyApIFRqDQpFVA0KQlQNCi9GMSAwMDEwIFRmDQo2OS4yNTAwIDY1Mi43NTIwIFRkDQooIHBhaW50IGRyeS4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gQW5kIG1vcmUgdGV4dC4gKSBUag0KRVQNCkJUDQovRjEgMDAxMCBUZg0KNjkuMjUwMCA2NDAuODAwMCBUZA0KKCBCb3JpbmcuICBNb3JlLCBhIGxpdHRsZSBtb3JlIHRleHQuIFRoZSBlbmQsIGFuZCBqdXN0IGFzIHdlbGwuICkgVGoNCkVUDQplbmRzdHJlYW0NCmVuZG9iag0KDQo4IDAgb2JqDQpbL1BERiAvVGV4dF0NCmVuZG9iag0KDQo5IDAgb2JqDQo8PA0KL1R5cGUgL0ZvbnQNCi9TdWJ0eXBlIC9UeXBlMQ0KL05hbWUgL0YxDQovQmFzZUZvbnQgL0hlbHZldGljYQ0KL0VuY29kaW5nIC9XaW5BbnNpRW5jb2RpbmcNCj4+DQplbmRvYmoNCg0KMTAgMCBvYmoNCjw8DQovQ3JlYXRvciAoUmF2ZSBcKGh0dHA6Ly93d3cubmV2cm9uYS5jb20vcmF2ZVwpKQ0KL1Byb2R1Y2VyIChOZXZyb25hIERlc2lnbnMpDQovQ3JlYXRpb25EYXRlIChEOjIwMDYwMzAxMDcyODI2KQ0KPj4NCmVuZG9iag0KDQp4cmVmDQowIDExDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMTkgMDAwMDAgbg0KMDAwMDAwMDA5MyAwMDAwMCBuDQowMDAwMDAwMTQ3IDAwMDAwIG4NCjAwMDAwMDAyMjIgMDAwMDAgbg0KMDAwMDAwMDM5MCAwMDAwMCBuDQowMDAwMDAxNTIyIDAwMDAwIG4NCjAwMDAwMDE2OTAgMDAwMDAgbg0KMDAwMDAwMjQyMyAwMDAwMCBuDQowMDAwMDAyNDU2IDAwMDAwIG4NCjAwMDAwMDI1NzQgMDAwMDAgbg0KDQp0cmFpbGVyDQo8PA0KL1NpemUgMTENCi9Sb290IDEgMCBSDQovSW5mbyAxMCAwIFINCj4+DQoNCnN0YXJ0eHJlZg0KMjcxNA0KJSVFT0YNCg==\",\n        \"created_at\": \"2022-09-08T09:45:38.000000Z\",\n        \"updated_at\": \"2022-09-08T09:45:38.000000Z\"\n    }\n}"}],"_postman_id":"f50f77b9-5e54-4500-9d19-11e65278d615"},{"name":"Update an order seller","id":"ac52997f-8b71-4615-86bc-07f06d6668a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"state_id\": 1,\n    \"tracking_number\": \"123456789\"\n}"},"url":"{{domain}}/v1/orders/{{order_seller_id}}","description":"<p><strong>PERMISSIONS</strong></p>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.update</code> permission is needed.</p>\n<p><strong>BODY PARAMETERS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>state_id</td>\n<td>Id of a <code>State</code></td>\n<td>Integer. Required</td>\n</tr>\n<tr>\n<td>tracking_number</td>\n<td>The tracking number of the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>shipping_extra_info</td>\n<td>Information of delivery point, get from shipping plateform.</td>\n<td>Only required if shipping method chosen for this OrderSeller needs a delivery point. String. Must be a json encoded, following this structure: \"{\\\"id\\\":123,\\\"code\\\":54321,\\\"country\\\":\\\"ES\\\",\\\"house_number\\\":123,\\\"street\\\":\\\"Baker street\\\",\\\"postal_code\\\":123,\\\"name\\\":\\\"Name of delivery point\\\",\\\"firstname\\\":\\\"Firstname of Customer\\\",\\\"lastname\\\":\\\"Lastname of Customer\\\"}\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>MODEL</strong></p>\n","urlObject":{"path":["v1","orders","{{order_seller_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a8d87289-e80a-4159-8a5e-b60757291811","name":"Update an order seller","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"state_id\": 1,\n    \"tracking_number\": \"123456789\"\n}"},"url":"{{domain}}/v1/orders/10"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:08:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ac52997f-8b71-4615-86bc-07f06d6668a8"}],"id":"7386c307-d98e-4baf-ba6b-f4b735101a43","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer</td>\n<td>Related customer</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller</td>\n<td>Related seller</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>shippingOffer</td>\n<td>Shipping offer chosen for this order</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>orderLines</td>\n<td><code>OrderLines</code> related to this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Current <code>State</code> of this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>available_states</td>\n<td>All next available <code>States</code> for this <code>OrderSeller</code>, relating to the order_sellers workflow.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_transactions</td>\n<td>All transactions done on this order</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>shippingAddress</td>\n<td>Related shipping address</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>shipping_label</td>\n<td>Related <code>ShippingLabel</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>billingAddress</td>\n<td>Related billing address</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>fees</td>\n<td>Marketplace fees for this order</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>refunds</td>\n<td>All refunds made on this order</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>refunds_total</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>documents</td>\n<td>Related <code>OrderDocuments</code> (invoice, receipt etc..)</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tickets</td>\n<td>All tickets open with this order as reference</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>state_logs</td>\n<td>History of <code>OrderSeller</code>'s <code>State</code> changes.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>quoteShippings</td>\n<td><code>QuoteShippings</code> related to this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_requests</td>\n<td><code>PaymentRequests</code> related to this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>user</td>\n<td><code>User</code> related to this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>parent</td>\n<td><code>OrderSeller</code> which ID is <code>parent_id</code> of this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>children</td>\n<td>All <code>OrderSellers</code> having ID of this <code>OrderSeller</code> on their <code>parent_id</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_info</td>\n<td>Informations obout this OrderSeller (can be <code>OrderSellerReturnInfo</code>, <code>OrderSellerSubscriptionLineInfo</code> or <code>OrderSellerSubscriptionInfo</code>).</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_returns</td>\n<td><code>OrderSellers</code> <code>children</code> which <code>type</code> value is <code>return</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>shipping_label</td>\n<td>Get shipping label of this order if shipping module is installed</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>notifications_sent</td>\n<td>All notifications sent related to this order</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>available_returns</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>vouchers</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>gift_cards</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tracking_logs</td>\n<td><code>OrderSellerTrackingLogs</code> related to this <code>OrderSeller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>opinion_link</td>\n<td></td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"aa5abfaa-6047-449c-be83-36d8501e75a7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f6f987bf-f218-492e-8067-b4b94ceff86e","type":"text/javascript","exec":[""]}}],"_postman_id":"7386c307-d98e-4baf-ba6b-f4b735101a43"},{"name":"Order Lines","item":[{"name":"List all order lines","id":"d27e62dd-262d-49c1-b6d9-74d10240c1e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/lines","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_lines.index</code> permission is needed.</p>\n","urlObject":{"path":["v1","orders","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"96bab674-ce80-4eb5-af42-16c6bfce8401","name":"List all order lines","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/lines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:14:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f1837b384754679cebf7018c93da623469bad6bf\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3,\n            \"product_id\": 1,\n            \"product_variant_id\": 1,\n            \"name\": \"Produit de test -  :\",\n            \"quantity\": 1,\n            \"price_tax_exc\": \"10.000000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"P1364848329\",\n            \"weight\": \"0\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"12.000000\",\n            \"total_price_tax_exc\": \"10.000000\",\n            \"unit_price_tax_inc\": \"12.000000\",\n            \"unit_price_tax_exc\": \"10.000000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 3\n        },\n        {\n            \"id\": 4,\n            \"product_id\": 1,\n            \"product_variant_id\": 1,\n            \"name\": \"Produit de test -  :\",\n            \"quantity\": 1,\n            \"price_tax_exc\": \"10.000000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"P1364848329\",\n            \"weight\": \"0\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"12.000000\",\n            \"total_price_tax_exc\": \"10.000000\",\n            \"unit_price_tax_inc\": \"12.000000\",\n            \"unit_price_tax_exc\": \"10.000000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 4\n        },\n        {\n            \"id\": 5,\n            \"product_id\": 4,\n            \"product_variant_id\": 8,\n            \"name\": \"Produit customizable - Couleur : Blanc- Vendeur : Vendeur De Test\",\n            \"quantity\": 1,\n            \"price_tax_exc\": \"20.830000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"P1167969096-2\",\n            \"weight\": \"0\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"24.999600\",\n            \"total_price_tax_exc\": \"20.833000\",\n            \"unit_price_tax_inc\": \"24.999600\",\n            \"unit_price_tax_exc\": \"20.833000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 5\n        },\n        {\n            \"id\": 6,\n            \"product_id\": 4,\n            \"product_variant_id\": 9,\n            \"name\": \"Produit customizable - Couleur : Bleu- Vendeur : Test Origami\",\n            \"quantity\": 1,\n            \"price_tax_exc\": \"25.000000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"P1167969096-3\",\n            \"weight\": \"0\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"30.000000\",\n            \"total_price_tax_exc\": \"25.000000\",\n            \"unit_price_tax_inc\": \"30.000000\",\n            \"unit_price_tax_exc\": \"25.000000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 6\n        },\n        {\n            \"id\": 7,\n            \"product_id\": 28,\n            \"product_variant_id\": 38,\n            \"name\": \"Service de test - Vendeur : Test Origami\",\n            \"quantity\": 1,\n            \"price_tax_exc\": \"1000.000000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"5f906336cdd0e\",\n            \"weight\": \"0\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"1200.000000\",\n            \"total_price_tax_exc\": \"1000.000000\",\n            \"unit_price_tax_inc\": \"1200.000000\",\n            \"unit_price_tax_exc\": \"1000.000000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 7\n        },\n        {\n            \"id\": 8,\n            \"product_id\": 28,\n            \"product_variant_id\": 38,\n            \"name\": \"Service de test - Vendeur : Test Origami\",\n            \"quantity\": 1,\n            \"price_tax_exc\": \"1000.000000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"5f914fb06e12f\",\n            \"weight\": \"0\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"1200.000000\",\n            \"total_price_tax_exc\": \"1000.000000\",\n            \"unit_price_tax_inc\": \"1200.000000\",\n            \"unit_price_tax_exc\": \"1000.000000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 8\n        },\n        {\n            \"id\": 10,\n            \"product_id\": 3,\n            \"product_variant_id\": 3,\n            \"name\": \"\",\n            \"quantity\": 40,\n            \"price_tax_exc\": \"0.000000\",\n            \"reduction_percent\": 0,\n            \"reduction_amount_tax_inc\": \"0.000000\",\n            \"reduction_amount_tax_exc\": \"0.000000\",\n            \"ean13\": \"\",\n            \"upc\": \"\",\n            \"reference\": \"P1507634275\",\n            \"weight\": \"\",\n            \"tax_rate\": 20,\n            \"total_price_tax_inc\": \"1680.000000\",\n            \"total_price_tax_exc\": \"1400.000000\",\n            \"unit_price_tax_inc\": \"42.000000\",\n            \"unit_price_tax_exc\": \"35.000000\",\n            \"tax_amount\": 0,\n            \"purchase_price_tax_exc\": null,\n            \"order_seller_id\": 10\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 7,\n            \"count\": 7,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"d27e62dd-262d-49c1-b6d9-74d10240c1e5"},{"name":"Get an order line","id":"2de96688-cd5e-42e7-8403-d2960a88530b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/lines/3","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_lines.show</code> permission is needed.</p>\n","urlObject":{"path":["v1","orders","lines","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"56aa82ae-d282-4cff-925d-02d7d8272c41","name":"Get an order line","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/orders/lines/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:14:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"d93674e0720b3e3fddbe77cefa67136d57763786\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"product_id\": 1,\n        \"product_variant_id\": 1,\n        \"name\": \"Produit de test -  :\",\n        \"quantity\": 1,\n        \"price_tax_exc\": \"10.000000\",\n        \"reduction_percent\": 0,\n        \"reduction_amount_tax_inc\": \"0.000000\",\n        \"reduction_amount_tax_exc\": \"0.000000\",\n        \"ean13\": \"\",\n        \"upc\": \"\",\n        \"reference\": \"P1364848329\",\n        \"weight\": \"0\",\n        \"tax_rate\": 20,\n        \"total_price_tax_inc\": \"12.000000\",\n        \"total_price_tax_exc\": \"10.000000\",\n        \"unit_price_tax_inc\": \"12.000000\",\n        \"unit_price_tax_exc\": \"10.000000\",\n        \"tax_amount\": 0,\n        \"purchase_price_tax_exc\": null,\n        \"order_seller_id\": 3\n    }\n}"}],"_postman_id":"2de96688-cd5e-42e7-8403-d2960a88530b"},{"name":"Create an order line","id":"17238d57-6f03-4817-b87a-f132013d2b66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10,\n    \"product_id\": 2,\n    \"product_offer_id\": 2,\n    \"product_variant_id\": 2,\n    \"quantity\": 1,\n    \"price_tax_exc\": \"35\",\n    \"tax_rate\": \"20\"\n}"},"url":"{{domain}}/v1/orders/lines","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_lines.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Id of <code>Product</code> related to this <code>OrderLine</code>.</td>\n<td>Integer. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td>product_variant_id</td>\n<td>Id of <code>ProductVariant</code> related to this <code>OrderLine</code>.</td>\n<td>Integer. Must be a <code>ProductVariant</code> id.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>Id of <code>ProductOffer</code> related to this <code>OrderLine</code>.</td>\n<td>Integer. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of <code>Product</code> related to this <code>OrderLine</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Quantity of <code>ProductOffers</code> related to this <code>OrderLine</code></td>\n<td>Integer. Required. MInimal value: <code>1</code>.</td>\n</tr>\n<tr>\n<td>reduction_percent</td>\n<td>Reduction in percentage applied on this <code>OrderLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>reduction_amount_tax_inc</td>\n<td>Reduction, tax included, applied on this <code>OrderLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>reduction_amount_tax_exc</td>\n<td>Reduction, tax excluded, applied on this <code>OrderLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>ean13</td>\n<td>EAN13 related to the <code>ProductOffer</code> of this <code>OrderLine</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>upc</td>\n<td>UPC related to the <code>ProductOffer</code> of this <code>OrderLine</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td><code>reference_supplier</code> of the<code>ProductOffer</code> of this <code>OrderLine</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>dropshipping_purchase_price_tax_exc</td>\n<td>Purchase price, tax excluded.</td>\n<td>Float with 2 decimals. Maximum length: 6 units and 2 decimals.</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>OrderSeller</code> related to this <code>OrderLine</code>.</td>\n<td>Must be an <code>OrderSeller</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","orders","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"12fb8946-2c06-42ae-9a6b-f762259585a5","name":"Create an order line","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10,\n    \"product_id\": 2,\n    \"product_offer_id\": 2,\n    \"product_variant_id\": 2,\n    \"quantity\": 1,\n    \"price_tax_exc\": \"35\",\n    \"tax_rate\": \"20\"\n}"},"url":"{{domain}}/v1/orders/lines"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:18:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"75684960a16fe863f5b5cdc988fc0459a626f1e0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 11,\n        \"product_id\": 3,\n        \"product_variant_id\": 3,\n        \"name\": \"\",\n        \"quantity\": 1,\n        \"price_tax_exc\": \"35.000000\",\n        \"reduction_percent\": 0,\n        \"reduction_amount_tax_inc\": \"0.000000\",\n        \"reduction_amount_tax_exc\": \"0.000000\",\n        \"ean13\": \"\",\n        \"upc\": \"\",\n        \"reference\": \"P1507634275\",\n        \"weight\": \"\",\n        \"tax_rate\": 20,\n        \"total_price_tax_inc\": \"0.000000\",\n        \"total_price_tax_exc\": \"0.000000\",\n        \"unit_price_tax_inc\": \"0.000000\",\n        \"unit_price_tax_exc\": \"0.000000\",\n        \"tax_amount\": 0,\n        \"purchase_price_tax_exc\": null,\n        \"order_seller_id\": 10\n    }\n}"}],"_postman_id":"17238d57-6f03-4817-b87a-f132013d2b66"},{"name":"Update an order line","id":"b0b68a35-4046-4227-b6d3-0399571e1a98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10,\n    \"product_id\": 2,\n    \"product_offer_id\": 2,\n    \"product_variant_id\": 2,\n    \"quantity\": 1,\n    \"price_tax_exc\": \"35\",\n    \"tax_rate\": \"20\"\n}"},"url":"{{domain}}/v1/orders/lines/11","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_lines.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Id of <code>Product</code> related to this <code>OrderLine</code>.</td>\n<td>Integer. Required. Must be a <code>Product</code> id.</td>\n</tr>\n<tr>\n<td>product_variant_id</td>\n<td>Id of <code>ProductVariant</code> related to this <code>OrderLine</code>.</td>\n<td>Integer. Required. Must be a <code>ProductVariant</code> id.</td>\n</tr>\n<tr>\n<td>product_offer_id</td>\n<td>Id of <code>ProductOffer</code> related to this <code>OrderLine</code>.</td>\n<td>Integer. Required. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of <code>Product</code> related to this <code>OrderLine</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Quantity of <code>ProductOffers</code> related to this <code>OrderLine</code></td>\n<td>Integer. Required. MInimal value: <code>1</code>.</td>\n</tr>\n<tr>\n<td>reduction_percent</td>\n<td>Reduction in percentage applied on this <code>OrderLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>reduction_amount_tax_inc</td>\n<td>Reduction, tax included, applied on this <code>OrderLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>reduction_amount_tax_exc</td>\n<td>Reduction, tax excluded, applied on this <code>OrderLine</code>.</td>\n<td>Numeric. Default value: <code>0.000000</code></td>\n</tr>\n<tr>\n<td>ean13</td>\n<td>EAN13 related to the <code>ProductOffer</code> of this <code>OrderLine</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>upc</td>\n<td>UPC related to the <code>ProductOffer</code> of this <code>OrderLine</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td><code>reference_supplier</code> of the<code>ProductOffer</code> of this <code>OrderLine</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>dropshipping_purchase_price_tax_exc</td>\n<td>Purchase price, tax excluded.</td>\n<td>Float with 2 decimals. Maximum length: 6 units and 2 decimals.</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>Id of <code>OrderSeller</code> related to this <code>OrderLine</code>.</td>\n<td>Must be an <code>OrderSeller</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","orders","lines","11"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2c42ce45-a6e8-4cac-9a6b-bfc481a55aa2","name":"Update an order line","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10,\n    \"product_id\": 2,\n    \"product_offer_id\": 2,\n    \"product_variant_id\": 2,\n    \"quantity\": 1,\n    \"price_tax_exc\": \"35\",\n    \"tax_rate\": \"20\"\n}"},"url":"{{domain}}/v1/orders/lines/11"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:19:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b0b68a35-4046-4227-b6d3-0399571e1a98"},{"name":"Delete an order line","id":"5b2e8f4e-91a2-4745-ad75-3f224b7efdca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10,\n    \"product_id\": 2,\n    \"product_offer_id\": 2,\n    \"product_variant_id\": 2,\n    \"quantity\": 1,\n    \"price_tax_exc\": \"35\",\n    \"tax_rate\": \"20\"\n}"},"url":"{{domain}}/v1/orders/lines/11","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_lines.delete</code> permission is needed.<br />The type of related <code>OrderSeller</code> must have a value different than <code>order</code>.</p>\n","urlObject":{"path":["v1","orders","lines","11"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c22d39cd-ebbb-40b2-b590-a9b43b6499ca","name":"Update an order line","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"order_seller_id\": 10,\n    \"product_id\": 2,\n    \"product_offer_id\": 2,\n    \"product_variant_id\": 2,\n    \"quantity\": 1,\n    \"price_tax_exc\": \"35\",\n    \"tax_rate\": \"20\"\n}"},"url":"{{domain}}/v1/orders/lines/11"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:19:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5b2e8f4e-91a2-4745-ad75-3f224b7efdca"}],"id":"9e5cbf64-e87d-445e-a26e-a1f5ad5a583e","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_offer</td>\n<td><code>ProductOffer</code> of to the <code>Order</code> related to this <code>OrderLine</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product</td>\n<td><code>Product</code> of this <code>OrderLine</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product_variant</td>\n<td><code>ProductVariant</code> of this <code>OrderLine</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>taxes</td>\n<td><code>Taxes</code> related to this <code>OrderLine</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>customizations</td>\n<td><code>OrderLineCustomizations</code> related to this <code>OrderLine</code></td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b8a5d625-ab97-4b4e-8ed6-120b1172b34e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"faf418b5-53fb-41c2-8fe8-d929fc0c72c0","type":"text/javascript","exec":[""]}}],"_postman_id":"9e5cbf64-e87d-445e-a26e-a1f5ad5a583e"},{"name":"Quote Sellers","item":[{"name":"Create a Quote Seller","id":"2fb652d6-52b6-4ab5-bf09-b20510b44ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/quote_sellers","description":"<p>Transform a <code>CartSeller</code> into a <code>QuoteSeller</code>.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>order_sellers.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>Id of the <code>UserGroup</code> with type <code>seller</code> that is selling the products inside this <code>OrderSeller</code>. Can be obtained directly from the <code>CartSeller</code> we are transforming.</td>\n<td>Required. Integer. Must be an existing <code>UserGroup</code>.</td>\n</tr>\n<tr>\n<td><strong>cart_id</strong></td>\n<td>Id of the <code>Cart</code> containing the original <code>CartSeller</code>. Can be obtained directly from the <code>CartSeller</code> we are transforming.</td>\n<td>Required. Integer. Must be an existing <code>Cart</code>.</td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td>Must be \"quote\".</td>\n<td>Required. String. Must be \"quote\".</td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>A string you would like to use to identify an <code>OrderSeller</code>.  <br />We recommand to follow the following rules :  <br />- Several <code>OrderSeller</code> belonging to the same <code>Order</code> should have the same reference.  <br />- Every <code>Order</code> should have a unique reference.  <br />  <br />A simple way to achieve that is to supplly a reference generated from the id of the <code>Order</code>.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>Several <code>OrderSeller</code> in the same <code>Order</code> can have the same <code>Seller</code>. In this case, they need to have a different <code>Warehouse</code>. Otherwise, in most cases, this field can be null.</td>\n<td>Nullable. If present, must be an existing <code>Warehouse</code>.</td>\n</tr>\n<tr>\n<td>shipping.0.extra_info</td>\n<td>Extra information about shipping (useful to store a relay point id for example).</td>\n<td>Nullable.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","quote_sellers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fb652d6-52b6-4ab5-bf09-b20510b44ec8"}],"id":"35360da3-5d66-4d9e-8892-ff14d7112876","_postman_id":"35360da3-5d66-4d9e-8892-ff14d7112876","description":""}],"id":"8681f756-4681-4d55-99e5-caec0805d11c","_postman_id":"8681f756-4681-4d55-99e5-caec0805d11c","description":""},{"name":"Sellers management","item":[{"name":"Seller Bank Accounts","item":[{"name":"Get a seller bank account","id":"7a0eafa1-1883-4ba4-879c-e57148ef9171","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/bank_accounts/1","urlObject":{"path":["v1","sellers","bank_accounts","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a0eafa1-1883-4ba4-879c-e57148ef9171"},{"name":"Create a seller bank account","id":"04377632-04bd-4bb1-a573-60090d90eaba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"iban\": \"FR7630001007941234567890185\",\n     \"bic\": \"AGRIFRPP\",\n     \"bank_name\": \"Banque de France\",\n     \"owner_address\": \"42 rue du test\",\n     \"owner_name\": \"Foo Bar\",\n     \"is_default\": true,\n     \"seller_id\": 4\n }"},"url":"{{domain}}/v1/sellers/bank_accounts","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","sellers","bank_accounts"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04377632-04bd-4bb1-a573-60090d90eaba"},{"name":"Update a seller bank account","id":"2eb46503-c31e-4601-9a14-6baf2902b4bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"iban\": \"FR7630001007941234567890185\",\n     \"bic\": \"AGRIFRPP\",\n     \"bank_name\": \"Banque de France\",\n     \"owner_address\": \"42 rue du test\",\n     \"owner_name\": \"Foo Bar\",\n     \"is_default\": true,\n     \"seller_id\": 4\n }"},"url":"{{domain}}/v1/sellers/bank_accounts/1","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","sellers","bank_accounts","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2eb46503-c31e-4601-9a14-6baf2902b4bd"},{"name":"Delete a seller bank account","id":"818e5e70-948a-4b5e-a09e-feed0dd5563b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/bank_accounts/1","urlObject":{"path":["v1","sellers","bank_accounts","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"818e5e70-948a-4b5e-a09e-feed0dd5563b"}],"id":"2ca67a4f-4633-43dc-8647-edc55d085306","_postman_id":"2ca67a4f-4633-43dc-8647-edc55d085306","description":""},{"name":"Seller Documents","item":[{"name":"Get a seller document","id":"aa548de3-bfc6-44c9-bb0c-b61cec2b020a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/documents/1","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>seller_documents.show</code> permission is needed.</p>\n","urlObject":{"path":["v1","sellers","documents","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa548de3-bfc6-44c9-bb0c-b61cec2b020a"},{"name":"Create a seller document","id":"61ebbcfc-eadd-4347-b3a1-d6e8d383eb45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"document_type_id\": 9,\n     \"name\": \"My document\",\n     \"pages\": [\n         \"data:@file/png;base64,iVBOR\",\n         \"data:@file/png;base64,iVBOR\"\n     ]\n }"},"url":"{{domain}}/v1/sellers/documents","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>seller_documents.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>pages.</strong>*</td>\n<td>A page of this SellerDocument.</td>\n<td>Required. Content of file.</td>\n</tr>\n<tr>\n<td><strong>document_type_id</strong></td>\n<td>Id of <code>DocumentType</code> related to this <code>SellerDocument</code>.</td>\n<td>Required. Must be a <code>DocumentType</code> id.</td>\n</tr>\n<tr>\n<td><strong>user_group_id</strong></td>\n<td><code>UserGroup</code> id of <code>Seller</code> related to this <code>SellerDocument</code>.</td>\n<td>Required. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td>Name of the <code>SellerDocument</code>.</td>\n<td>Required. String.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","sellers","documents"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"61ebbcfc-eadd-4347-b3a1-d6e8d383eb45"},{"name":"Delete a seller document","id":"03769c14-9ab7-4f81-9b9d-21c156805e3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/documents/1","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>seller_documents.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","sellers","documents","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"03769c14-9ab7-4f81-9b9d-21c156805e3e"},{"name":"Get all required document types for a seller","id":"adc55348-7c05-409c-880c-2761e781b00c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/{{id}}/required_documents","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>sellers.show</code> permission is needed.</p>\n<p>Get all <code>DocumentTypes</code> required for the <code>Seller</code>, regarding to his legal type.</p>\n","urlObject":{"path":["v1","sellers","{{id}}","required_documents"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"adc55348-7c05-409c-880c-2761e781b00c"}],"id":"8c47d764-8518-407d-a3af-e903e0ab6d90","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>document_type</td>\n<td><code>DocumentTypes</code> related to this <code>Seller</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_psp_documents</td>\n<td>KYC related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8c47d764-8518-407d-a3af-e903e0ab6d90"},{"name":"Sellers","item":[{"name":"List all sellers","id":"90aca18b-1cce-4fe1-a700-942871c4cf2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reviews</td>\n<td>Display all reviews on seller</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","sellers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1789b963-56ca-4253-ab66-b7ea658fbcb6","name":"List all sellers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 11:02:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"69f1ed20d6baffae204601599b3a878aefe2c9da\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 4,\n            \"address_street1\": \"225 RUE DES TEMPLIERS\",\n            \"address_street2\": \"\",\n            \"address_city\": \"LILLE\",\n            \"address_postcode\": \"59000\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"225 RUE DES TEMPLIERS - 59000 LILLE - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 4,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-14T15:01:04.000000Z\",\n            \"updated_at\": \"2020-09-14T15:01:04.000000Z\",\n            \"name\": \"Vendeur De Test Avec un Nom Beaucoup Trop long\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"vendeurtest@origami-marketplace.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": \"33\",\n            \"address_id\": 1,\n            \"seller_id\": 4,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": \"bar\",\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 6,\n            \"address_street1\": \"31 Rue Bonnet\",\n            \"address_street2\": \"\",\n            \"address_city\": \"VITRY-SUR-SEINE\",\n            \"address_postcode\": \"94400\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"31 Rue Bonnet - 94400 VITRY-SUR-SEINE - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 5,\n            \"rate_total\": 8,\n            \"rate_count\": 2,\n            \"created_at\": \"2020-09-16T13:11:53.000000Z\",\n            \"updated_at\": \"2020-09-16T13:11:53.000000Z\",\n            \"name\": \"Eglantine Beaudouin\",\n            \"firstname\": \"Test\",\n            \"lastname\": \"Origami\",\n            \"email\": \"EglantineBeaudouin@dayrep.com\",\n            \"phone\": \"0183295049\",\n            \"external_uid\": \"1\",\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": \"33\",\n            \"address_id\": 2,\n            \"seller_id\": 6,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": null,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": \"toto\",\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 7,\n            \"address_street1\": \"10 rue du turfu\",\n            \"address_street2\": \"\",\n            \"address_city\": \"Lille\",\n            \"address_postcode\": \"56780\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"10 rue du turfu - 56780 Lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 6,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-24T15:47:38.000000Z\",\n            \"updated_at\": \"2020-09-24T15:47:38.000000Z\",\n            \"name\": \"Boutique Tes\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"boutestp@test.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": \"33\",\n            \"address_id\": 6,\n            \"seller_id\": 7,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 8,\n            \"address_street1\": \"10 rue du turfu\",\n            \"address_street2\": \"\",\n            \"address_city\": \"lille\",\n            \"address_postcode\": \"59787\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"10 rue du turfu - 59787 lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 7,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-24T15:54:19.000000Z\",\n            \"updated_at\": \"2020-09-24T15:54:19.000000Z\",\n            \"name\": \"Bout Test\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"boutest@test.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": 7,\n            \"seller_id\": 8,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": []\n            }\n        },\n        {\n            \"id\": 9,\n            \"address_street1\": \"10 rue du turfu\",\n            \"address_street2\": \"\",\n            \"address_city\": \"Lille\",\n            \"address_postcode\": \"58909\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"10 rue du turfu - 58909 Lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 8,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-25T13:11:17.000000Z\",\n            \"updated_at\": \"2020-09-25T13:11:17.000000Z\",\n            \"name\": \"Test Society\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"testsoc@gmail.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": 8,\n            \"seller_id\": 9,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": []\n            }\n        },\n        {\n            \"id\": 10,\n            \"address_street1\": \"10 rue du test\",\n            \"address_street2\": \"\",\n            \"address_city\": \"lille\",\n            \"address_postcode\": \"58900\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"10 rue du test - 58900 lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 9,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-25T14:06:50.000000Z\",\n            \"updated_at\": \"2020-09-25T14:06:50.000000Z\",\n            \"name\": \"Test test part\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"testttsoc@gmail.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": \"33\",\n            \"address_id\": 9,\n            \"seller_id\": 10,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 11,\n            \"address_street1\": \"10 rue du test\",\n            \"address_street2\": \"\",\n            \"address_city\": \"Lille\",\n            \"address_postcode\": \"58090\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"10 rue du test - 58090 Lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 10,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-25T14:10:52.000000Z\",\n            \"updated_at\": \"2020-09-25T14:10:52.000000Z\",\n            \"name\": \"vendeur tett\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"venddtest@gmail.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": 10,\n            \"seller_id\": 11,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": []\n            }\n        },\n        {\n            \"id\": 12,\n            \"address_street1\": \"rue du test\",\n            \"address_street2\": \"\",\n            \"address_city\": \"lille\",\n            \"address_postcode\": \"57898\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"rue du test - 57898 lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 11,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-25T14:12:42.000000Z\",\n            \"updated_at\": \"2020-09-25T14:12:42.000000Z\",\n            \"name\": \"vendeur ttet society\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"vendeurttsoc@gmail.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": 11,\n            \"seller_id\": 12,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": []\n            }\n        },\n        {\n            \"id\": 13,\n            \"address_street1\": \"59 boulevard gambetta\",\n            \"address_street2\": \"\",\n            \"address_city\": \"Tourcoing\",\n            \"address_postcode\": \"59200\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"59 boulevard gambetta - 59200 Tourcoing - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 12,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-29T08:32:04.000000Z\",\n            \"updated_at\": \"2020-09-29T08:32:04.000000Z\",\n            \"name\": \"Clément test\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"clement@comptoirducode.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": 12,\n            \"seller_id\": 13,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": []\n            }\n        },\n        {\n            \"id\": 16,\n            \"address_street1\": \"80 avenue du test\",\n            \"address_street2\": \"\",\n            \"address_city\": \"Lille\",\n            \"address_postcode\": \"59000\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"80 avenue du test - 59000 Lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 15,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-10-22T13:43:12.000000Z\",\n            \"updated_at\": \"2020-10-22T13:43:12.000000Z\",\n            \"name\": \"Antoine Test\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"antoine@comptoirducode.com\",\n            \"phone\": null,\n            \"external_uid\": null,\n            \"email_validated\": 1,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": 13,\n            \"seller_id\": 16,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": []\n            }\n        },\n        {\n            \"id\": 19,\n            \"address_street1\": \"rue du test\",\n            \"address_street2\": \"\",\n            \"address_city\": \"lille\",\n            \"address_postcode\": \"59000\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"rue du test - 59000 lille - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"seller\",\n            \"user_group_parent_id\": 16,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-10-27T08:58:28.000000Z\",\n            \"updated_at\": \"2020-10-27T08:58:28.000000Z\",\n            \"name\": \"Test Phone Number\",\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": \"testphone@gmail.com\",\n            \"phone\": \"889786754\",\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": \"33\",\n            \"address_id\": 14,\n            \"seller_id\": 19,\n            \"seller_type\": \"marketplace\",\n            \"state\": \"VALIDATED\",\n            \"default_tax_id\": 1,\n            \"fees_profile_id\": null,\n            \"is_active\": 1,\n            \"cheque_order\": null,\n            \"cheque_address\": null,\n            \"schedule\": null,\n            \"invoice_tax_id\": null,\n            \"additional_information\": {\n                \"test\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 1,\n                        \"type\": \"multiple\",\n                        \"private\": 0,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Test select\",\n                                \"description\": \"Test select\",\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": {\n                            \"values\": [\n                                \"foo\",\n                                \"bar\",\n                                \"toto\",\n                                \"bar\"\n                            ]\n                        }\n                    }\n                },\n                \"dropshipping_waiting_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 2,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Compte d'attente Dropshipping\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                },\n                \"marketplace_seller_account_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 3,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte marketplace\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 11,\n            \"count\": 11,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"90aca18b-1cce-4fe1-a700-942871c4cf2f"},{"name":"Get a seller","id":"d26d4280-211d-43c9-b4a2-58ab8133865f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/4","urlObject":{"path":["v1","sellers","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3267243b-9292-48ec-bd22-7153fdc556a8","name":"Get a seller","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/sellers/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 11:03:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"3862ae7a943ff0c44102ba08468cb2b2954a9af5\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"address_street1\": \"225 RUE DES TEMPLIERS\",\n        \"address_street2\": \"\",\n        \"address_city\": \"LILLE\",\n        \"address_postcode\": \"59000\",\n        \"address_country\": \"France\",\n        \"address_longitude\": null,\n        \"address_latitude\": null,\n        \"address_country_iso\": \"FR\",\n        \"address_full\": \"225 RUE DES TEMPLIERS - 59000 LILLE - France\",\n        \"image_url\": null,\n        \"image_cover_url\": null,\n        \"type\": \"seller\",\n        \"user_group_parent_id\": 4,\n        \"rate_total\": 0,\n        \"rate_count\": 0,\n        \"created_at\": \"2020-09-14T15:01:04.000000Z\",\n        \"updated_at\": \"2020-09-14T15:01:04.000000Z\",\n        \"name\": \"Vendeur De Test Avec un Nom Beaucoup Trop long\",\n        \"firstname\": null,\n        \"lastname\": null,\n        \"email\": \"vendeurtest@origami-marketplace.com\",\n        \"phone\": null,\n        \"external_uid\": null,\n        \"email_validated\": 0,\n        \"phone_validated\": 0,\n        \"phone_area_code\": \"33\",\n        \"address_id\": 1,\n        \"seller_id\": 4,\n        \"seller_type\": \"marketplace\",\n        \"state\": \"VALIDATED\",\n        \"default_tax_id\": 1,\n        \"fees_profile_id\": null,\n        \"is_active\": 1,\n        \"cheque_order\": null,\n        \"cheque_address\": null,\n        \"schedule\": null,\n        \"invoice_tax_id\": null,\n        \"is_in_holiday\": false,\n        \"additional_information\": {\n            \"test\": {\n                \"value\": \"bar\",\n                \"config\": {\n                    \"id\": 1,\n                    \"type\": \"multiple\",\n                    \"private\": 0,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Test select\",\n                            \"description\": \"Test select\",\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": {\n                        \"values\": [\n                            \"foo\",\n                            \"bar\",\n                            \"toto\",\n                            \"bar\"\n                        ]\n                    }\n                }\n            },\n            \"dropshipping_waiting_account_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 2,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Compte d'attente Dropshipping\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            },\n            \"marketplace_seller_account_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 3,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de compte marketplace\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"description\": null,\n                    \"tos\": null\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"d26d4280-211d-43c9-b4a2-58ab8133865f"},{"name":"Create a seller","id":"8ee1722e-1ec7-455d-80df-c3334aef528f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Company\",\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"phone\": \"600000000\",\n    \"phone_area_code\": 33,\n    \"default_tax_id\": 1,\n    \"language_id\": 1,\n    \"address\": {\n        \"street1\": \"1 Baker Street\",\n        \"postcode\": \"12345\",\n        \"city\": \"London\",\n        \"region\": \"\",\n        \"country\": \"France\",\n        \"country_iso\": \"FR\",\n        \"latitude\": \"51.52070817212173\",\n        \"longitude\": \"-0.15681258805749032\"\n    },\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"city\": \"city\",\n    \"state\": \"VALIDATED\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    },\n    \"legal_information\": {\n        \"legal_type\": \"COMPANY\",\n        \"legal_form\": \"SARL\",\n        \"registration_city\": \"city\",\n        \"manager_first_name\": \"f\",\n        \"manager_last_name\": \"l\",\n        \"manager_country\": \"country\",\n        \"manager_nationality\": \"Belgium\",\n        \"manager_birthday\": \"2000-01-01\",\n        \"company_name\": \"mon nom\",\n        \"address\": {\n            \"street1\": \"5 rue du Bon Dieu\",\n            \"postcode\": \"55555\",\n            \"city\": \"Cinq\",\n            \"region\": \"\",\n            \"country\": \"Belgique\",\n            \"country_iso\": \"BE\",\n            \"latitude\": \"51.52070817212173\",\n            \"longitude\": \"-0.15681258805749032\"\n        },\n        \"company_contact_email\": \"mycompany@email.com\",\n        \"siret\": \"12345\",\n        \"tva_number\": \"12345\",\n        \"default_tax_id\": 3\n    }\n}"},"url":"{{domain}}/v1/sellers","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>sellers.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Rules</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>user_group_parent_id</code></td>\n<td>Must be an integer. Must not be present if <code>customer_id</code> is provided. Must reference an existing <strong>UserGroupParent</strong>.</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>Must be an integer. Must reference an existing <strong>Customer</strong>.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>Must be a string. Required without <code>firstname</code> or <code>lastname</code>. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>firstname</code></td>\n<td>Must be a string. Required if <code>name</code> is not provided. Maximum length 125 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>lastname</code></td>\n<td>Must be a string. Required if <code>name</code> is not provided. Maximum length 125 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>Must be a string. Must be a valid email address. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>Must be a string. Maximum length 30 characters.</td>\n</tr>\n<tr>\n<td><code>external_uid</code></td>\n<td>Must be a string. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>phone_area_code</code></td>\n<td>Must be a string. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>language_id</code></td>\n<td>Must be an integer. Must reference an existing <strong>Language</strong>.</td>\n</tr>\n<tr>\n<td><code>language_iso</code></td>\n<td>Must be a string. Must reference an existing <strong>Language</strong>. Maximum length 5 characters. Must be absent if <code>language_id</code> is provided.</td>\n</tr>\n<tr>\n<td><code>translations</code></td>\n<td>Must be an array.</td>\n</tr>\n<tr>\n<td><code>translations.\\\\*.language_id</code></td>\n<td>Must be an integer. Required. Must reference an existing <strong>Language</strong>.</td>\n</tr>\n<tr>\n<td><code>translations.\\\\*.description</code></td>\n<td>Must be a string. Nullable.</td>\n</tr>\n<tr>\n<td><code>translations.\\\\*.tos</code></td>\n<td>Must be a string. Nullable.</td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td>Must be an array.</td>\n</tr>\n<tr>\n<td><code>address.address_line1</code></td>\n<td>Must be a string. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>address.address_line2</code></td>\n<td>Must be a string. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>address.postcode</code></td>\n<td>Must be a string. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>address.city</code></td>\n<td>Must be a string. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>address.country</code></td>\n<td>Must be a string. Maximum length 50 characters. Must be absent if <code>address.country_iso</code> is provided.</td>\n</tr>\n<tr>\n<td><code>address.country_iso</code></td>\n<td>Must be a string. Maximum length 5 characters. Must reference an existing <strong>Country</strong>. Required without user_group_parent_id or customer_id. Must be absent if <code>address.country</code> is provided.</td>\n</tr>\n<tr>\n<td><code>address.longitude</code></td>\n<td>Must be a string. Nullable. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>address.latitude</code></td>\n<td>Must be a string. Nullable. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>address.region</code></td>\n<td>Must be a string. Nullable. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>legal_information</code></td>\n<td>Must be an array.</td>\n</tr>\n<tr>\n<td><code>legal_information.legal_type</code></td>\n<td>Must be a string. Must be one of: INDIVIDUAL, SOLE_TRADER, COMPANY.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_first_name</code></td>\n<td>Must be a string. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_last_name</code></td>\n<td>Must be a string. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_birthday</code></td>\n<td>Must follow the format YYYY-MM-DD.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_country</code></td>\n<td>Must be a string. Maximum length 255 characters. Must be absent if <code>manager_country_iso</code> is provided.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_nationality</code></td>\n<td>Must be a string. Maximum length 255 characters. Must be absent if <code>manager_nationality_iso</code> is provided.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_country_iso</code></td>\n<td>Must be a string. Maximum length 5 characters. Must reference an existing <strong>Country</strong>. Must be present if <code>manager_country</code> is not provided.</td>\n</tr>\n<tr>\n<td><code>legal_information.manager_nationality_iso</code></td>\n<td>Must be a string. Maximum length 5 characters. Must reference an existing <strong>Country</strong>. Must be present if <code>manager_nationality</code> is not provided.</td>\n</tr>\n<tr>\n<td><code>legal_information.company_name</code></td>\n<td>Must be a string. Maximum length 255 characters. Required if legal type is not INDIVIDUAL. Nullable if legal type is INDIVIDUAL.</td>\n</tr>\n<tr>\n<td><code>legal_information.company_contact_email</code></td>\n<td>Must be a string. Must be a valid email address. Maximum length 255 characters. Required if legal type is not INDIVIDUAL. Nullable if legal type is INDIVIDUAL.</td>\n</tr>\n<tr>\n<td><code>legal_information.siret</code></td>\n<td>Must be a string. Maximum length 255 characters. Required if legal type is not INDIVIDUAL. Nullable if legal type is INDIVIDUAL.</td>\n</tr>\n<tr>\n<td><code>legal_information.tva_number</code></td>\n<td>Must be a string. Maximum length 255 characters. Nullable if legal type is INDIVIDUAL.</td>\n</tr>\n<tr>\n<td><code>legal_information.registration_city</code></td>\n<td>Must be a string. Maximum length 255 characters. Nullable if legal type is INDIVIDUAL.</td>\n</tr>\n<tr>\n<td><code>legal_information.legal_form</code></td>\n<td>Must be a string. Maximum length 255 characters. Nullable if legal type is INDIVIDUAL.</td>\n</tr>\n<tr>\n<td><code>legal_information.address</code></td>\n<td>Must be an array.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.address_line1</code></td>\n<td>Must be a string. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.address_line2</code></td>\n<td>Must be a string. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.postcode</code></td>\n<td>Must be a string. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.city</code></td>\n<td>Must be a string. Maximum length 255 characters. Required without user_group_parent_id or customer_id.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.country</code></td>\n<td>Must be a string. Maximum length 50 characters. Must be absent if <code>legal_information.address.country_iso</code> is provided.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.country_iso</code></td>\n<td>Must be a string. Maximum length 5 characters. Must reference an existing <strong>Country</strong>. Required without user_group_parent_id or customer_id. Must be absent if <code>legal_information.address.country</code> is provided.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.longitude</code></td>\n<td>Must be a string. Nullable. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.latitude</code></td>\n<td>Must be a string. Nullable. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>legal_information.address.region</code></td>\n<td>Must be a string. Nullable. Maximum length 255 characters.</td>\n</tr>\n<tr>\n<td><code>seller_type</code></td>\n<td>Must be a string. Must be one of: marketplace, dropshipping.</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>Must be a string. Must be one of: REGISTERED, VALIDATED.</td>\n</tr>\n<tr>\n<td><code>default_tax_id</code></td>\n<td>Must be an integer. Must reference an existing <strong>Tax</strong>.</td>\n</tr>\n<tr>\n<td><code>is_active</code></td>\n<td>Must be a boolean.</td>\n</tr>\n<tr>\n<td><code>invoice_tax_id</code></td>\n<td>Must be an integer. Must reference an existing <strong>Tax</strong>.</td>\n</tr>\n<tr>\n<td><code>holiday_departure_date</code></td>\n<td>Must follow the format YYYY-MM-DD.</td>\n</tr>\n<tr>\n<td><code>holiday_return_date</code></td>\n<td>Must follow the format YYYY-MM-DD.</td>\n</tr>\n<tr>\n<td><code>seller_fees_profile_id</code></td>\n<td>Must be an integer. Must reference an existing <strong>FeesProfile</strong> of type SELLER.</td>\n</tr>\n<tr>\n<td><code>customer_fees_profile_id</code></td>\n<td>Must be an integer. Must reference an existing <strong>FeesProfile</strong> of type CUSTOMER.</td>\n</tr>\n<tr>\n<td><code>additional_information</code></td>\n<td>Must be an array.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"includes\">Includes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Keys</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shipping_offers</td>\n</tr>\n<tr>\n<td>product_offers</td>\n</tr>\n<tr>\n<td>tickets</td>\n</tr>\n<tr>\n<td>documents</td>\n</tr>\n<tr>\n<td>default_tax</td>\n</tr>\n<tr>\n<td>payment_reports</td>\n</tr>\n<tr>\n<td>bank_accounts</td>\n</tr>\n<tr>\n<td>invoices</td>\n</tr>\n<tr>\n<td>subscriptions</td>\n</tr>\n<tr>\n<td>legal_information</td>\n</tr>\n<tr>\n<td>psp_wallets</td>\n</tr>\n<tr>\n<td>required_documents</td>\n</tr>\n<tr>\n<td>visibilities</td>\n</tr>\n<tr>\n<td>users</td>\n</tr>\n<tr>\n<td>user_group_users</td>\n</tr>\n<tr>\n<td>reviews</td>\n</tr>\n<tr>\n<td>psp_users</td>\n</tr>\n<tr>\n<td>notifications_sent</td>\n</tr>\n<tr>\n<td>invoice_tax</td>\n</tr>\n<tr>\n<td>psp_ubos</td>\n</tr>\n<tr>\n<td>subscription_lines</td>\n</tr>\n<tr>\n<td>warehouses</td>\n</tr>\n<tr>\n<td>translations</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","sellers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"63ea4bc2-2fb5-4997-b4d7-77238088dba1","name":"Create a seller","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    }\n}"},"url":"{{domain}}/v1/sellers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 11:04:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"324fb148e8d80527a0e2654b277b7cbc87a915f0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 22,\n        \"address_street1\": \"\",\n        \"address_street2\": \"\",\n        \"address_city\": \"\",\n        \"address_postcode\": \"\",\n        \"address_country\": \"\",\n        \"address_longitude\": \"\",\n        \"address_latitude\": \"\",\n        \"address_country_iso\": \"\",\n        \"address_full\": \" -   - \",\n        \"image_url\": null,\n        \"image_cover_url\": null,\n        \"type\": \"seller\",\n        \"user_group_parent_id\": 19,\n        \"rate_total\": 0,\n        \"rate_count\": 0,\n        \"created_at\": \"2020-11-16T11:04:33.000000Z\",\n        \"updated_at\": \"2020-11-16T11:04:33.000000Z\",\n        \"name\": \"Gilbert Austin\",\n        \"firstname\": \"Gilbert\",\n        \"lastname\": \"Austin\",\n        \"email\": \"GilbertAustin@teleworm.us\",\n        \"phone\": null,\n        \"external_uid\": null,\n        \"email_validated\": 0,\n        \"phone_validated\": 0,\n        \"phone_area_code\": null,\n        \"address_id\": null,\n        \"seller_id\": 22,\n        \"seller_type\": \"marketplace\",\n        \"state\": \"REGISTERED\",\n        \"default_tax_id\": null,\n        \"fees_profile_id\": null,\n        \"is_active\": 1,\n        \"cheque_order\": null,\n        \"cheque_address\": null,\n        \"schedule\": null,\n        \"invoice_tax_id\": null,\n        \"additional_information\": {\n            \"test\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 1,\n                    \"type\": \"multiple\",\n                    \"private\": 0,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Test select\",\n                            \"description\": \"Test select\",\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": {\n                        \"values\": [\n                            \"foo\",\n                            \"bar\",\n                            \"toto\",\n                            \"bar\"\n                        ]\n                    }\n                }\n            },\n            \"dropshipping_waiting_account_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 2,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Compte d'attente Dropshipping\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            },\n            \"marketplace_seller_account_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 3,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de compte marketplace\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"8ee1722e-1ec7-455d-80df-c3334aef528f"},{"name":"Update a seller","id":"816eb15b-f4b0-4c1f-a093-5f8b82309565","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"legal_information\": {\n        \"manager_first_name\": \"Gilbert\",\n        \"manager_lastname\": \"Austin\",\n        \"manager_birthday\": \"1990-01-01\",\n        \"manager_nationality\": \"France\",\n        \"manager_country\": \"France\",\n        \"additional_information\": {\n            \"customer_accounting_number\": \"0000\"\n        }\n    }\n}"},"url":"{{domain}}/v1/sellers/22","urlObject":{"path":["v1","sellers","22"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"f1d83186-d054-478d-9d8c-a4c9f929ca2a","name":"Update a seller","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/sellers/22"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:24:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"816eb15b-f4b0-4c1f-a093-5f8b82309565"}],"id":"ccde94a4-29bf-4c77-a8a4-8b8bfdb2e880","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shipping_offers</td>\n<td><code>ShippingOffers</code> related to this <code>Seller</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product_offers</td>\n<td><code>ProductOffers</code> related to this <code>Seller</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tickets</td>\n<td><code>Tickets</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>documents</td>\n<td><code>Documents</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>default_tax</td>\n<td>Default <code>Tax</code> of this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_reports</td>\n<td><code>PaymentReports</code> of this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>bank_accounts</td>\n<td><code>BankAccounts</code> related to this <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>invoices</td>\n<td><code>Invoices</code> of this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>subscriptions</td>\n<td><code>Subscriptions</code> of this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>legal_information</td>\n<td><code>LegalInformation</code> of this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>psp_wallets</td>\n<td><code>Wallets</code> related to this <code>Seller.</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>required_documents</td>\n<td><code>DocumentTypes</code> required for this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>visibilities</td>\n<td><code>Visibilities</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>users</td>\n<td><code>Users</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>user_group_users</td>\n<td><code>UserGoupUsers</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>reviews</td>\n<td><code>Reviews</code> which recipient is this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>psp_users</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>notifications_sent</td>\n<td><code>Notifications</code> sent to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>invoice_tax</td>\n<td>Value of invoice tax rate related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>psp_ubos</td>\n<td><code>PaymentPspUserGroupUbos</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>subscription_lines</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>warehouses</td>\n<td><code>Warehouses</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>translations</td>\n<td><code>Translations</code> related to this <code>Seller</code>.</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ccde94a4-29bf-4c77-a8a4-8b8bfdb2e880"},{"name":"Seller Images","item":[{"name":"Create seller image","id":"ca1c9003-0f7e-49d4-a744-2ab20f7e0573","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"seller_id","value":"4","type":"text"},{"key":"file_base64","type":"text","value":""}]},"url":"{{domain}}/v1/sellers/images","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.</p>\n<p>You should send either :</p>\n<ul>\n<li>file</li>\n<li>file_base64</li>\n<li>url</li>\n</ul>\n<p>params. If the current user_group is a seller, <code>seller_id</code> is not required.</p>\n<p>If the seller has already a related image, this request will automatically delete the old image to replace it by the new one.</p>\n<h2 id=\"body-parameters\">Body parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>seller_id to which we send the image</td>\n<td>Required if <code>operator</code> <code>user_group</code>.  <br />If seller is authenticated, <code>seller_id</code> will be force by the API.</td>\n</tr>\n<tr>\n<td><strong>file</strong></td>\n<td>multipart/file type. A binary image sent to the seller.</td>\n<td>Required if <code>file_64</code>, and <code>url</code> are not set.</td>\n</tr>\n<tr>\n<td><strong>file_base64</strong></td>\n<td>base64 string that represents an image.</td>\n<td>Required if <code>file</code>, and <code>url</code> are not set.</td>\n</tr>\n<tr>\n<td><strong>url</strong></td>\n<td>URL of an image</td>\n<td>Required if <code>file</code>, and <code>file_base64</code> are not set.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","sellers","images"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca1c9003-0f7e-49d4-a744-2ab20f7e0573"}],"id":"3945b9c1-31ab-42df-b006-82d96b062f40","_postman_id":"3945b9c1-31ab-42df-b006-82d96b062f40","description":""},{"name":"Seller Wallets","item":[{"name":"Payout from seller wallet","id":"cd7e9561-7dc3-4c8b-bba0-001c1956e8b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/sellers/wallets/payout","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.</p>\n<h2 id=\"body-parameters\">Body parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Description</th>\n<th>Rules</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>amount</strong></td>\n<td>The amount you want to payout from seller wallet. Ex : 17.53 for 17,53€</td>\n<td>Required. Numeric. Minimum: 0.01</td>\n</tr>\n<tr>\n<td><strong>payment_psp_user_wallet_id</strong></td>\n<td>Id of the seller wallet from which you want to payout.</td>\n<td>Required. Integer. Must be an existing wallet id.</td>\n</tr>\n<tr>\n<td><strong>bank_account_id</strong></td>\n<td>Id of the bank account to which you want to transfer the funds.</td>\n<td>Required. Integer. Must be an existing bank account id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","sellers","wallets","payout"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd7e9561-7dc3-4c8b-bba0-001c1956e8b3"}],"id":"306f3985-c56d-4be6-a9d7-875d9ddcfe6b","_postman_id":"306f3985-c56d-4be6-a9d7-875d9ddcfe6b","description":""}],"id":"a5daca41-d685-442c-9358-95ca8766e58d","_postman_id":"a5daca41-d685-442c-9358-95ca8766e58d","description":""},{"name":"Customers management","item":[{"name":"Customers","item":[{"name":"Get all customers","id":"231e5730-2a53-4d08-bbab-4ab81c54c3a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers","urlObject":{"path":["v1","customers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"65f9e020-c4f4-448f-89f0-e76b95573e20","name":"Get all customers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 26 Oct 2020 15:50:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"94681593d07402c03070e9ae0584c1bc34459481\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 5,\n            \"address_street1\": \"31 Rue Bonnet\",\n            \"address_street2\": \"\",\n            \"address_city\": \"VITRY-SUR-SEINE\",\n            \"address_postcode\": \"94400\",\n            \"address_country\": \"France\",\n            \"address_longitude\": null,\n            \"address_latitude\": null,\n            \"address_country_iso\": \"FR\",\n            \"address_full\": \"31 Rue Bonnet - 94400 VITRY-SUR-SEINE - France\",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"customer\",\n            \"user_group_parent_id\": 5,\n            \"rate_total\": 0,\n            \"rate_count\": 0,\n            \"created_at\": \"2020-09-15T08:06:21.000000Z\",\n            \"updated_at\": \"2020-09-15T08:06:21.000000Z\",\n            \"name\": \"Eglantine Beaudouin\",\n            \"firstname\": \"Test\",\n            \"lastname\": \"Origami\",\n            \"email\": \"EglantineBeaudouin@dayrep.com\",\n            \"phone\": \"0183295049\",\n            \"external_uid\": \"1\",\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": \"33\",\n            \"address_id\": 2,\n            \"additional_information\": {\n                \"customer_accounting_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 4,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte client comptabilite\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 14,\n            \"address_street1\": \"\",\n            \"address_street2\": \"\",\n            \"address_city\": \"\",\n            \"address_postcode\": \"\",\n            \"address_country\": \"\",\n            \"address_longitude\": \"\",\n            \"address_latitude\": \"\",\n            \"address_country_iso\": \"\",\n            \"address_full\": \" -   - \",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"customer\",\n            \"user_group_parent_id\": 13,\n            \"rate_total\": 7.5,\n            \"rate_count\": 2,\n            \"created_at\": \"2020-10-02T12:46:26.000000Z\",\n            \"updated_at\": \"2020-10-02T12:46:26.000000Z\",\n            \"name\": \"Henry Poirier\",\n            \"firstname\": \"Julien\",\n            \"lastname\": \"Julien\",\n            \"email\": \"HenryPoirier@jourrapide.com\",\n            \"phone\": \"0489720359\",\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": null,\n            \"additional_information\": {\n                \"customer_accounting_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 4,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte client comptabilite\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 15,\n            \"address_street1\": \"\",\n            \"address_street2\": \"\",\n            \"address_city\": \"\",\n            \"address_postcode\": \"\",\n            \"address_country\": \"\",\n            \"address_longitude\": \"\",\n            \"address_latitude\": \"\",\n            \"address_country_iso\": \"\",\n            \"address_full\": \" -   - \",\n            \"image_url\": null,\n            \"image_cover_url\": null,\n            \"type\": \"customer\",\n            \"user_group_parent_id\": 14,\n            \"rate_total\": 7.71,\n            \"rate_count\": 2,\n            \"created_at\": \"2020-10-22T09:22:41.000000Z\",\n            \"updated_at\": \"2020-10-22T09:22:41.000000Z\",\n            \"name\": \"Aurore Beaudry\",\n            \"firstname\": \"Julien\",\n            \"lastname\": \"Julien\",\n            \"email\": \"AuroreBeaudry@teleworm.us\",\n            \"phone\": \"0165117873\",\n            \"external_uid\": null,\n            \"email_validated\": 0,\n            \"phone_validated\": 0,\n            \"phone_area_code\": null,\n            \"address_id\": null,\n            \"additional_information\": {\n                \"customer_accounting_number\": {\n                    \"value\": null,\n                    \"config\": {\n                        \"id\": 4,\n                        \"type\": \"input\",\n                        \"private\": 1,\n                        \"translations\": [\n                            {\n                                \"language_id\": 1,\n                                \"name\": \"Numero de compte client comptabilite\",\n                                \"description\": null,\n                                \"locale\": \"fr\"\n                            }\n                        ],\n                        \"group\": null,\n                        \"params\": null\n                    }\n                }\n            },\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"tos\": null\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 3,\n            \"count\": 3,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"231e5730-2a53-4d08-bbab-4ab81c54c3a3"},{"name":"Get a customer","id":"b587dc69-9a50-4894-bfdd-b3e4044c987e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers/5","urlObject":{"path":["v1","customers","5"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"08377300-1ab5-4410-9a8c-31b57708a838","name":"Get a customer","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers/5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 09:03:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"fe906b5c4e2fd89b8b744e2b795f5f4aa21f9c34\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 5,\n        \"address_street1\": \"31 Rue Bonnet\",\n        \"address_street2\": \"\",\n        \"address_city\": \"VITRY-SUR-SEINE\",\n        \"address_postcode\": \"94400\",\n        \"address_country\": \"France\",\n        \"address_longitude\": null,\n        \"address_latitude\": null,\n        \"address_country_iso\": \"FR\",\n        \"address_full\": \"31 Rue Bonnet - 94400 VITRY-SUR-SEINE - France\",\n        \"image_url\": null,\n        \"image_cover_url\": null,\n        \"type\": \"customer\",\n        \"user_group_parent_id\": 5,\n        \"rate_total\": 0,\n        \"rate_count\": 0,\n        \"created_at\": \"2020-09-15T08:06:21.000000Z\",\n        \"updated_at\": \"2020-09-15T08:06:21.000000Z\",\n        \"name\": \"Eglantine Beaudouin\",\n        \"firstname\": \"Test\",\n        \"lastname\": \"Origami\",\n        \"email\": \"EglantineBeaudouin@dayrep.com\",\n        \"phone\": \"0183295049\",\n        \"external_uid\": \"1\",\n        \"email_validated\": 0,\n        \"phone_validated\": 0,\n        \"phone_area_code\": \"33\",\n        \"address_id\": 2,\n        \"additional_information\": {\n            \"customer_accounting_number\": {\n                \"value\": null,\n                \"config\": {\n                    \"id\": 4,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de compte client comptabilite\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"description\": null,\n                    \"tos\": null\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"b587dc69-9a50-4894-bfdd-b3e4044c987e"},{"name":"Create a customer","id":"f667529d-1d67-40d4-8e84-f6b38d2768f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    },\n    \"user\": {\n        \"firstname\": \"Gilbert\",\n        \"lastname\": \"Augustin\",\n        \"email\": \"GilbertAustin@teleworm.us\",\n        \"password\": \"mypassword\"\n    },\n    \"address\": {\n        \"street1\": \"5 Rue du test\",\n        \"street2\": \"\",\n        \"postcode\": \"00000\",\n        \"city\": \"City\",\n        \"region\": \"\",\n        \"country\": \"France\"\n    },\n    \"groups\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/customers","description":"<p>CREATE an customers</p>\n<p>Note that address attribute is only used for PSP</p>\n<p>If the birthday is not defined, a default value has been assigned to it : 1989-09-03</p>\n","urlObject":{"path":["v1","customers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"406df55b-a9f7-4d72-87a8-fad20540142f","name":"Create a customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    },\n    \"groups\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ],\n    \"address\": {\n        \"street1\": \"5 Rue du test\",\n        \"street2\": \"\",\n        \"postcode\": \"00000\",\n        \"city\": \"City\",\n        \"region\": \"\",\n        \"country\": \"France\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/customers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 09:56:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"9b2db9ac277a225b008b955fc5439d45bae9e104\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 21,\n        \"address_street1\": \"\",\n        \"address_street2\": \"\",\n        \"address_city\": \"\",\n        \"address_postcode\": \"\",\n        \"address_country\": \"\",\n        \"address_longitude\": \"\",\n        \"address_latitude\": \"\",\n        \"address_country_iso\": \"\",\n        \"address_full\": \" -   - \",\n        \"image_url\": null,\n        \"image_cover_url\": null,\n        \"type\": \"customer\",\n        \"user_group_parent_id\": 18,\n        \"rate_total\": 0,\n        \"rate_count\": 0,\n        \"created_at\": \"2020-10-27T09:56:20.000000Z\",\n        \"updated_at\": \"2020-10-27T09:56:20.000000Z\",\n        \"name\": \"Gilbert Austin\",\n        \"firstname\": \"Gilbert\",\n        \"lastname\": \"Austin\",\n        \"email\": \"GilbertAustin@teleworm.us\",\n        \"phone\": null,\n        \"external_uid\": null,\n        \"email_validated\": 0,\n        \"phone_validated\": 0,\n        \"phone_area_code\": null,\n        \"address_id\": null,\n        \"additional_information\": {\n            \"customer_accounting_number\": {\n                \"value\": \"0000\",\n                \"config\": {\n                    \"id\": 4,\n                    \"type\": \"input\",\n                    \"private\": 1,\n                    \"translations\": [\n                        {\n                            \"language_id\": 1,\n                            \"name\": \"Numero de compte client comptabilite\",\n                            \"description\": null,\n                            \"locale\": \"fr\"\n                        }\n                    ],\n                    \"group\": null,\n                    \"params\": null\n                }\n            }\n        },\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"f667529d-1d67-40d4-8e84-f6b38d2768f6"},{"name":"Update a customer","id":"2206e893-dba7-4830-aeca-275b69e17910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    },\n    \"groups\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ]\n}"},"url":"{{domain}}/v1/customers/21","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>customers.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th>Description</th>\n<th>Rules</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customers","21"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"271c6ea1-cd02-4793-9ea3-7e7ac3c0f89f","name":"Update a customer","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"Gilbert\",\n    \"lastname\": \"Austin\",\n    \"email\": \"GilbertAustin@teleworm.us\",\n    \"birthday\": \"1990-01-01\",\n    \"nationality\": \"France\",\n    \"country\": \"France\",\n    \"additional_information\": {\n        \"customer_accounting_number\": \"0000\"\n    },\n    \"groups\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/customers/21"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2206e893-dba7-4830-aeca-275b69e17910"}],"id":"81cc4f57-3a06-41de-88ff-d4718cdc4128","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bank_accounts</td>\n<td><code>BankAccount</code> related to this <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>customer_groups</td>\n<td><code>CustomerGroup</code> related to this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>documents</td>\n<td><code>UserGroupDocument</code> related to this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>legal_information</td>\n<td><code>LegalInformation</code> of this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_sellers</td>\n<td><code>OrderSeller</code> related to this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_reports</td>\n<td><code>PaymentReport</code> of this <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>psp_wallets</td>\n<td><code>Wallet</code> related to this <code>UserGroup</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>subscriptions</td>\n<td><code>Subscription</code> related to this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tickets</td>\n<td><code>Ticket</code> related to this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>user_group_users</td>\n<td><code>UserGroupUser</code> of this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>users</td>\n<td><code>User</code> of this <code>Customer</code>.</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_addresses</td>\n<td><code>OrderAddress</code> related to this <code>Customer</code>. Should list all shipping / billing addresses that the customer used on his orders.</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"81cc4f57-3a06-41de-88ff-d4718cdc4128"},{"name":"Customer Groups","item":[{"name":"Get all customer groups","id":"47a97585-b7dd-4ac8-929a-7aeb2db9a385","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers/groups","urlObject":{"path":["v1","customers","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6e992672-62ef-4646-b51a-bb8f6d2f4ec0","name":"Get all customer groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:13:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"281045fccd1583a1743878efe8dabbb2819e04c0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"external_uid\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Clubs\",\n                        \"language_id\": 1\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"external_uid\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 2,\n                        \"name\": \"Licenciés\",\n                        \"language_id\": 1\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"47a97585-b7dd-4ac8-929a-7aeb2db9a385"},{"name":"Get a customer group","id":"c63de788-d287-4197-949f-4715353d2c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers/groups/1","urlObject":{"path":["v1","customers","groups","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"781aec96-ceb5-4cdd-82e5-5edb28d4be0b","name":"Get all customer groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/customers/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:13:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"281045fccd1583a1743878efe8dabbb2819e04c0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"external_uid\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Clubs\",\n                        \"language_id\": 1\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"external_uid\": null,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 2,\n                        \"name\": \"Licenciés\",\n                        \"language_id\": 1\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"c63de788-d287-4197-949f-4715353d2c67"},{"name":"Create a customer group","id":"21624ab0-974f-4792-b9fe-4bf86cf13345","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_uid\": \"1\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Invité\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Guest\"\n        }\n    ]    \n}"},"url":"{{domain}}/v1/customers/groups","urlObject":{"path":["v1","customers","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e44a63f9-d58a-4351-83ac-82818a834009","name":"Create a customer group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_uid\": \"1\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Invité\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Guest\"\n        }\n    ]    \n}"},"url":"{{domain}}/v1/customers/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:20:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"0bc3a5bd8312015f39e4dbcdeaefc9101a8ef920\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"external_uid\": \"1\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Invité\",\n                    \"language_id\": 1\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Guest\",\n                    \"language_id\": 2\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"21624ab0-974f-4792-b9fe-4bf86cf13345"},{"name":"Update a customer group","id":"692f3f76-fc45-4446-b81c-a87c211e0c68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_uid\": \"1\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Invité\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Guest\"\n        }\n    ]    \n}"},"url":"{{domain}}/v1/customers/groups/3","urlObject":{"path":["v1","customers","groups","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"86975af5-5c48-417a-b063-2730838f1e82","name":"Update a customer group","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_uid\": \"1\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Invité\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Guest\"\n        }\n    ]    \n}"},"url":"{{domain}}/v1/customers/groups/3"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:24:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"692f3f76-fc45-4446-b81c-a87c211e0c68"},{"name":"Delete a customer group","id":"dc4e85df-8cfe-4780-97d7-cde571911ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/customers/groups/3","urlObject":{"path":["v1","customers","groups","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7757fae6-c321-4adf-b9b0-e8c2c0fbf732","name":"Delete a customer group","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/customers/groups/3"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:25:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dc4e85df-8cfe-4780-97d7-cde571911ad5"}],"id":"175fe09e-6276-4103-be92-59ebac6e4cd4","_postman_id":"175fe09e-6276-4103-be92-59ebac6e4cd4","description":""},{"name":"Reviews","item":[{"name":"Reviews","item":[{"name":"List all reviews","id":"bcbe580e-dc92-41c0-8980-666199c97bb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews","urlObject":{"path":["v1","reviews"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"973e81a8-e4be-4928-8f51-2e7aab1570d7","name":"List all reviews","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:24:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"6ddd3a4e0dadad195bc7e02524fcd8abdc002d7d\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"rating\": \"4.00\",\n            \"text\": \"Test\",\n            \"order_seller_id\": 7,\n            \"author_id\": 14,\n            \"author_type\": \"customer\",\n            \"recipient_id\": 6,\n            \"recipient_type\": \"seller\",\n            \"created_at\": \"2020-10-22T07:33:22.000000Z\",\n            \"updated_at\": \"2020-10-22T07:33:22.000000Z\"\n        },\n        {\n            \"id\": 2,\n            \"rating\": \"3.50\",\n            \"text\": \"Test\",\n            \"order_seller_id\": 7,\n            \"author_id\": 14,\n            \"author_type\": \"customer\",\n            \"recipient_id\": 28,\n            \"recipient_type\": \"product\",\n            \"created_at\": \"2020-10-22T07:33:22.000000Z\",\n            \"updated_at\": \"2020-10-22T07:33:22.000000Z\"\n        },\n        {\n            \"id\": 3,\n            \"rating\": \"4.00\",\n            \"text\": \"C'etait top\",\n            \"order_seller_id\": 8,\n            \"author_id\": 15,\n            \"author_type\": \"customer\",\n            \"recipient_id\": 6,\n            \"recipient_type\": \"seller\",\n            \"created_at\": \"2020-10-22T09:27:42.000000Z\",\n            \"updated_at\": \"2020-10-22T09:27:42.000000Z\"\n        },\n        {\n            \"id\": 4,\n            \"rating\": \"3.71\",\n            \"text\": \"Expression de l'avis\",\n            \"order_seller_id\": 8,\n            \"author_id\": 15,\n            \"author_type\": \"customer\",\n            \"recipient_id\": 28,\n            \"recipient_type\": \"product\",\n            \"created_at\": \"2020-10-22T09:27:43.000000Z\",\n            \"updated_at\": \"2020-10-22T09:27:43.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 4,\n            \"count\": 4,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"bcbe580e-dc92-41c0-8980-666199c97bb0"},{"name":"Get a review","id":"f315bd5b-1cf3-4063-8bdc-63d1a364710f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews/1","urlObject":{"path":["v1","reviews","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9e050e29-d804-47a7-8e90-ad55e514a2a7","name":"Get a review","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:25:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"607e68eff7057d1724a25ca281084ff5de7a6464\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"rating\": \"4.00\",\n        \"text\": \"Test\",\n        \"order_seller_id\": 7,\n        \"author_id\": 14,\n        \"author_type\": \"customer\",\n        \"recipient_id\": 6,\n        \"recipient_type\": \"seller\",\n        \"created_at\": \"2020-10-22T07:33:22.000000Z\",\n        \"updated_at\": \"2020-10-22T07:33:22.000000Z\"\n    }\n}"}],"_postman_id":"f315bd5b-1cf3-4063-8bdc-63d1a364710f"},{"name":"Create a review","id":"733e959f-2b2d-44df-a106-80442f720059","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"type\": \"seller\",\n   \"order_line_id\": 1,\n   \"order_seller_id\": 1,\n   \"ratings\": [\n       {\n           \"review_criteria_id\": 1,\n           \"ratings\": 5,\n           \"comment\": \"Lorem Ipsum\"\n       },\n       {\n           \"review_criteria_id\": 2,\n           \"ratings\": 5,\n           \"comment\": \"Lorem Ipsum\"\n       }\n   ]\n}"},"url":"{{domain}}/v1/reviews","urlObject":{"path":["v1","reviews"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"733e959f-2b2d-44df-a106-80442f720059"}],"id":"7977f850-a52a-45b7-bd5b-130965bbffac","_postman_id":"7977f850-a52a-45b7-bd5b-130965bbffac","description":""},{"name":"Review Criteria","item":[{"name":"List all review criteria","id":"05c68dc2-fb3c-4e6f-a444-32056391330d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews/criteria","urlObject":{"path":["v1","reviews","criteria"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a30d6baf-b9d1-44ca-a90a-a846c3d19d9d","name":"List all review criteria","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:29:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"5b221b8d5a09ec41e1b0cc8e8d26a8573cac165d\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"weight\": \"5.00\",\n            \"type\": \"product\",\n            \"created_at\": \"2020-09-29T08:43:07.000000Z\",\n            \"updated_at\": \"2020-09-29T08:43:07.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Le service est il rendu ?\",\n                        \"language_id\": 1,\n                        \"created_at\": \"2020-09-29T08:43:07.000000Z\",\n                        \"updated_at\": \"2020-10-22T07:22:54.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"weight\": \"2.00\",\n            \"type\": \"product\",\n            \"created_at\": \"2020-10-22T07:23:09.000000Z\",\n            \"updated_at\": \"2020-10-22T09:07:02.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 2,\n                        \"name\": \"Le service correspond t'il à votre besoin ?\",\n                        \"language_id\": 1,\n                        \"created_at\": \"2020-10-22T07:23:09.000000Z\",\n                        \"updated_at\": \"2020-10-22T07:23:09.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 3,\n            \"weight\": \"5.00\",\n            \"type\": \"seller\",\n            \"created_at\": \"2020-10-22T07:23:35.000000Z\",\n            \"updated_at\": \"2020-10-22T07:23:35.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Le vendeur vous a t'il accompagné ?\",\n                        \"language_id\": 1,\n                        \"created_at\": \"2020-10-22T07:23:35.000000Z\",\n                        \"updated_at\": \"2020-10-22T07:23:35.000000Z\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 3,\n            \"count\": 3,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"05c68dc2-fb3c-4e6f-a444-32056391330d"},{"name":"Get a review criteria","id":"96acd53d-4dd4-4724-aaf5-1bc42ecb2dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews/criteria/1","urlObject":{"path":["v1","reviews","criteria","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3a01bf78-dedc-467e-84b6-df92f9c8fe22","name":"Get a review criteria","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/reviews/criteria/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:29:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"71c2b8bbef1cb8ba05ad81a308b3751d63a9f017\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"weight\": \"5.00\",\n        \"type\": \"product\",\n        \"created_at\": \"2020-09-29T08:43:07.000000Z\",\n        \"updated_at\": \"2020-09-29T08:43:07.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Le service est il rendu ?\",\n                    \"language_id\": 1,\n                    \"created_at\": \"2020-09-29T08:43:07.000000Z\",\n                    \"updated_at\": \"2020-10-22T07:22:54.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"96acd53d-4dd4-4724-aaf5-1bc42ecb2dd2"},{"name":"Create a review criteria","id":"1b9905d7-d7f5-438a-856e-9f58431ddb1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"type\": \"seller\",\n   \"weight\": 5,\n   \"translations\": [\n       {\n           \"language_id\": 1,\n           \"name\": \"Qualité\"\n       },\n       {\n           \"language_id\": 2,\n           \"name\": \"Quality\"\n       }\n   ]\n}"},"url":"{{domain}}/v1/reviews/criteria","urlObject":{"path":["v1","reviews","criteria"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9a8a4b67-fa34-4a07-ac3f-659a72fe1bf3","name":"Create a review criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"type\": \"seller\",\n   \"weight\": 5,\n   \"translations\": [\n       {\n           \"language_id\": 1,\n           \"name\": \"Qualité\"\n       },\n       {\n           \"language_id\": 2,\n           \"name\": \"Quality\"\n       }\n   ]\n}"},"url":"{{domain}}/v1/reviews/criteria"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:32:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"aef6f14b9cbaac205027bbd38812f42b9fa9d5a2\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"weight\": \"5.00\",\n        \"type\": \"seller\",\n        \"created_at\": \"2020-11-16T10:32:57.000000Z\",\n        \"updated_at\": \"2020-11-16T10:32:57.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 4,\n                    \"name\": \"Qualité\",\n                    \"language_id\": 1,\n                    \"created_at\": \"2020-11-16T10:32:57.000000Z\",\n                    \"updated_at\": \"2020-11-16T10:32:57.000000Z\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Quality\",\n                    \"language_id\": 2,\n                    \"created_at\": \"2020-11-16T10:32:57.000000Z\",\n                    \"updated_at\": \"2020-11-16T10:32:57.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"1b9905d7-d7f5-438a-856e-9f58431ddb1d"},{"name":"Update a review criteria","id":"e34cc8d2-865e-4764-9a5d-cede7a346f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"type\": \"seller\",\n   \"weight\": 5,\n   \"translations\": [\n       {\n           \"language_id\": 1,\n           \"name\": \"Qualité\"\n       },\n       {\n           \"language_id\": 2,\n           \"name\": \"Quality\"\n       }\n   ]\n}"},"url":"{{domain}}/v1/reviews/criteria/3","urlObject":{"path":["v1","reviews","criteria","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"800d7aba-32b1-44db-81d9-f200eeb9f678","name":"Update a review criteria","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"type\": \"seller\",\n   \"weight\": 5,\n   \"translations\": [\n       {\n           \"language_id\": 1,\n           \"name\": \"Qualité\"\n       },\n       {\n           \"language_id\": 2,\n           \"name\": \"Quality\"\n       }\n   ]\n}"},"url":"{{domain}}/v1/reviews/criteria/3"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:34:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e34cc8d2-865e-4764-9a5d-cede7a346f6c"},{"name":"Delete a review criteria","id":"fa44b37d-c59e-4142-985b-048fd0067a01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/reviews/criteria/3","urlObject":{"path":["v1","reviews","criteria","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1b2de94a-5337-4876-85d5-357223cc434c","name":"Delete a review criteria","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/reviews/criteria/3"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 16 Nov 2020 10:34:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.12"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa44b37d-c59e-4142-985b-048fd0067a01"}],"id":"78e98f31-284b-4096-a10d-a3f1283bad68","_postman_id":"78e98f31-284b-4096-a10d-a3f1283bad68","description":""}],"id":"312ed2ac-455a-4d62-a2a3-798a918b3adf","_postman_id":"312ed2ac-455a-4d62-a2a3-798a918b3adf","description":""}],"id":"bd969657-9155-413c-8908-d03d8884698e","_postman_id":"bd969657-9155-413c-8908-d03d8884698e","description":""},{"name":"Payments","item":[{"name":"Cards","item":[{"name":"Get a payment card","id":"fd5d1df2-6eb7-4b82-b8ca-ac0342057a84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/cards/17","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","cards","17"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e958a166-bba8-47ee-a4ca-0b1956864e88","name":"Get an attribute type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/cards/17"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:30:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"31c18031abe44202ec55c25635b5370c3cca3152\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 17,\n        \"name\": null,\n        \"user_group_id\": 1,\n        \"payment_psp_id\": 1,\n        \"psp_card_id\": null,\n        \"state\": \"CREATED\",\n        \"public_key\": \"-----BEGIN PUBLIC KEY-----\\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5np82p6vXrzh17cqsmGi\\nbyrZ5GVq8Fct4LFPsfJChyYm8mS1/kmTV9P8fawaU+4rewEMtG/PzRsuindKaH1l\\nMJS2LuHmzua8rljXcCX1UagOnmAnzAhAUZq8WbgkwIJEq4qR78ma93NINdoCHccO\\n/by+F9Lvsf2VAV9yx54ennrtDxQ01SGPvli1Vt6h/+eh9z1qOfTgnBtL07xmwo4q\\noa1K9U9H+9iI/QlAXS4EIfFVnHnzPi3FEJTLzVJRD9f9JUj3pUxzAGTUpRisL/sg\\n91/uyT5CnB/m5Wbx0+7MjdOgzgY/Mi2rW/JCL9Xmt3uaTe7Wsxu+JxzB+TDVrX4n\\nIQIDAQAB\\n-----END PUBLIC KEY-----\\n\",\n        \"uuid\": \"4e5759354f54686c4f5745325a6d4d784f513d3d\",\n        \"created_at\": \"2020-10-28T15:30:34.000000Z\",\n        \"updated_at\": \"2020-10-28T15:30:34.000000Z\"\n    }\n}"}],"_postman_id":"fd5d1df2-6eb7-4b82-b8ca-ac0342057a84"},{"name":"Create a payment card","id":"bf159dcc-ecf5-47a6-bab8-fc1a7b01bbbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"module_id\": 3\n}"},"url":"{{domain}}/v1/cards","description":"<p>Create a <code>PaymentPspCard</code>. The entity returned can be used in a \"Tokenize a payment card\" call, to be filled with bank card details. Once it is filled with those details, it can be used to initiate a payment flow including pre-auth transactions (this is most of the time done with Mangopay as a PSP).</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>cards.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>module_id</strong></td>\n<td>Id of the PSP <code>Module</code> for which this card will be registered (most of the time, it will be Mangopay).</td>\n<td>Required. Must be a <code>Module</code> id.</td>\n</tr>\n<tr>\n<td>ip_address</td>\n<td>Ip address of the final user. Default to \"0.0.0.0\".</td>\n<td>Nullable. Must be an Ipv4 IP.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","cards"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"299d423d-342f-4e58-8bba-e9ec6a5dfeb2","name":"Create a payment card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"module_id\": 2\n}"},"url":"{{domain}}/v1/cards"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 15:24:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"0d0cd4a58927c4e7d685b4152dd2ac5aa4ef408c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 15,\n        \"name\": null,\n        \"user_group_id\": 1,\n        \"payment_psp_id\": 1,\n        \"psp_card_id\": null,\n        \"state\": \"CREATED\",\n        \"public_key\": \"-----BEGIN PUBLIC KEY-----\\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt/9KryEU0BjFUicEX8Py\\nIY2uQujDKZ/UZNRm5IO41cCXI771tjXA0Cv76lvTGKZeppjRjtg8ETcyVI51Cv1r\\nkemRWLsBxtgDoQy/6CCKWBPcFlB3nqhfRtPGdhn8BQgM9/NYucnS9ecLwYWRmTth\\nAIK2oYR06VgClRJDRPRPTtFeulY01KMRFVuPzL3I1zITTZR3MNqt5pxotNSDdS9b\\nVhwFIYu5iIdX0UcmUIiZIsEfqTEdS7tzQxpIb1eelSsHqwxg06pHEKbTPUv292Vc\\nyEkw4ZcvXD2UZeg9It8z5fnWrpUy31rdiRFGufKw5WPq2RO/voxZeTVxlwurh+H8\\n3wIDAQAB\\n-----END PUBLIC KEY-----\\n\",\n        \"uuid\": \"4e5759354f54686b4d6a6c6d4d7a68694e413d3d\",\n        \"created_at\": \"2020-10-28T15:24:26.000000Z\",\n        \"updated_at\": \"2020-10-28T15:24:26.000000Z\"\n    }\n}"}],"_postman_id":"bf159dcc-ecf5-47a6-bab8-fc1a7b01bbbd"},{"name":"Tokenize a payment card","id":"6eeae334-c349-43b3-9989-752819ea02c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"module_id\": 2,\n    \"uuid\": \"4e5759354f54686b4d57497a4e5455354d773d3d\",\n    \"data\": \"DATAENCRYPTED\",\n    \"hash\": \"DATAHASHED\"\n}"},"url":"{{domain}}/v1/cards/tokenize","description":"<p>Tokenizes bank card details into a certain <code>PaymentPspCard</code>. In order to execute this request, a <code>PaymentPspCard</code> entity will be needed. It can be obtained via the \"Create a payment card\" endpoint.</p>\n<p>Both \"data\" and \"hash\" body parameters are a bit tricky to fill. Here is a short explanation for each.</p>\n<p>\"data\" would be the result of the php code below :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// JSON encode the object below and store the result into $data\n$data = json_encode([\n    'card_number'          =&gt; $cardNumber,\n    'card_expiration_date' =&gt; $cardExpirationDate,\n    'card_cvv'             =&gt; $cardCvv,\n]);\n// Encrypt $data using $card-&gt;public_key, which is the \"public_key\" field on PaymentPspCard\n// Store result in $dataEncrypted\nopenssl_public_encrypt($data, $dataEncrypted, $card-&gt;public_key);\n// Base64 encode $dataEncrypted, the result should be sent in the \"data\" field of the request\n$dataEncryptedAndEncoded = base64_encode($dataEncrypted);\n\n</code></pre>\n<p>\"hash\" would be the result of the hashed (using 'sha256' algorithm) concatenation of four strings, in this order :</p>\n<ul>\n<li>First four numbers of the bank card number</li>\n<li>Last two numbers of the bank card number</li>\n<li>Bank card expiration date</li>\n<li>Bank card cvv</li>\n</ul>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>cards.tokenize</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>uuid</strong></td>\n<td>\"uuid\" field of a certain <code>PaymentPspCard</code>.</td>\n<td>Required. String. Must be an uuid corresponding to an existing <code>PaymentPspCard</code>.</td>\n</tr>\n<tr>\n<td><strong>data</strong></td>\n<td>See endpoint description just above.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td><strong>hash</strong></td>\n<td>See endpoint description just above.</td>\n<td>Required. String.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","cards","tokenize"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6eeae334-c349-43b3-9989-752819ea02c5"}],"id":"35cec618-2952-40de-911b-31d9c643b7bf","event":[{"listen":"prerequest","script":{"id":"2fd6d802-13e6-4c82-8a7b-dc6ba64538d7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9c450b52-4a9c-4377-b3eb-bf667b0383ed","type":"text/javascript","exec":[""]}}],"_postman_id":"35cec618-2952-40de-911b-31d9c643b7bf","description":""},{"name":"Transactions","item":[{"name":"List all payment methods","id":"50119614-8bc5-4eb6-b16a-5ee2840e3a22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/transactions/methods","description":"<p>GET all payments methods available in the PSP module configuration</p>\n<h2 id=\"query-parameters\">Query parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Description</th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_id</td>\n<td>Id of the cart for which the payment methods are retrieved. This parameter is not required in every case, but recommended.</td>\n<td>Optionnal. Integer. Must be an id corresponding to an existing cart (Order of type \"cart\").</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","payments","transactions","methods"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"263591cf-9c63-441f-9984-0bfaed8daeec","name":"List all payment methods","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/transactions/methods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:37:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"cefc4fb985f4154c88509f6cfef208d7c64755b2\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"module_id\": 2,\n            \"payment_method\": \"PREAUTH\",\n            \"capture_methods\": [\n                \"INTERNAL\"\n            ],\n            \"module_name\": \"mangopay\"\n        },\n        {\n            \"module_id\": 5,\n            \"payment_method\": \"PAYIN\",\n            \"capture_methods\": [\n                \"EXTERNAL\",\n                \"INTERNAL\"\n            ],\n            \"module_name\": \"paysurf\"\n        }\n    ]\n}"}],"_postman_id":"50119614-8bc5-4eb6-b16a-5ee2840e3a22"},{"name":"List all payment transactions","id":"00314960-c245-4b99-a3a9-2c222f90767f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/transactions","description":"<p>GET all payments transactions</p>\n","urlObject":{"path":["v1","payments","transactions"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c38c794f-076d-412e-9f31-3d1f327b7b7a","name":"List all payment transactions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:37:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"e3b2c76fcd489da18638844162133f838f28c5ad\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": \"87950493\",\n            \"amount\": \"18.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-09-16T09:09:58.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": {\n                \"AuthorId\": \"87950489\",\n                \"DebitedFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1800\n                },\n                \"Status\": \"SUCCEEDED\",\n                \"PaymentStatus\": \"WAITING\",\n                \"ResultCode\": \"000000\",\n                \"ResultMessage\": \"Success\",\n                \"StatementDescriptor\": null,\n                \"ExecutionType\": \"DIRECT\",\n                \"SecureMode\": \"DEFAULT\",\n                \"CardId\": \"87950491\",\n                \"SecureModeNeeded\": false,\n                \"SecureModeRedirectURL\": null,\n                \"SecureModeReturnURL\": null,\n                \"ExpirationDate\": 1600809000,\n                \"AuthorizationDate\": 1600247400,\n                \"PaymentType\": \"CARD\",\n                \"PayInId\": null,\n                \"Billing\": {\n                    \"Address\": {\n                        \"AddressLine1\": null,\n                        \"AddressLine2\": null,\n                        \"City\": null,\n                        \"Region\": null,\n                        \"PostalCode\": null,\n                        \"Country\": null\n                    }\n                },\n                \"SecurityInfo\": {\n                    \"AVSResult\": \"NO_CHECK\"\n                },\n                \"MultiCapture\": false,\n                \"RemainingFunds\": null,\n                \"Id\": \"87950493\",\n                \"Tag\": null,\n                \"CreationDate\": 1600247399\n            },\n            \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=2&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=2&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"payment_page_url\": null\n        },\n        {\n            \"id\": 2,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": \"87954273\",\n            \"amount\": \"18.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-09-16T09:54:24.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": {\n                \"AuthorId\": \"87950489\",\n                \"DebitedFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1800\n                },\n                \"Status\": \"SUCCEEDED\",\n                \"PaymentStatus\": \"WAITING\",\n                \"ResultCode\": \"000000\",\n                \"ResultMessage\": \"Success\",\n                \"StatementDescriptor\": null,\n                \"ExecutionType\": \"DIRECT\",\n                \"SecureMode\": \"DEFAULT\",\n                \"CardId\": \"87954269\",\n                \"SecureModeNeeded\": false,\n                \"SecureModeRedirectURL\": null,\n                \"SecureModeReturnURL\": null,\n                \"ExpirationDate\": 1600811666,\n                \"AuthorizationDate\": 1600250066,\n                \"PaymentType\": \"CARD\",\n                \"PayInId\": null,\n                \"Billing\": {\n                    \"Address\": {\n                        \"AddressLine1\": null,\n                        \"AddressLine2\": null,\n                        \"City\": null,\n                        \"Region\": null,\n                        \"PostalCode\": null,\n                        \"Country\": null\n                    }\n                },\n                \"SecurityInfo\": {\n                    \"AVSResult\": \"NO_CHECK\"\n                },\n                \"MultiCapture\": false,\n                \"RemainingFunds\": null,\n                \"Id\": \"87954273\",\n                \"Tag\": null,\n                \"CreationDate\": 1600250065\n            },\n            \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=5&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=5&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"payment_page_url\": null\n        },\n        {\n            \"id\": 3,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": \"88395882\",\n            \"amount\": \"92.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-09-23T12:10:37.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": {\n                \"AuthorId\": \"87950489\",\n                \"DebitedFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 9200\n                },\n                \"Status\": \"SUCCEEDED\",\n                \"PaymentStatus\": \"WAITING\",\n                \"ResultCode\": \"000000\",\n                \"ResultMessage\": \"Success\",\n                \"StatementDescriptor\": null,\n                \"ExecutionType\": \"DIRECT\",\n                \"SecureMode\": \"DEFAULT\",\n                \"CardId\": \"88395881\",\n                \"SecureModeNeeded\": true,\n                \"SecureModeRedirectURL\": null,\n                \"SecureModeReturnURL\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=3&preAuthorizationId=88395882\",\n                \"ExpirationDate\": 1601424651,\n                \"AuthorizationDate\": 1600863051,\n                \"PaymentType\": \"CARD\",\n                \"PayInId\": null,\n                \"Billing\": {\n                    \"Address\": {\n                        \"AddressLine1\": null,\n                        \"AddressLine2\": null,\n                        \"City\": null,\n                        \"Region\": null,\n                        \"PostalCode\": null,\n                        \"Country\": null\n                    }\n                },\n                \"SecurityInfo\": {\n                    \"AVSResult\": \"NO_CHECK\"\n                },\n                \"MultiCapture\": false,\n                \"RemainingFunds\": null,\n                \"Id\": \"88395882\",\n                \"Tag\": null,\n                \"CreationDate\": 1600863038\n            },\n            \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=6&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=6&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"payment_page_url\": \"https://api.sandbox.mangopay.com:443/Redirect/ACSWithoutValidation?token=039559fb58904ea5ae040696a25b807b\"\n        },\n        {\n            \"id\": 4,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": \"88405313\",\n            \"amount\": \"55.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-09-23T13:27:54.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": {\n                \"AuthorId\": \"87950489\",\n                \"DebitedFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 5500\n                },\n                \"Status\": \"SUCCEEDED\",\n                \"PaymentStatus\": \"WAITING\",\n                \"ResultCode\": \"000000\",\n                \"ResultMessage\": \"Success\",\n                \"StatementDescriptor\": null,\n                \"ExecutionType\": \"DIRECT\",\n                \"SecureMode\": \"DEFAULT\",\n                \"CardId\": \"88405312\",\n                \"SecureModeNeeded\": true,\n                \"SecureModeRedirectURL\": null,\n                \"SecureModeReturnURL\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=4&preAuthorizationId=88405313\",\n                \"ExpirationDate\": 1601429284,\n                \"AuthorizationDate\": 1600867684,\n                \"PaymentType\": \"CARD\",\n                \"PayInId\": null,\n                \"Billing\": {\n                    \"Address\": {\n                        \"AddressLine1\": null,\n                        \"AddressLine2\": null,\n                        \"City\": null,\n                        \"Region\": null,\n                        \"PostalCode\": null,\n                        \"Country\": null\n                    }\n                },\n                \"SecurityInfo\": {\n                    \"AVSResult\": \"NO_CHECK\"\n                },\n                \"MultiCapture\": false,\n                \"RemainingFunds\": null,\n                \"Id\": \"88405313\",\n                \"Tag\": null,\n                \"CreationDate\": 1600867675\n            },\n            \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=7&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=7&key=8ab3331a7c267c9a10f2626356ce7d15\",\n            \"payment_page_url\": \"https://api.sandbox.mangopay.com:443/Redirect/ACSWithoutValidation?token=0d77ada460ec43a68f53e306d54cfb1d\"\n        },\n        {\n            \"id\": 5,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": null,\n            \"amount\": \"25.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-09-23T13:36:00.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": false,\n            \"callback_url\": null,\n            \"redirect_url\": null,\n            \"payment_page_url\": null\n        },\n        {\n            \"id\": 6,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": null,\n            \"amount\": \"30.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-09-23T13:36:01.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": false,\n            \"callback_url\": null,\n            \"redirect_url\": null,\n            \"payment_page_url\": null\n        },\n        {\n            \"id\": 11,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": \"90382218\",\n            \"amount\": \"1200.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-10-21T16:34:54.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": {\n                \"AuthorId\": \"90382214\",\n                \"DebitedFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 120000\n                },\n                \"Status\": \"SUCCEEDED\",\n                \"PaymentStatus\": \"WAITING\",\n                \"ResultCode\": \"000000\",\n                \"ResultMessage\": \"Success\",\n                \"StatementDescriptor\": null,\n                \"ExecutionType\": \"DIRECT\",\n                \"SecureMode\": \"DEFAULT\",\n                \"CardId\": \"90382216\",\n                \"SecureModeNeeded\": true,\n                \"SecureModeRedirectURL\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=11&preAuthorizationId=90382218\",\n                \"SecureModeReturnURL\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=11&preAuthorizationId=90382218\",\n                \"ExpirationDate\": 1603859697,\n                \"AuthorizationDate\": 1603298097,\n                \"PaymentType\": \"CARD\",\n                \"PayInId\": null,\n                \"Billing\": {\n                    \"Address\": {\n                        \"AddressLine1\": null,\n                        \"AddressLine2\": null,\n                        \"City\": null,\n                        \"Region\": null,\n                        \"PostalCode\": null,\n                        \"Country\": null\n                    }\n                },\n                \"SecurityInfo\": {\n                    \"AVSResult\": \"NO_CHECK\"\n                },\n                \"MultiCapture\": false,\n                \"RemainingFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 120000\n                },\n                \"Id\": \"90382218\",\n                \"Tag\": null,\n                \"CreationDate\": 1603298095\n            },\n            \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=9&key=f347001eff35c62ab99b5e49d4ec7260\",\n            \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=9&key=f347001eff35c62ab99b5e49d4ec7260\",\n            \"payment_page_url\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=11&preAuthorizationId=90382218\"\n        },\n        {\n            \"id\": 12,\n            \"type\": \"PREAUTH\",\n            \"psp_transaction_id\": \"90412253\",\n            \"amount\": \"1200.00\",\n            \"psp\": \"mangopay\",\n            \"date\": \"2020-10-22T09:23:23.000000Z\",\n            \"state\": \"SUCCESS\",\n            \"psp_transaction_extra_info\": {\n                \"AuthorId\": \"90412249\",\n                \"DebitedFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 120000\n                },\n                \"Status\": \"SUCCEEDED\",\n                \"PaymentStatus\": \"WAITING\",\n                \"ResultCode\": \"000000\",\n                \"ResultMessage\": \"Success\",\n                \"StatementDescriptor\": null,\n                \"ExecutionType\": \"DIRECT\",\n                \"SecureMode\": \"DEFAULT\",\n                \"CardId\": \"90412251\",\n                \"SecureModeNeeded\": true,\n                \"SecureModeRedirectURL\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=12&preAuthorizationId=90412253\",\n                \"SecureModeReturnURL\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=12&preAuthorizationId=90412253\",\n                \"ExpirationDate\": 1603920205,\n                \"AuthorizationDate\": 1603358605,\n                \"PaymentType\": \"CARD\",\n                \"PayInId\": null,\n                \"Billing\": {\n                    \"Address\": {\n                        \"AddressLine1\": null,\n                        \"AddressLine2\": null,\n                        \"City\": null,\n                        \"Region\": null,\n                        \"PostalCode\": null,\n                        \"Country\": null\n                    }\n                },\n                \"SecurityInfo\": {\n                    \"AVSResult\": \"NO_CHECK\"\n                },\n                \"MultiCapture\": false,\n                \"RemainingFunds\": {\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 120000\n                },\n                \"Id\": \"90412253\",\n                \"Tag\": null,\n                \"CreationDate\": 1603358603\n            },\n            \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=10&key=cf3f8fc577a50e5b6957d8a5813c6ee3\",\n            \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=10&key=cf3f8fc577a50e5b6957d8a5813c6ee3\",\n            \"payment_page_url\": \"https://api.staging.origami-marketplace.com/v1/modules/events/mangopay?EventType=PREAUTH_3D_SECURED&origami_transaction_id=12&preAuthorizationId=90412253\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 8,\n            \"count\": 8,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"00314960-c245-4b99-a3a9-2c222f90767f"},{"name":"Get a payment transaction","id":"a5c9c31a-9ab3-425a-9279-cbe7777139e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/transactions/1","description":"<p>GET the details of a payment transaction</p>\n","urlObject":{"path":["v1","payments","transactions","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3f58ee58-3168-4d2a-bd4b-a6f4a9dc8559","name":"Get a payment transaction","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/transactions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:38:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"aa8b89c3a0ea1edb48ac9d435cf8b7d3318341eb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"PREAUTH\",\n        \"psp_transaction_id\": \"87950493\",\n        \"amount\": \"18.00\",\n        \"psp\": \"mangopay\",\n        \"date\": \"2020-09-16T09:09:58.000000Z\",\n        \"state\": \"SUCCESS\",\n        \"psp_transaction_extra_info\": {\n            \"AuthorId\": \"87950489\",\n            \"DebitedFunds\": {\n                \"Currency\": \"EUR\",\n                \"Amount\": 1800\n            },\n            \"Status\": \"SUCCEEDED\",\n            \"PaymentStatus\": \"WAITING\",\n            \"ResultCode\": \"000000\",\n            \"ResultMessage\": \"Success\",\n            \"StatementDescriptor\": null,\n            \"ExecutionType\": \"DIRECT\",\n            \"SecureMode\": \"DEFAULT\",\n            \"CardId\": \"87950491\",\n            \"SecureModeNeeded\": false,\n            \"SecureModeRedirectURL\": null,\n            \"SecureModeReturnURL\": null,\n            \"ExpirationDate\": 1600809000,\n            \"AuthorizationDate\": 1600247400,\n            \"PaymentType\": \"CARD\",\n            \"PayInId\": null,\n            \"Billing\": {\n                \"Address\": {\n                    \"AddressLine1\": null,\n                    \"AddressLine2\": null,\n                    \"City\": null,\n                    \"Region\": null,\n                    \"PostalCode\": null,\n                    \"Country\": null\n                }\n            },\n            \"SecurityInfo\": {\n                \"AVSResult\": \"NO_CHECK\"\n            },\n            \"MultiCapture\": false,\n            \"RemainingFunds\": null,\n            \"Id\": \"87950493\",\n            \"Tag\": null,\n            \"CreationDate\": 1600247399\n        },\n        \"callback_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/callback?payment_method=PREAUTH&cart=2&key=8ab3331a7c267c9a10f2626356ce7d15\",\n        \"redirect_url\": \"https://staging.origami-marketplace.com/fr/module/origami_payment/validation?payment_method=PREAUTH&cart=2&key=8ab3331a7c267c9a10f2626356ce7d15\",\n        \"payment_page_url\": null\n    }\n}"}],"_postman_id":"a5c9c31a-9ab3-425a-9279-cbe7777139e2"},{"name":"Create a payment transaction","id":"1bd2203d-7e67-4081-b53b-c111649389f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"module_id\": 2,\n    \"type\": \"PREAUTH\",\n    \"amount\": \"20\",\n    \"currency\": \"EUR\",\n    \"card_id\": null,\n    \"callback_url\": null,\n    \"redirect_url\": null,\n    \"gift_card_code\": null,\n    \"order_id\": null\n}"},"url":"{{domain}}/v1/payments/transactions","description":"<p>Create a <code>PaymentTransaction</code>. This will also initiate the corresponding on the PSP that was filled in \"module_id\" field of the request.</p>\n<p>Most of the time, this call will be made after <a href=\"https://documenter.getpostman.com/view/1769019/TVYDfffr#50119614-8bc5-4eb6-b16a-5ee2840e3a22\">listing the payment methods</a> available to the end-user.</p>\n<p>You can use the data from the payment method call to fill <strong>module_id</strong> and <strong>type</strong> parameters.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>payment_transactions.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>The available parameters for this endpoint can change depending on the PSP you are using.</p>\n<p>The first table below lists parameters that are common to all PSPs, you will find PSP's specific parameters in the next section below.</p>\n<h4 id=\"common-parameters\">Common parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>module_id</strong></td>\n<td>Id of the PSP <code>Module</code> to which the transaction will be linked.  <br /><strong>Should be filled with data from chosen payment method.</strong></td>\n<td>Required. Integer. Must be a <code>Module</code> id.</td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td>Type of the transaction.  <br /><strong>Should be filled with data from chosen payment method.</strong>  <br />The most two common types used are \"PAYIN\" and \"PREAUTH\".  <br />\"PAYIN\" is a regular money-in transaction, used by most of PSPs supported by Origami.  <br />\"PREAUTH\" is used by Mangopay PSP, since their workflow is a bit different from other PSPs.</td>\n<td>Required. String. Must be one the following values : \"PAYIN\", \"PREAUTH\", \"DEBIT_AGREEMENT\", \"BANK_WIRE\", \"TRANSFER_PAYMENT_SHOP\",  <br />\"GIFT_CARD_PAYIN\", \"ADMINISTRATIVE_REMIT\"</td>\n</tr>\n<tr>\n<td><strong>amount</strong></td>\n<td>Amount of the transaction as a float value, in cents (ex : \"23.67\"). When we are trying to create a transaction at the end of a checkout process, this would be the \"total_tax_inc\" field on the <code>Cart</code>.</td>\n<td>Required. String. Numeric value. Minimum : 0.</td>\n</tr>\n<tr>\n<td><strong>currency</strong></td>\n<td>Will always be \"EUR\".</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td><strong>order_id</strong></td>\n<td>Id of the <code>Cart</code> for which this transaction is created. This parameter will only be used to verify some data, <strong>it does not link the transaction to the cart.</strong></td>\n<td>Required. Integer. Must be a <code>Cart</code> id.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td>If the transaction type is \"PREAUTH\", Mangopay will need credit card details for their transaction to be created. This parameter should then be filled with the id of a <code>PaymentPspCard</code> previously created and tokenized (see <a href=\"https://origami-marketplace.notion.site/Workflow-Mangopay-350caf940fbd4f299351d604e2187a8c\">this document</a>).</td>\n<td>Nullable. Integer. Must be a <code>PaymentPspCard</code> id.</td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>This url will be called asynchronously by the API once the request trying to create the transaction on the PSP is achieved. It will be called with parameters such as <code>PaymentTransaction</code> id and state, so the client application can have the chance to perform any action depending on the state of the <code>PaymentTransaction</code>.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>redirect_url</td>\n<td>This is the url on which the final user will be redirected after completing its payment details on the PSP's payment page. In most of cases, this will be a public accessible url on the marketplace front-end, which could lead for example to a confirmation page. Just like the \"callback_url\" field, state and id of the <code>PaymentTransaction</code> will be provided as query string parameters.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>gift_card_code</td>\n<td>If the transaction being created has a \"GIFT_CARD_PAYIN\" type, we will need the gift card code corresponding to the gift card used by the final user to pay all or a part of its order.</td>\n<td>Nullable. String. Required if \"type\" equals to \"GIFT_CARD_PAYIN\".</td>\n</tr>\n<tr>\n<td>external_amount</td>\n<td>This parameter specifies the part of the transaction amount that should not be used by Origami for its marketplace flow.</td>\n<td>Nullable. String. Numeric value. Minimum 0. Must be less than <strong>amount</strong> parameter.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"mangopay-specific-parameters\">Mangopay specific parameters</h4>\n<p><strong>WARNING : before using these parameters, a certain option flag must be activated. Please get in touch with your Origami referent to get it done.</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_browser_info</td>\n<td>An object that will contain a set of parameters that Mangopay will use to for fraud-analysis purpose. All of these parameters should be collected from end-user browser settings.</td>\n<td>Object.</td>\n</tr>\n<tr>\n<td>user_browser_info.ip_address</td>\n<td>The IP address of the end user initiating the transaction, in IPV4 or IPV6 format.</td>\n<td>String. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.accept_header</td>\n<td>The exact content of the HTTP accept headers as sent to the platform from the end user’s browser.</td>\n<td>String. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.user_agent</td>\n<td>The exact content of the HTTP User-Agent header.</td>\n<td>String. Max length : 255 ch. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.java_enabled</td>\n<td>Whether or not the end user’s browser has the ability to execute Java.</td>\n<td>Boolean. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.javascript_enabled</td>\n<td>Whether or not the end user’s browser has the ability to execute JavaScript.</td>\n<td>Boolean. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.color_depth</td>\n<td>The value representing the depth of the screen’s color palette for displaying images, in bits per pixel.</td>\n<td>Integer. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.screen_height</td>\n<td>The height of the screen in pixels.</td>\n<td>Integer. Max : 999999. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.screen_width</td>\n<td>The width of the screen in pixels.</td>\n<td>Integer. Max : 999999. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.tz_offset</td>\n<td>The difference in minutes between the browser’s timezone and UTC. Ex : '-120'</td>\n<td>String. Required with user_browser_info.</td>\n</tr>\n<tr>\n<td>user_browser_info.language</td>\n<td>The browser language, made up of the language code and the country (e.g., “en-US”).</td>\n<td>String. Max length : 6 ch. Required with user_browser_info.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","payments","transactions"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"997ba5a3-0c6a-49d2-a919-e89494abe007","name":"Create a payment transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"module_id\": 2,\n    \"type\": \"PREAUTH\",\n    \"amount\": \"20\",\n    \"currency\": \"EUR\",\n    \"card_id\": null,\n    \"callback_url\": null,\n    \"redirect_url\": null,\n    \"gift_card_code\": null,\n    \"order_id\": null\n}"},"url":"{{domain}}/v1/payments/transactions/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 17:23:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"4359c8608daf4b4c567b6cc13e6a1e72cc682d0c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 17,\n        \"type\": \"PREAUTH\",\n        \"psp_transaction_id\": null,\n        \"amount\": \"20.00\",\n        \"psp\": \"mangopay\",\n        \"date\": \"2020-10-28T17:23:42.000000Z\",\n        \"state\": \"CREATED\",\n        \"psp_transaction_extra_info\": false,\n        \"callback_url\": null,\n        \"redirect_url\": null,\n        \"payment_page_url\": null\n    }\n}"}],"_postman_id":"1bd2203d-7e67-4081-b53b-c111649389f3"}],"id":"0307491b-98bb-4c30-91d7-4910c537dff5","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>psp</td>\n<td>Module data of transaction</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>parent</td>\n<td>Associated transaction parent of transaction</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_sellers</td>\n<td>All order_sellers of transaction</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Children of transaction</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>orders</td>\n<td>All orders of transaction</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>paymentReport</td>\n<td>Payment report of transaction</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>gift_card_usage</td>\n<td>Gift card associated of transaction</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0307491b-98bb-4c30-91d7-4910c537dff5"}],"id":"025f8753-aff2-4096-a16c-5ccce5630433","_postman_id":"025f8753-aff2-4096-a16c-5ccce5630433","description":""},{"name":"Finance","item":[{"name":"Reports","item":[{"name":"Get a payment report","id":"6ce5a70f-87e8-4093-92dc-f80d9262735b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/reports/4","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","payments","reports","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"94a57798-6b0f-4b33-8446-67472c25bce6","name":"Get a payment report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/payments/reports/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:08:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"bfb4eb1d57ada8941e70cd4803a5bba0ff941ce1\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"start_date\": \"14-09-2020  15:01\",\n        \"end_date\": null,\n        \"status\": \"open\",\n        \"psp_name\": \"mangopay\",\n        \"total_products_tax_exc\": 0,\n        \"total_shipping_tax_exc\": 0,\n        \"total_shipping_tax_inc\": 0,\n        \"total_wrapping_tax_exc\": 0,\n        \"total_tax_inc\": 0,\n        \"total_tax_exc\": 0,\n        \"balance\": \"0.00\",\n        \"payable_balance\": \"0.00\",\n        \"fees_balance\": \"0.00\",\n        \"total_paid_tax\": 0,\n        \"total_fees_amount\": 0,\n        \"total_fees_amount_tax_exc\": 0,\n        \"psp_wallet_info\": null,\n        \"total_refunds\": 0,\n        \"total_refunds_fees\": 0,\n        \"total_on_bank_account\": 0,\n        \"seller_invoice_id\": null,\n        \"seller_id\": 4,\n        \"additionnal_infos\": \"\"\n    }\n}"}],"_postman_id":"6ce5a70f-87e8-4093-92dc-f80d9262735b"},{"name":"Close a payment report","id":"9a61c034-6c78-4ca5-adf5-988e93054dc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/payments/reports/4/close","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","payments","reports","4","close"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9cac453b-f9f9-4731-9c68-0fe0862c421f","name":"Close a payment report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/payments/reports/4/close"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:33:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9a61c034-6c78-4ca5-adf5-988e93054dc8"},{"name":"Add an order to a payment report","id":"8f01dde9-a534-4468-a079-7b8c9b54fe83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/payments/reports/4/order/10/add","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","payments","reports","4","order","10","add"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ee5151ab-ec6b-4292-b714-421478596f51","name":"Add an order to a payment report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/payments/reports/4/order/10/add"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:35:04 GMT"},{"key":"Content-Type","value":"text/html; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8f01dde9-a534-4468-a079-7b8c9b54fe83"},{"name":"Remove an order from a payment report","id":"bc458695-eb71-480d-a09c-c18e6f3b7123","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/payments/reports/4/order/10/remove","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","payments","reports","4","order","10","remove"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"aea970f1-4c76-44c6-aeb3-64966edbbdda","name":"Remove an order from a payment report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/payments/reports/4/order/10/remove"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 16:35:38 GMT"},{"key":"Content-Type","value":"text/html; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bc458695-eb71-480d-a09c-c18e6f3b7123"}],"id":"2ae62472-00f6-4618-9df8-c416d55d0feb","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_sellers</td>\n<td>All order sellers on this report</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller</td>\n<td>Seller linked to this report</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>refunds</td>\n<td>All refunds on this report</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>payment_transactions</td>\n<td>All transactions done for this report</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6b403270-106f-4d34-95ef-574743bc1948","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a87d8874-08f3-4c30-b32b-4513b82d7683","type":"text/javascript","exec":[""]}}],"_postman_id":"2ae62472-00f6-4618-9df8-c416d55d0feb"},{"name":"Accounting","item":[{"name":"Export accounting report","id":"c477abfb-8ac3-41b9-abed-7e32cdfc7d13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/accounting/export?type=marketplace&begin_date=2019-01-01&end_date=2020-01-01","urlObject":{"path":["v1","accounting","export"],"host":["{{domain}}"],"query":[{"key":"type","value":"marketplace"},{"key":"begin_date","value":"2019-01-01"},{"key":"end_date","value":"2020-01-01"}],"variable":[]}},"response":[{"id":"0bd858b6-412a-4c13-8ae9-5dbceb95d7a2","name":"Export accounting report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":{"raw":"{{domain}}/v1/accounting/export?type=marketplace&begin_date=2019-01-01&end_date=2020-01-01","host":["{{domain}}"],"path":["v1","accounting","export"],"query":[{"key":"context[user_group_id]","value":"1","disabled":true},{"key":"type","value":"marketplace"},{"key":"begin_date","value":"2019-01-01"},{"key":"end_date","value":"2020-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Fri, 23 Oct 2020 13:53:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"8f1621f6971819e1021a103b57d6d96ac534fb25\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"data\": \"\",\n        \"mimeType\": \"text/plain\"\n    },\n    \"contentType\": \"text/plain\"\n}"}],"_postman_id":"c477abfb-8ac3-41b9-abed-7e32cdfc7d13"}],"id":"ab0bba96-2512-475e-a66b-b689e61c89c8","_postman_id":"ab0bba96-2512-475e-a66b-b689e61c89c8","description":""},{"name":"Fees","item":[{"name":"Fees Profiles","item":[{"name":"List all fees profiles","id":"73d8457d-5f37-4545-9837-8abacf463d25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles/1/lines","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","fees","profiles","1","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d301f5d0-37ee-4214-bcda-38198310cf70","name":"List all fees profiles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles/1/lines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:00:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"a1882b7b6b181610adcbee9d1174efdda5f05352\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"item_id\": null,\n            \"item_type\": null,\n            \"name\": \"10% sur les produits TTC\",\n            \"fees_rules\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"based_on\": \"total_products_tax_inc\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10.0000\",\n                        \"config\": {\n                            \"label\": \"Products total with taxes\",\n                            \"value\": \"total_products_tax_inc\",\n                            \"type\": \"percentage\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"73d8457d-5f37-4545-9837-8abacf463d25"},{"name":"Get a fees profile","id":"e360a798-38e8-4d48-afbe-962faa951429","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a830154a-a68e-4fac-a927-cac89a7e8a1c","name":"Get a fees profile","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:42:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"96b0960b6674569068111e3fc8c99437e914fe00\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"is_default\": 1,\n        \"name\": \"Default\",\n        \"created_at\": \"2020-09-16 09:11\",\n        \"taxable\": 0,\n        \"tax_percentage\": 15\n    }\n}"}],"_postman_id":"e360a798-38e8-4d48-afbe-962faa951429"},{"name":"Get a fees profile inherited lines","id":"38acc427-2434-4e43-9a8e-e1d7feb05745","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles/1/inherited_lines","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","1","inherited_lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"82787f52-a1f0-4d3a-ad1f-8a65d911bbed","name":"Get a fees profile inherited lines","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles/1/inherited_lines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:07:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"1050253aec7b29caff644806927dabfa81406eee\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": []\n}"}],"_postman_id":"38acc427-2434-4e43-9a8e-e1d7feb05745"},{"name":"Create a fees profile","id":"15fc49da-effc-4997-b93a-3043dec9d9a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"is_default\": true,\n     \"parent_id\": null,\n     \"name\": \"Fees profile default\",\n     \"taxable\": true,\n     \"tax_percentage\": 20\n }"},"url":"{{domain}}/v1/fees/profiles","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a7a4aa20-0044-4918-9b47-e239ebaa2d32","name":"Create a fees profile","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"is_default\": true,\n     \"parent_id\": null,\n     \"name\": \"Fees profile default\",\n     \"taxable\": true,\n     \"tax_percentage\": 20\n }"},"url":"{{domain}}/v1/fees/profiles"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:44:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"11be09f36c122bcd5d01adab385187592af2253e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"is_default\": 1,\n        \"name\": \"Fees profile default\",\n        \"created_at\": \"2020-10-28 10:44\",\n        \"taxable\": 1,\n        \"tax_percentage\": 20\n    }\n}"}],"_postman_id":"15fc49da-effc-4997-b93a-3043dec9d9a2"},{"name":"Update a fees profile","id":"335b8429-dc32-4f20-ab6a-bf13a630e4a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"is_default\": true,\n     \"parent_id\": null,\n     \"name\": \"Fees profile default\",\n     \"taxable\": true,\n     \"tax_percentage\": 20\n }"},"url":"{{domain}}/v1/fees/profiles/1","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a47f70d1-f776-4d6f-9dc9-3bfdc896f7fe","name":"Update a fees profile","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":" {\n     \"is_default\": true,\n     \"parent_id\": null,\n     \"name\": \"Fees profile default\",\n     \"taxable\": true,\n     \"tax_percentage\": 20\n }"},"url":"{{domain}}/v1/fees/profiles/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 12:54:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"335b8429-dc32-4f20-ab6a-bf13a630e4a4"},{"name":"Delete a fees profile","id":"e758f9c7-550d-48a6-b874-0bf76d31fad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/fees/profiles/2","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e758f9c7-550d-48a6-b874-0bf76d31fad3"}],"id":"79014fb2-9d6c-4f49-a10f-e275aebdf5d7","_postman_id":"79014fb2-9d6c-4f49-a10f-e275aebdf5d7","description":""},{"name":"Fees Profie Lines","item":[{"name":"List all fees profile lines","id":"8af59e34-ca12-49cd-be68-c09171d84ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","fees","profiles"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1504d2a4-e797-4fd6-9dd4-98c881846e87","name":"List all fees profiles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 10:41:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"ac98a904b8f91cd8ed563a636aa3c21cb8d78dd1\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"is_default\": 1,\n            \"name\": \"Default\",\n            \"created_at\": \"2020-09-16 09:11\",\n            \"taxable\": 0,\n            \"tax_percentage\": 15\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"8af59e34-ca12-49cd-be68-c09171d84ccd"},{"name":"Create a fees profile line","id":"148bbbaa-f15d-408d-ac00-752a84b050ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": null,\n    \"item_type\": null,\n    \"fees_profile_id\": 1,\n    \"name\": \"Fees profile default line\",\n    \"fees_rules\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/fees/profiles/1/lines","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","1","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a489d24e-f99e-4f3d-9fae-90ddb71f1ce6","name":"Create a fees profile line","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": null,\n    \"item_type\": null,\n    \"fees_profile_id\": 1,\n    \"name\": \"Fees profile default line\",\n    \"fees_rules\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/fees/profiles/1/lines"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:03:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":"/profil_lines/2"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"c597b2fe600d99a6ef6b763b06cbb83686b4bc8e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"item_id\": null,\n        \"item_type\": null,\n        \"name\": \"Fees profile default line\",\n        \"fees_rules\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"based_on\": \"total_products_tax_inc\",\n                    \"type\": \"percentage\",\n                    \"value\": \"10.0000\",\n                    \"config\": {\n                        \"label\": \"Products total with taxes\",\n                        \"value\": \"total_products_tax_inc\",\n                        \"type\": \"percentage\"\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"148bbbaa-f15d-408d-ac00-752a84b050ec"},{"name":"Update a fees profile line","id":"adbb1184-227f-4c3c-b4ea-f41c58854b08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": null,\n    \"item_type\": null,\n    \"fees_profile_id\": 1,\n    \"name\": \"Fees profile default line\",\n    \"fees_rules\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/fees/profiles/lines/1","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","lines","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"944729a2-7654-474d-a73c-4eef0470c0fd","name":"Update a fees profile line","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": null,\n    \"item_type\": null,\n    \"fees_profile_id\": 1,\n    \"name\": \"Fees profile default line\",\n    \"fees_rules\": [\n        {\n            \"id\": 1\n        }\n    ]\n}"},"url":"{{domain}}/v1/fees/profiles/lines/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:04:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"adbb1184-227f-4c3c-b4ea-f41c58854b08"},{"name":"Delete a fees profile line","id":"875ca1d0-e0cb-4bdf-8922-80a3468a54bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/fees/profiles/1/lines/3","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","fees","profiles","1","lines","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1e0b0770-badb-4750-a4e0-9daa9e97392e","name":"Delete a fees profile line","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/fees/profiles/1/lines/3"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:06:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"875ca1d0-e0cb-4bdf-8922-80a3468a54bd"}],"id":"6482e619-c8f8-43f4-881f-07fd174eae1c","_postman_id":"6482e619-c8f8-43f4-881f-07fd174eae1c","description":""},{"name":"Fees Rules","item":[{"name":"List all fees rules","id":"1841e9e8-f286-4d0e-af11-85b33f26c157","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/rules","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","fees","rules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d225b47f-83f9-4703-b889-d5b9518c3bd3","name":"List all fees rules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 12:47:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"1312f30c7e3272d6d0b00793f1dfc2685001cff9\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"based_on\": \"total_products_tax_inc\",\n            \"type\": \"percentage\",\n            \"value\": \"10.0000\",\n            \"config\": {\n                \"label\": \"Products total with taxes\",\n                \"value\": \"total_products_tax_inc\",\n                \"type\": \"percentage\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"1841e9e8-f286-4d0e-af11-85b33f26c157"},{"name":"List fees rules available bases","id":"75d1191c-60c2-4a0a-a8fe-da9a62d64b6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/rules/bases","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","fees","rules","bases"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a8f8c899-3750-4ff6-8e97-d7191772cf26","name":"List fees rules available bases","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/rules/bases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 12:56:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"3139e754007e11d1c2917d1afc1090c9bc2e5be7\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_products_tax_exc\": {\n        \"label\": \"Products total without taxes\",\n        \"value\": \"total_products_tax_exc\",\n        \"type\": \"percentage\"\n    },\n    \"total_products_tax_inc\": {\n        \"label\": \"Products total with taxes\",\n        \"value\": \"total_products_tax_inc\",\n        \"type\": \"percentage\"\n    },\n    \"total_shipping_tax_exc\": {\n        \"label\": \"Shipping total without taxes\",\n        \"value\": \"total_shipping_tax_exc\",\n        \"type\": \"percentage\",\n        \"filtering\": false\n    },\n    \"total_shipping_tax_inc\": {\n        \"label\": \"Shipping total with taxes\",\n        \"value\": \"total_shipping_tax_inc\",\n        \"type\": \"percentage\",\n        \"filtering\": false\n    },\n    \"products_qty\": {\n        \"label\": \"Products quantity\",\n        \"value\": \"products_qty\",\n        \"type\": \"flat\"\n    },\n    \"shipping_flat_fees\": {\n        \"label\": \"Shipping Flat Fees\",\n        \"value\": \"shipping_flat_fees\",\n        \"type\": \"flat\",\n        \"filtering\": false\n    },\n    \"order_line_qty\": {\n        \"label\": \"Order Line Quantity\",\n        \"value\": \"order_line_qty\",\n        \"type\": \"flat\",\n        \"filtering\": false\n    },\n    \"order\": {\n        \"label\": \"Order Line Quantity\",\n        \"value\": \"order\",\n        \"type\": \"minimum\",\n        \"filtering\": false\n    }\n}"}],"_postman_id":"75d1191c-60c2-4a0a-a8fe-da9a62d64b6f"},{"name":"Get a fees rule","id":"30458b05-7f7d-4de5-9a7c-f93ccf68366c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/rules/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","fees","rules","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b3964c60-a868-4d87-a2db-a18514755de1","name":"Get a fees rule","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/fees/rules/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 12:49:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"5d679b99dcd1ca2a3364ea0da3aca8b68f63c816\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"based_on\": \"total_products_tax_inc\",\n        \"type\": \"percentage\",\n        \"value\": \"10.0000\",\n        \"config\": {\n            \"label\": \"Products total with taxes\",\n            \"value\": \"total_products_tax_inc\",\n            \"type\": \"percentage\"\n        }\n    }\n}"}],"_postman_id":"30458b05-7f7d-4de5-9a7c-f93ccf68366c"},{"name":"Create a fees rule","id":"2e3c5c70-8aca-430e-a63f-99d5eeb53834","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"percentage\",\n    \"value\": 10,\n    \"based_on\": \"total_products_tax_inc\"\n}"},"url":"{{domain}}/v1/fees/rules","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","fees","rules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"dbf52bee-d778-48c3-a4ff-96a686d5682d","name":"Create a fees rule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"percentage\",\n    \"value\": 10,\n    \"based_on\": \"total_products_tax_inc\"\n}"},"url":"{{domain}}/v1/fees/rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 12:53:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"188378d2d574d6189dd2686a79c526bbce4886f5\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"based_on\": \"total_products_tax_inc\",\n        \"type\": \"percentage\",\n        \"value\": \"10.0000\",\n        \"config\": {\n            \"label\": \"Products total with taxes\",\n            \"value\": \"total_products_tax_inc\",\n            \"type\": \"percentage\"\n        }\n    }\n}"}],"_postman_id":"2e3c5c70-8aca-430e-a63f-99d5eeb53834"},{"name":"Update a fees rule","id":"4fae4965-adae-4cae-bf9a-bd13ea9b12eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"percentage\",\n    \"value\": 10,\n    \"based_on\": \"total_products_tax_inc\"\n}"},"url":"{{domain}}/v1/fees/rules/2","description":"<p>UPDATE an attribute_type</p>\n","urlObject":{"path":["v1","fees","rules","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4aa707ed-9b7b-47ea-9f11-797d8c2a2d2a","name":"Update a fees rule","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"percentage\",\n    \"value\": 10,\n    \"based_on\": \"total_products_tax_inc\"\n}"},"url":"{{domain}}/v1/fees/rules/2"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 12:54:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4fae4965-adae-4cae-bf9a-bd13ea9b12eb"},{"name":"Delete a fees rule","id":"1d6cbb50-9308-4b13-b0e4-02b3d7fec381","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/fees/rules/2","description":"<p>DELETE an attribute_type</p>\n","urlObject":{"path":["v1","fees","rules","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d6cbb50-9308-4b13-b0e4-02b3d7fec381"}],"id":"7cc79452-2008-4d6b-a79f-e3bdf93e0665","event":[{"listen":"prerequest","script":{"id":"8566dca1-fe60-4327-a36b-99200d3b31d0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5a31e50a-ba81-4177-961d-6b4c037193c4","type":"text/javascript","exec":[""]}}],"_postman_id":"7cc79452-2008-4d6b-a79f-e3bdf93e0665","description":""}],"id":"5324097b-4846-44c4-8d19-880d7b8c3de2","event":[{"listen":"prerequest","script":{"id":"7495095e-3c11-4866-a780-09fdb068e63f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dab1cc45-5f51-47f4-b556-4fd4e06c4b57","type":"text/javascript","exec":[""]}}],"_postman_id":"5324097b-4846-44c4-8d19-880d7b8c3de2","description":""}],"id":"f945e559-cca0-4208-b30c-134d07219e5c","_postman_id":"f945e559-cca0-4208-b30c-134d07219e5c","description":""},{"name":"Configuration","item":[{"name":"Custom Fields","item":[{"name":"Get all custom fields","id":"8875ce0f-0387-4c16-a063-ea989ab10699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields","urlObject":{"path":["v1","custom_fields"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"96fb34ab-9136-42a6-83eb-695f69fe5566","name":"Get all custom fields","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:37:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"9c84f9a99df9f59e30a384574569a4be62d2a6fb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"key\": \"test\",\n            \"type\": \"multiple\",\n            \"model_type\": \"seller\",\n            \"custom_field_group_id\": null,\n            \"params\": {\n                \"values\": [\n                    \"foo\",\n                    \"bar\",\n                    \"toto\",\n                    \"bar\"\n                ]\n            },\n            \"private\": 0,\n            \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n            \"updated_at\": \"2020-10-22T15:29:03.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Test select\",\n                        \"language_id\": 1,\n                        \"description\": \"Test select\",\n                        \"locale\": \"fr\",\n                        \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n                        \"updated_at\": \"2020-10-22T15:29:03.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"key\": \"dropshipping_waiting_account_number\",\n            \"type\": \"input\",\n            \"model_type\": \"seller\",\n            \"custom_field_group_id\": null,\n            \"params\": null,\n            \"private\": 1,\n            \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"updated_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 2,\n                        \"name\": \"Compte d'attente Dropshipping\",\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"locale\": \"fr\",\n                        \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n                        \"updated_at\": \"2020-10-23T13:45:12.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 3,\n            \"key\": \"marketplace_seller_account_number\",\n            \"type\": \"input\",\n            \"model_type\": \"seller\",\n            \"custom_field_group_id\": null,\n            \"params\": null,\n            \"private\": 1,\n            \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"updated_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Numero de compte marketplace\",\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"locale\": \"fr\",\n                        \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n                        \"updated_at\": \"2020-10-23T13:45:12.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 4,\n            \"key\": \"customer_accounting_number\",\n            \"type\": \"input\",\n            \"model_type\": \"customer\",\n            \"custom_field_group_id\": null,\n            \"params\": null,\n            \"private\": 1,\n            \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"updated_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 4,\n                        \"name\": \"Numero de compte client comptabilite\",\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"locale\": \"fr\",\n                        \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n                        \"updated_at\": \"2020-10-23T13:45:12.000000Z\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 5,\n            \"key\": \"front_invoice_number\",\n            \"type\": \"input\",\n            \"model_type\": \"order_seller\",\n            \"custom_field_group_id\": null,\n            \"params\": null,\n            \"private\": 1,\n            \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"updated_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 5,\n                        \"name\": \"Numero de facture front Office\",\n                        \"language_id\": 1,\n                        \"description\": null,\n                        \"locale\": \"fr\",\n                        \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n                        \"updated_at\": \"2020-10-23T13:45:12.000000Z\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 5,\n            \"count\": 5,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"8875ce0f-0387-4c16-a063-ea989ab10699"},{"name":"Get all custom fields avaiblable types","id":"64896a8c-84ed-4df1-a7ea-d6638ea92694","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/types","urlObject":{"path":["v1","custom_fields","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c54fe781-77ad-42ad-8da4-a9871092dbbc","name":"Get all custom fields avaiblable types","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:23:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"ce426ca4bc03f14c7477643d8b14154da6797314\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    \"input\",\n    \"textarea\",\n    \"select\",\n    \"multiple\",\n    \"boolean\",\n    \"html\",\n    \"file\",\n    \"image\"\n]"}],"_postman_id":"64896a8c-84ed-4df1-a7ea-d6638ea92694"},{"name":"Get a custom field","id":"5e053357-da7e-4474-a817-9a8deb1861e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/1","urlObject":{"path":["v1","custom_fields","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e19c0940-a9f9-4105-9810-adf2287023d4","name":"Get a custom field","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:37:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"0a108dbc1b3332b0c812d62de59d2c05dae99b6a\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"key\": \"test\",\n        \"type\": \"multiple\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\",\n                \"bar\",\n                \"toto\",\n                \"bar\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"updated_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Test select\",\n                    \"language_id\": 1,\n                    \"description\": \"Test select\",\n                    \"locale\": \"fr\",\n                    \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n                    \"updated_at\": \"2020-10-22T15:29:03.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"5e053357-da7e-4474-a817-9a8deb1861e1"},{"name":"Create a custom field","id":"0dff95bb-3185-4b95-8fea-4130a09ad2df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"test_input\",\n    \"type\": \"input\",\n    \"model_type\": \"seller\",\n    \"values\": [\n        {\"value\": \"foo\"}\n    ]\n}"},"url":"{{domain}}/v1/custom_fields","urlObject":{"path":["v1","custom_fields"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"096c92d9-5a5f-486c-b61a-0692d7ac7b41","name":"Create a custom field with type \"input\"","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"test_input\",\n    \"type\": \"input\",\n    \"model_type\": \"seller\",\n    \"values\": [\n        {\"value\": \"foo\"}\n    ]\n}"},"url":"{{domain}}/v1/custom_fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.1.12"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 26 Oct 2023 08:37:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 12,\n        \"key\": \"test_input\",\n        \"type\": \"input\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2023-10-26T08:37:11.000000Z\",\n        \"updated_at\": \"2023-10-26T08:37:11.000000Z\",\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"},{"id":"9d8e2b52-b133-42a7-8e95-f00a901aafc4","name":"Create a custom field with type \"multiple\"","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"test_multiple\",\n    \"type\": \"multiple\",\n    \"model_type\": \"seller\",\n    \"values\": [\n        {\"value\": \"foo\"},\n        {\"value\": \"bar\"},\n        {\"value\": \"toto\"}\n    ]\n}"},"url":"{{domain}}/v1/custom_fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.1.12"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 26 Oct 2023 08:56:05 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 13,\n        \"key\": \"test_multiple\",\n        \"type\": \"multiple\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\",\n                \"bar\",\n                \"toto\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2023-10-26T08:56:05.000000Z\",\n        \"updated_at\": \"2023-10-26T08:56:05.000000Z\",\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"},{"id":"1c409c57-0a16-4163-b79d-4497c2000be3","name":"Create a custom field with type \"select\"","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"test_select\",\n    \"type\": \"select\",\n    \"model_type\": \"seller\",\n    \"values\": [\n        {\"value\": \"foo\"},\n        {\"value\": \"bar\"},\n        {\"value\": \"toto\"}\n    ]\n}"},"url":"{{domain}}/v1/custom_fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.1.12"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 26 Oct 2023 08:57:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 14,\n        \"key\": \"test_select\",\n        \"type\": \"select\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\",\n                \"bar\",\n                \"toto\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2023-10-26T08:57:39.000000Z\",\n        \"updated_at\": \"2023-10-26T08:57:39.000000Z\",\n        \"translations\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"0dff95bb-3185-4b95-8fea-4130a09ad2df"},{"name":"Update a custom field","id":"2c0deedf-c8eb-4905-86cf-19ec46c28f03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model_type\": \"products\",\n    \"key\": \"custom_field_test\",\n    \"type\": \"input\",\n    \"private\": true,\n    \"custom_field_group_id\": 1\n}"},"url":"{{domain}}/v1/custom_fields/1","urlObject":{"path":["v1","custom_fields","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d54008c6-cac7-4844-b778-4a674dc178c4","name":"Update a custom field","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model_type\": \"products\",\n    \"key\": \"custom_field_test\",\n    \"type\": \"input\",\n    \"private\": true,\n    \"custom_field_group_id\": 1\n}"},"url":"{{domain}}/v1/custom_fields/1"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2c0deedf-c8eb-4905-86cf-19ec46c28f03"},{"name":"Delete a custom field","id":"28d7e1b6-2732-4f6b-8c40-1da15132471f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/custom_fields/1","urlObject":{"path":["v1","custom_fields","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d34b11d8-98ce-43da-875c-9f6ac70011cd","name":"Delete a custom field","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/custom_fields/1"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"28d7e1b6-2732-4f6b-8c40-1da15132471f"},{"name":"Get all custom field groups","id":"2fb342bc-f41a-4225-93fb-5c40711fcc7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/groups","urlObject":{"path":["v1","custom_fields","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b69a342d-e524-4a40-a58b-a87a516525fc","name":"Get all custom field groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 16:50:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"9a9ba2d7581512eaf5f0c83b9ec5c0422cf5c7f0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"params\": null,\n            \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n            \"updated_at\": \"2020-10-27T15:02:11.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Custom field Group Test\",\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                        \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"name\": \"Custom Field Group Test\",\n                        \"locale\": \"en\",\n                        \"language_id\": 2,\n                        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                        \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                    }\n                ]\n            },\n            \"children\": {\n                \"data\": []\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"2fb342bc-f41a-4225-93fb-5c40711fcc7f"},{"name":"Get a custom field group","id":"8bc3fa5f-9c5f-4b0b-a4ae-578e5b33c6c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/groups","urlObject":{"path":["v1","custom_fields","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5acabc18-e338-4e43-9c4b-f1c4d0a68621","name":"Get all custom field groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 16:50:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"9a9ba2d7581512eaf5f0c83b9ec5c0422cf5c7f0\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"params\": null,\n            \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n            \"updated_at\": \"2020-10-27T15:02:11.000000Z\",\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Custom field Group Test\",\n                        \"locale\": \"fr\",\n                        \"language_id\": 1,\n                        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                        \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"name\": \"Custom Field Group Test\",\n                        \"locale\": \"en\",\n                        \"language_id\": 2,\n                        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                        \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                    }\n                ]\n            },\n            \"children\": {\n                \"data\": []\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"8bc3fa5f-9c5f-4b0b-a4ae-578e5b33c6c9"},{"name":"Create a custom field group","id":"fffb70d7-c937-4226-be89-9f4d10534632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"custom_field_group_test\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Custom field Group Test\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom Field Group Test\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/custom_fields/groups","urlObject":{"path":["v1","custom_fields","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4ee54214-e667-4397-8062-b54263dcd8f4","name":"Create a custom field group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"custom_field_group_test\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Custom field Group Test\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom Field Group Test\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/custom_fields/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 15:02:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"4cf460c96a4a97e2fbe1990fc46bc680d121492c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"params\": null,\n        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n        \"updated_at\": \"2020-10-27T15:02:11.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Custom field Group Test\",\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                    \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"Custom Field Group Test\",\n                    \"locale\": \"en\",\n                    \"language_id\": 2,\n                    \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                    \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                }\n            ]\n        },\n        \"children\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"fffb70d7-c937-4226-be89-9f4d10534632"},{"name":"Update a custom field group","id":"117e48cd-9dc6-41db-86e8-dfcc986037c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"custom_field_group_test\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Custom field Group Test\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom Field Group Test\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/custom_fields/groups/1","urlObject":{"path":["v1","custom_fields","groups","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"236e9d3a-639c-42c7-aa46-3b5bf827d351","name":"Create a custom field group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"custom_field_group_test\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Custom field Group Test\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom Field Group Test\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/custom_fields/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 15:02:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"4cf460c96a4a97e2fbe1990fc46bc680d121492c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"params\": null,\n        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n        \"updated_at\": \"2020-10-27T15:02:11.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Custom field Group Test\",\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                    \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"Custom Field Group Test\",\n                    \"locale\": \"en\",\n                    \"language_id\": 2,\n                    \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                    \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                }\n            ]\n        },\n        \"children\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"117e48cd-9dc6-41db-86e8-dfcc986037c6"},{"name":"Delete a custom field group","id":"fad2799f-9f24-4eef-88ec-4721f5a22602","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"custom_field_group_test\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Custom field Group Test\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom Field Group Test\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/custom_fields/groups/1","urlObject":{"path":["v1","custom_fields","groups","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5b4452d4-33fa-44c9-a2a8-8bad9bb6005c","name":"Create a custom field group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"custom_field_group_test\",\n    \"translations\": [\n        {\n            \"language_id\": 1,\n            \"name\": \"Custom field Group Test\"\n        },\n        {\n            \"language_id\": 2,\n            \"name\": \"Custom Field Group Test\"\n        }\n    ]\n}"},"url":"{{domain}}/v1/custom_fields/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 15:02:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"4cf460c96a4a97e2fbe1990fc46bc680d121492c\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"params\": null,\n        \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n        \"updated_at\": \"2020-10-27T15:02:11.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Custom field Group Test\",\n                    \"locale\": \"fr\",\n                    \"language_id\": 1,\n                    \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                    \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"Custom Field Group Test\",\n                    \"locale\": \"en\",\n                    \"language_id\": 2,\n                    \"created_at\": \"2020-10-27T15:02:11.000000Z\",\n                    \"updated_at\": \"2020-10-27T15:02:11.000000Z\"\n                }\n            ]\n        },\n        \"children\": {\n            \"data\": []\n        }\n    }\n}"}],"_postman_id":"fad2799f-9f24-4eef-88ec-4721f5a22602"}],"id":"2e93d781-8cc7-4745-826c-8c0397ca033e","_postman_id":"2e93d781-8cc7-4745-826c-8c0397ca033e","description":""},{"name":"Events","item":[{"name":"Events","item":[{"name":"Get all events","id":"7c4c712e-7fb2-4a9d-9cbc-fcae5ec3a2ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/1","urlObject":{"path":["v1","events","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"52dde15a-8f09-4e86-afb4-cfe5499f989b","name":"Get all events","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:27:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"d78aae4983faa3a147c1f727fb799f5b80a72cf6\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Seller registration confirmation\",\n        \"type\": \"core\",\n        \"synchronous\": 0,\n        \"module_id\": null,\n        \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n        \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n    }\n}"}],"_postman_id":"7c4c712e-7fb2-4a9d-9cbc-fcae5ec3a2ea"},{"name":"Get an event","id":"a05fda65-e854-4456-976e-688e8b9aa9c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events","urlObject":{"path":["v1","events"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cf654c9e-1173-4947-9fce-d29bae66dd24","name":"Get an event","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a05fda65-e854-4456-976e-688e8b9aa9c2"},{"name":"Get event config","id":"0bf3893e-1fab-416e-a385-0cff9cb8fe1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/config","urlObject":{"path":["v1","events","config"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1a1b4558-cc52-4667-a929-55f22a5fd5cf","name":"Get event config","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:28:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"2accc3fb05aa0c973b91fd0b5a06d74af6bd5050\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"attribute_type\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\AttributeTypeEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"attribute_type\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Attribute\\\\AttributeType\"\n            }\n        }\n    },\n    \"attribute_value\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\AttributeValueEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"attribute_value\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Attribute\\\\AttributeValue\"\n            }\n        }\n    },\n    \"configuration\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ConfigurationEvent\",\n        \"conditions\": {\n            \"update\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"configuration\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Configuration\"\n            }\n        }\n    },\n    \"category\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\CategoryEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"category\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Category\"\n            }\n        }\n    },\n    \"feature_type\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\FeatureTypeEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"feature_type\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Features\\\\FeatureType\"\n            }\n        }\n    },\n    \"feature_value\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\FeatureValueEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"feature_value\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Features\\\\FeatureValue\"\n            }\n        }\n    },\n    \"feed\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\FeedEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"moduleId\": {\n                \"trigger\": false\n            },\n            \"lastSynchronizationTime\": {\n                \"trigger\": false\n            },\n            \"mappingProvided\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"feed\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Feed\\\\Feed\"\n            }\n        }\n    },\n    \"cron\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\CronEvent\",\n        \"conditions\": {\n            \"hour\": {\n                \"trigger\": false\n            }\n        }\n    },\n    \"order_refund\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\OrderRefundEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"status\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"order_refund\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Order\\\\OrderRefund\"\n            }\n        }\n    },\n    \"order_seller\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\OrderSellerEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[order_seller.reference]\",\n                    \"id\": \"[order_seller.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[order_seller.reference]\",\n                    \"id\": \"[order_seller.id]\"\n                }\n            },\n            \"accept\": {\n                \"trigger\": true\n            },\n            \"cancel\": {\n                \"trigger\": true\n            },\n            \"refund\": {\n                \"trigger\": true\n            },\n            \"return\": {\n                \"trigger\": true\n            },\n            \"partial_refund\": {\n                \"trigger\": true\n            },\n            \"error_label_generation\": {\n                \"trigger\": true\n            },\n            \"balance\": {\n                \"trigger\": false\n            },\n            \"balanceWaiting\": {\n                \"trigger\": false\n            },\n            \"balanceDefered\": {\n                \"trigger\": false\n            },\n            \"status\": {\n                \"trigger\": false\n            },\n            \"currentStatusTime\": {\n                \"trigger\": false\n            },\n            \"oldStatus\": {\n                \"trigger\": false\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"sellerId\": {\n                \"trigger\": false\n            },\n            \"type\": {\n                \"trigger\": false\n            },\n            \"canBeTracked\": {\n                \"trigger\": false\n            },\n            \"hasNotShippingLabel\": {\n                \"trigger\": false\n            },\n            \"shippingTypeId\": {\n                \"trigger\": false\n            },\n            \"hasProductInCategoryId\": {\n                \"trigger\": false\n            },\n            \"hasNotProductInCategoryId\": {\n                \"trigger\": false\n            },\n            \"countOrderLines\": {\n                \"trigger\": false\n            },\n            \"currentStatusTimeMoreThanShippingOfferDelay\": {\n                \"trigger\": false\n            },\n            \"field\": {\n                \"trigger\": false,\n                \"params\": {\n                    \"field\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"hasOnlyProductOfferType\": {\n                \"trigger\": false\n            },\n            \"hasProductOfferType\": {\n                \"trigger\": false\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\",\n                            \"customer\"\n                        ]\n                    }\n                }\n            },\n            \"sms\": {\n                \"params\": {\n                    \"sms_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\",\n                            \"customer\"\n                        ]\n                    }\n                }\n            },\n            \"changeStatus\": {\n                \"params\": {\n                    \"state_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"changeProductStatus\": {\n                \"params\": {\n                    \"status\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"updateField\": {\n                \"params\": {\n                    \"field\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"value\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"mode\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"set\",\n                            \"subtract\",\n                            \"add\"\n                        ]\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"order_seller\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Order\\\\OrderSeller\",\n                \"aliases\": {\n                    \"give_opinion_link\": \"getGiveOpinionLink\"\n                }\n            }\n        }\n    },\n    \"payment_psp_user_group_kyc\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\PaymentPspUserGroupKycEvent\",\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"state\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"payment_psp_user_group_kyc\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Payment\\\\PaymentPspUserGroupKyc\"\n            }\n        }\n    },\n    \"payment_report\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\PaymentReportEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"state\": {\n                \"trigger\": false\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"payment_report\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Payment\\\\PaymentReport\"\n            }\n        }\n    },\n    \"payment_transaction\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\PaymentTransactionEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"type\": {\n                \"trigger\": false\n            },\n            \"hasNoOrderSeller\": {\n                \"trigger\": false\n            },\n            \"state\": {\n                \"trigger\": false\n            },\n            \"createdSince\": {\n                \"trigger\": false\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"payment_transaction\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Payment\\\\PaymentTransaction\"\n            }\n        }\n    },\n    \"product\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ProductEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product.name]\",\n                    \"id\": \"[product.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product.name]\",\n                    \"id\": \"[product.id]\"\n                }\n            },\n            \"delete\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product.name]\",\n                    \"id\": \"[product.id]\"\n                }\n            },\n            \"status\": {\n                \"trigger\": false\n            },\n            \"oldStatus\": {\n                \"trigger\": false\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"notFieldUpdated\": {\n                \"trigger\": false\n            },\n            \"createdSince\": {\n                \"trigger\": false\n            },\n            \"hasNoOffersInWarehouse\": {\n                \"trigger\": false\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\"\n                        ]\n                    }\n                }\n            },\n            \"changeStatus\": {\n                \"params\": {\n                    \"status\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"product\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Product\\\\Product\",\n                \"aliases\": {\n                    \"last_state_history_message\": \"getLastStateHistoryMessage\"\n                }\n            }\n        }\n    },\n    \"product_offer\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ProductOfferEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_offer.product.name]\",\n                    \"id\": \"[product_offer.product.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_offer.product.name]\",\n                    \"id\": \"[product_offer.product.id]\"\n                }\n            },\n            \"delete\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_offer.product.name]\",\n                    \"id\": \"[product_offer.product.id]\"\n                }\n            },\n            \"quantity\": {\n                \"trigger\": false\n            }\n        },\n        \"actions\": {\n            \"changeProductStatus\": {\n                \"params\": {\n                    \"status\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"product_offer\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Product\\\\ProductOffer\"\n            }\n        }\n    },\n    \"product_variant\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ProductVariantEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            },\n            \"delete\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            }\n        },\n        \"variables\": {\n            \"product_variant\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Product\\\\ProductVariant\"\n            }\n        }\n    },\n    \"review\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ReviewEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"type\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"review\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Review\\\\Review\"\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\",\n                            \"customer\"\n                        ]\n                    }\n                }\n            }\n        }\n    },\n    \"shipping_offer\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ShippingOfferEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            },\n            \"delete\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            }\n        },\n        \"variables\": {\n            \"shipping_offer\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Shipping\\\\ShippingOffer\"\n            }\n        }\n    },\n    \"shipping_zone\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\ShippingZoneEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"shipping_zone\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Shipping\\\\ShippingZone\"\n            }\n        }\n    },\n    \"ticket\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\TicketEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"subject\": \"[ticket.subject]\",\n                    \"id\": \"[ticket.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"subject\": \"[ticket.subject]\",\n                    \"id\": \"[ticket.id]\"\n                }\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\",\n                            \"customer\"\n                        ]\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"ticket\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Ticket\\\\Ticket\"\n            }\n        }\n    },\n    \"ticket_message\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\TicketMessageEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"subject\": \"[ticket_message.ticket.subject]\",\n                    \"id\": \"[ticket_message.ticket.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"status\": {\n                \"trigger\": false\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"current_status_time\": {\n                \"trigger\": false\n            },\n            \"hasTicketWithOrderSeller\": {\n                \"trigger\": false\n            },\n            \"senderType\": {\n                \"trigger\": false\n            },\n            \"containsWords\": {\n                \"trigger\": false\n            },\n            \"containsPhone\": {\n                \"trigger\": false\n            },\n            \"containsEmail\": {\n                \"trigger\": false\n            },\n            \"doesNotContainsWords\": {\n                \"trigger\": false\n            },\n            \"doesNotContainsPhone\": {\n                \"trigger\": false\n            },\n            \"doesNotContainsEmail\": {\n                \"trigger\": false\n            },\n            \"numberToday\": {\n                \"trigger\": false\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\",\n                            \"customer\"\n                        ]\n                    }\n                }\n            },\n            \"changeStatus\": {\n                \"params\": {\n                    \"state_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"changeTicketStatus\": {\n                \"params\": {\n                    \"status\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"updateField\": {\n                \"params\": {\n                    \"field\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"value\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"ticket_message\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Ticket\\\\TicketMessage\"\n            }\n        }\n    },\n    \"ticket_report\": {\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"subject\": \"[ticket_report.ticket.subject]\",\n                    \"id\": \"[ticket_report.ticket.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"subject\": \"[ticket_report.ticket.subject]\",\n                    \"id\": \"[ticket_report.ticket.id]\"\n                }\n            }\n        }\n    },\n    \"user\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\UserEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"hasUserGroupSeller\": {\n                \"trigger\": false\n            },\n            \"resetPassword\": {\n                \"trigger\": true\n            },\n            \"setPassword\": {\n                \"trigger\": true\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"user\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\User\\\\User\"\n            }\n        }\n    },\n    \"user_group\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\UserGroupEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[user_group.user_group_parent.name]\",\n                    \"id\": \"[user_group.user_group_parent.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[user_group.user_group_parent.name]\",\n                    \"id\": \"[user_group.user_group_parent.id]\"\n                }\n            },\n            \"delete\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[user_group.user_group_parent.name]\",\n                    \"id\": \"[user_group.user_group_parent.id]\"\n                }\n            },\n            \"send_email_validation\": {\n                \"trigger\": true\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"field\": {\n                \"trigger\": false,\n                \"params\": {\n                    \"field\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"emailValidated\": {\n                \"trigger\": false\n            },\n            \"type\": {\n                \"trigger\": false\n            },\n            \"state\": {\n                \"trigger\": false\n            },\n            \"dayNumber\": {\n                \"trigger\": false\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"user_group\",\n                            \"operator\"\n                        ]\n                    }\n                }\n            },\n            \"generatePaymentReports\": {\n                \"params\": []\n            },\n            \"updateField\": {\n                \"params\": {\n                    \"field\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"value\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"addToCustomerGroup\": {\n                \"params\": {\n                    \"customer_group_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            },\n            \"removeFromCustomerGroup\": {\n                \"params\": {\n                    \"customer_group_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    }\n                }\n            }\n        },\n        \"variables\": {\n            \"user_group\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\User\\\\UserGroup\"\n            }\n        }\n    },\n    \"user_group_bank_account\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\UserGroupBankAccountEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"user_group_bank_account\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\User\\\\UserGroupBankAccount\"\n            }\n        }\n    },\n    \"user_group_document\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\UserGroupDocumentEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            },\n            \"type\": {\n                \"trigger\": false\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"state\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"user_group_document\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\User\\\\UserGroupDocument\"\n            }\n        }\n    },\n    \"user_group_mandate\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\UserGroupBankMandateEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"fieldUpdated\": {\n                \"trigger\": false\n            },\n            \"state\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"user_group_mandate\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\User\\\\UserGroupMandate\"\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"user_group_parent\"\n                        ]\n                    }\n                }\n            }\n        }\n    },\n    \"voucher\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\VoucherEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            },\n            \"update\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            },\n            \"delete\": {\n                \"trigger\": true,\n                \"notification_template\": {\n                    \"name\": \"[product_variant.product.name]\",\n                    \"id\": \"[product_variant.product.id]\"\n                }\n            }\n        },\n        \"variables\": {\n            \"voucher\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Voucher\\\\Voucher\"\n            }\n        }\n    },\n    \"warehouse\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\WarehouseEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"delete\": {\n                \"trigger\": true\n            }\n        },\n        \"variables\": {\n            \"warehouse\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Warehouse\\\\Warehouse\"\n            }\n        }\n    },\n    \"warehouse_fulfillment\": {\n        \"gateway\": \"App\\\\Api\\\\Core\\\\Services\\\\Event\\\\WarehouseFulfillmentEvent\",\n        \"conditions\": {\n            \"create\": {\n                \"trigger\": true\n            },\n            \"update\": {\n                \"trigger\": true\n            },\n            \"status\": {\n                \"trigger\": false\n            }\n        },\n        \"variables\": {\n            \"warehouse_fulfillment\": {\n                \"gateway\": \"App\\\\Api\\\\Core\\\\Models\\\\Warehouse\\\\WarehouseFulfillment\"\n            }\n        },\n        \"actions\": {\n            \"mail\": {\n                \"params\": {\n                    \"mail_template_id\": {\n                        \"required\": true,\n                        \"type\": \"input\"\n                    },\n                    \"recipient\": {\n                        \"type\": \"enum\",\n                        \"values\": [\n                            \"seller\",\n                            \"operator\"\n                        ]\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0bf3893e-1fab-416e-a385-0cff9cb8fe1d"},{"name":"Create an event","id":"766b90f9-eb75-4908-a2d4-ac88058e6a95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Event test\",\n    \"type\": \"core\",\n    \"synchronous\": false\n}"},"url":"{{domain}}/v1/events","urlObject":{"path":["v1","events"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cabe9c31-df93-450e-9648-4ff5686ef361","name":"Create an event","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Event test\",\n    \"type\": \"core\",\n    \"synchronous\": false\n}"},"url":"{{domain}}/v1/events"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:34:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"05a0c32936822e8f1506055f4787ac5781aaf1fd\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 66,\n        \"name\": \"Event test\",\n        \"type\": \"core\",\n        \"synchronous\": 0,\n        \"module_id\": null,\n        \"created_at\": \"2020-10-28T08:34:22.000000Z\",\n        \"updated_at\": \"2020-10-28T08:34:22.000000Z\"\n    }\n}"}],"_postman_id":"766b90f9-eb75-4908-a2d4-ac88058e6a95"},{"name":"Update an event","id":"5bc9e229-4bc9-4842-ad34-e1b2b76649ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Event test\",\n    \"type\": \"core\",\n    \"synchronous\": false\n}"},"url":"{{domain}}/v1/events/66","urlObject":{"path":["v1","events","66"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"93cfb8e7-ef38-448d-9d10-c1028399cc86","name":"Update an event","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Event test\",\n    \"type\": \"core\",\n    \"synchronous\": false\n}"},"url":"{{domain}}/v1/events/66"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:35:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5bc9e229-4bc9-4842-ad34-e1b2b76649ea"},{"name":"Delete an event","id":"dd705f8b-4f2e-4d13-8fce-b06ff1e1b79f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/65","urlObject":{"path":["v1","events","65"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"06cccbdd-e54d-4d79-afbc-134ab010a409","name":"Delete an event","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/65"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:37:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null},{"id":"791e2e51-7060-472c-b059-546c381292f6","name":"Update an event ","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/65"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:37:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dd705f8b-4f2e-4d13-8fce-b06ff1e1b79f"}],"id":"751c9bb7-c7d7-4732-b1e9-292e7a308ace","_postman_id":"751c9bb7-c7d7-4732-b1e9-292e7a308ace","description":""},{"name":"Event Actions","item":[{"name":"Get an event action","id":"3dff8c9b-6481-4c89-a2d2-714140563d5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/actions/1","urlObject":{"path":["v1","events","actions","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d86f4963-5cdb-4a3f-9457-05fee6ac85d3","name":"Get an event action","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/actions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:41:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"ef77e41da762c37b51c30b7a3c8b9bf9e5f32d07\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"user_group.mail\",\n        \"params\": {\n            \"recipient\": \"user_group\",\n            \"mail_template_id\": 1\n        },\n        \"user_id\": null,\n        \"event_id\": 1,\n        \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n        \"updated_at\": \"2020-08-10T13:37:51.000000Z\",\n        \"recurrence\": \"once\"\n    }\n}"}],"_postman_id":"3dff8c9b-6481-4c89-a2d2-714140563d5c"},{"name":"Get event action config","id":"174084ba-43ed-48f2-8339-536dfd8314e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/actions/config","urlObject":{"path":["v1","events","actions","config"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3afd25b4-d1b7-40c6-b81f-11f7c5d19383","name":"Get event action config","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/actions/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:46:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"a9d689ddb3304eac1581d0164f544afd5065566f\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"mail\": {\n        \"params\": {\n            \"mail_template_id\": {\n                \"required\": true,\n                \"type\": \"input\"\n            }\n        }\n    },\n    \"notification\": {\n        \"params\": {\n            \"message\": {\n                \"required\": true,\n                \"type\": \"input\"\n            },\n            \"callback\": {\n                \"required\": false,\n                \"type\": \"input\"\n            }\n        }\n    },\n    \"sms\": {\n        \"params\": []\n    },\n    \"call\": {\n        \"params\": []\n    },\n    \"callback\": {\n        \"params\": {\n            \"class\": {\n                \"required\": true,\n                \"type\": \"input\"\n            },\n            \"method\": {\n                \"required\": true,\n                \"type\": \"input\"\n            }\n        }\n    },\n    \"callUrl\": {\n        \"params\": {\n            \"url\": {\n                \"required\": true,\n                \"type\": \"input\"\n            }\n        }\n    }\n}"}],"_postman_id":"174084ba-43ed-48f2-8339-536dfd8314e5"},{"name":"Create an event action","id":"3e4f71b2-91ad-410f-92ce-fdb7c17d4edd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 64,\n    \"type\": \"global.mail\",\n    \"params\": {\n        \"mail_template_id\": 1\n    },\n    \"recurrence\": \"once\"\n}"},"url":"{{domain}}/v1/events/actions","urlObject":{"path":["v1","events","actions"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c981fd8a-80a9-4565-a310-347e575936a8","name":"Create an event action","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 64,\n    \"type\": \"global.mail\",\n    \"params\": {\n        \"mail_template_id\": 1\n    },\n    \"recurrence\": \"once\"\n}"},"url":"{{domain}}/v1/events/actions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:44:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"9415165808074686dc13fe8385d66af5c56064fa\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 68,\n        \"type\": \"global.mail\",\n        \"params\": {\n            \"mail_template_id\": 1\n        },\n        \"user_id\": null,\n        \"event_id\": 64,\n        \"created_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"updated_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"recurrence\": \"once\"\n    }\n}"}],"_postman_id":"3e4f71b2-91ad-410f-92ce-fdb7c17d4edd"},{"name":"Update an event action","id":"5b77d92b-b1bc-4e82-89ed-7490aa5f5ea0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 64,\n    \"type\": \"global.mail\",\n    \"params\": {\n        \"mail_template_id\": 1\n    },\n    \"recurrence\": \"once\"\n}"},"url":"{{domain}}/v1/events/actions/68","urlObject":{"path":["v1","events","actions","68"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c7f2f37e-846a-4c46-b486-6dc7cd1678b3","name":"Update an event action","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 64,\n    \"type\": \"global.mail\",\n    \"params\": {\n        \"mail_template_id\": 1\n    },\n    \"recurrence\": \"once\"\n}"},"url":"{{domain}}/v1/events/actions/68"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:44:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"9415165808074686dc13fe8385d66af5c56064fa\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 68,\n        \"type\": \"global.mail\",\n        \"params\": {\n            \"mail_template_id\": 1\n        },\n        \"user_id\": null,\n        \"event_id\": 64,\n        \"created_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"updated_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"recurrence\": \"once\"\n    }\n}"}],"_postman_id":"5b77d92b-b1bc-4e82-89ed-7490aa5f5ea0"},{"name":"Delete an event action","id":"e3102365-2b3e-449c-bed6-bab6068a73b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/actions/68","urlObject":{"path":["v1","events","actions","68"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"850ea826-d891-4100-8f09-facea0717f00","name":"Update an event action","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 64,\n    \"type\": \"global.mail\",\n    \"params\": {\n        \"mail_template_id\": 1\n    },\n    \"recurrence\": \"once\"\n}"},"url":"{{domain}}/v1/events/actions/68"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:44:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"9415165808074686dc13fe8385d66af5c56064fa\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 68,\n        \"type\": \"global.mail\",\n        \"params\": {\n            \"mail_template_id\": 1\n        },\n        \"user_id\": null,\n        \"event_id\": 64,\n        \"created_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"updated_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"recurrence\": \"once\"\n    }\n}"}],"_postman_id":"e3102365-2b3e-449c-bed6-bab6068a73b4"}],"id":"b63cd587-a38a-4c7a-bb62-b076ec721201","_postman_id":"b63cd587-a38a-4c7a-bb62-b076ec721201","description":""},{"name":"Event Conditions","item":[{"name":"Get an event condition","id":"c605905b-4c12-4553-bec4-1c7132a07ef3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/conditions/1","urlObject":{"path":["v1","events","conditions","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"80dd2713-efab-4542-8104-6af29bf21315","name":"Get an event condition","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/events/conditions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:48:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"a398dc0fa6e7d6f4d603c1791e5d4b3e58dbc1e9\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"user_group.update\",\n        \"operator\": null,\n        \"value\": null,\n        \"params\": null,\n        \"event_condition_group_id\": 1,\n        \"created_at\": \"2020-08-10T13:37:51.000000Z\",\n        \"updated_at\": \"2020-08-10T13:37:51.000000Z\"\n    }\n}"}],"_postman_id":"c605905b-4c12-4553-bec4-1c7132a07ef3"},{"name":"Create an event condition","id":"30ebf0de-a3a0-448c-a42b-0777f88ac5a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_condition_group_id\": 1,\n    \"type\": \"user_group.update\",\n    \"operator\": null,\n    \"value\": null\n}"},"url":"{{domain}}/v1/events/conditions","urlObject":{"path":["v1","events","conditions"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3bc24b2b-e12d-432e-b79b-47ede8cbab97","name":"Create an event condition","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_condition_group_id\": 1,\n    \"type\": \"user_group.update\",\n    \"operator\": null,\n    \"value\": null\n}"},"url":"{{domain}}/v1/events/conditions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:54:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"2102d5681d3d36b37d97b126fc34213158115565\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 90,\n        \"type\": \"user_group.update\",\n        \"operator\": null,\n        \"value\": null,\n        \"params\": null,\n        \"event_condition_group_id\": 1,\n        \"created_at\": \"2020-10-28T08:54:08.000000Z\",\n        \"updated_at\": \"2020-10-28T08:54:08.000000Z\"\n    }\n}"}],"_postman_id":"30ebf0de-a3a0-448c-a42b-0777f88ac5a9"},{"name":"Update an event condition","id":"3093b664-31c5-42ff-8963-28e8139364f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_condition_group_id\": 1,\n    \"type\": \"user_group.update\",\n    \"operator\": null,\n    \"value\": null\n}"},"url":"{{domain}}/v1/events/conditions/90","urlObject":{"path":["v1","events","conditions","90"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b27dd7fd-cdf9-4f65-a204-305580ed1745","name":"Update an event condition","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_condition_group_id\": 1,\n    \"type\": \"user_group.update\",\n    \"operator\": null,\n    \"value\": null\n}"},"url":"{{domain}}/v1/events/conditions/90"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3093b664-31c5-42ff-8963-28e8139364f0"},{"name":"Delete an event condition","id":"6bf58d8d-bbbd-4a4d-b13e-bef525b98218","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/events/conditions/90","urlObject":{"path":["v1","events","conditions","90"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"775c10a5-6516-439c-bf9c-cef0782b38d0","name":"Update an event action","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 64,\n    \"type\": \"global.mail\",\n    \"params\": {\n        \"mail_template_id\": 1\n    },\n    \"recurrence\": \"once\"\n}"},"url":"{{domain}}/v1/events/actions/68"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 08:44:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"9415165808074686dc13fe8385d66af5c56064fa\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 68,\n        \"type\": \"global.mail\",\n        \"params\": {\n            \"mail_template_id\": 1\n        },\n        \"user_id\": null,\n        \"event_id\": 64,\n        \"created_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"updated_at\": \"2020-10-28T08:44:03.000000Z\",\n        \"recurrence\": \"once\"\n    }\n}"}],"_postman_id":"6bf58d8d-bbbd-4a4d-b13e-bef525b98218"}],"id":"5856dc7d-6221-4416-ac31-ec3f23e8a150","_postman_id":"5856dc7d-6221-4416-ac31-ec3f23e8a150","description":""},{"name":"Event Condition Groups","item":[{"name":"Create an event condition group","id":"9ffd53b9-4952-486f-abd5-d897141d6b33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 1 \n}"},"url":"{{domain}}/v1/events/conditions/groups","urlObject":{"path":["v1","events","conditions","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"131c56e0-17a0-4f3d-ba70-1a665891185a","name":"Create an event condition group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 1 \n}"},"url":"{{domain}}/v1/events/conditions/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:06:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"4fffd78de254f230c146357d7abeeb7851ffbf21\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 69,\n        \"event_id\": 1,\n        \"created_at\": \"2020-10-28T09:06:29.000000Z\",\n        \"updated_at\": \"2020-10-28T09:06:29.000000Z\"\n    }\n}"}],"_postman_id":"9ffd53b9-4952-486f-abd5-d897141d6b33"},{"name":"Delete an event condition group","id":"c0939754-2f11-4185-8971-537e56fd5439","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 1 \n}"},"url":"{{domain}}/v1/events/conditions/groups/69","urlObject":{"path":["v1","events","conditions","groups","69"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0e581699-9421-4696-a3bc-41e7f90d1e21","name":"Delete an event condition group","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event_id\": 1 \n}"},"url":"{{domain}}/v1/events/conditions/groups/69"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 09:07:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c0939754-2f11-4185-8971-537e56fd5439"}],"id":"bd670f34-90b2-45aa-9f03-c96ab66b39a2","_postman_id":"bd670f34-90b2-45aa-9f03-c96ab66b39a2","description":""}],"id":"f1a426e8-3184-45cd-90ab-e5c71b6386d9","_postman_id":"f1a426e8-3184-45cd-90ab-e5c71b6386d9","description":""},{"name":"Modules","item":[{"name":"Get all installed modules","id":"82438a83-0ddf-44f2-b6c3-204a55328b0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules","urlObject":{"path":["v1","modules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"902d2464-482e-4345-9526-2d58fcb6217d","name":"Get all installed modules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:22:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"279005b632163d5e21a97dd75a7e2b8e45c0db73\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"prestashop\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"api_url\": \"https://staging.origami-marketplace.com/module/origami/api\",\n                \"api_token\": \"testBiked2020\",\n                \"seller_page\": null,\n                \"tax_mapping\": {\n                    \"1\": \"1\"\n                },\n                \"state_mapping\": {\n                    \"1\": \"0\"\n                },\n                \"user_password\": \"cdc0rigami2020#\",\n                \"wear_feature_id\": null,\n                \"brand_feature_id\": null,\n                \"default_category\": null,\n                \"product_mainCategory\": null,\n                \"seller_parentCategory\": null,\n                \"shipping_zone_mapping\": {\n                    \"1\": \"1\"\n                },\n                \"product_deleted_states\": null,\n                \"seller_tos_validation_required\": null\n            },\n            \"type\": \"front_connector\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Prestashop\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/prestashop_logo.png\",\n            \"available_configurations\": {\n                \"api_token\": {\n                    \"value\": \"api_token\",\n                    \"description\": \"Security key between Origami and the SCS\",\n                    \"required\": true\n                },\n                \"user_password\": {\n                    \"type\": \"input\",\n                    \"description\": \"Api connector user password\",\n                    \"required\": true\n                },\n                \"api_url\": {\n                    \"description\": \"Front API URL\",\n                    \"required\": true\n                },\n                \"seller_parentCategory\": {\n                    \"description\": \"Parent category where sellers are created\"\n                },\n                \"seller_tos_validation_required\": {\n                    \"value\": \"not-required\",\n                    \"description\": \"Define if the customers have to validate all sellers ToS separately\",\n                    \"type\": \"select\",\n                    \"values\": [\n                        \"required\",\n                        \"not-required\"\n                    ]\n                },\n                \"product_mainCategory\": {\n                    \"value\": \"main-category\",\n                    \"description\": \"Define the main category of the product. \\\"main-category\\\" for the selected main category, or \\\"seller-default-offer\\\" to set as the main category the seller category.\",\n                    \"type\": \"select\",\n                    \"values\": [\n                        \"main-category\",\n                        \"seller-default-offer\"\n                    ]\n                },\n                \"product_deleted_states\": {\n                    \"description\": \"Product deleted state id\",\n                    \"editable\": true\n                },\n                \"state_mapping\": {\n                    \"description\": \"Match order states between Origami and Prestashop\",\n                    \"editable\": false\n                },\n                \"shipping_zone_mapping\": {\n                    \"description\": \"Match shipping zones between Origami and Prestashop\",\n                    \"editable\": false\n                },\n                \"tax_mapping\": {\n                    \"description\": \"Match taxes between Origami and Prestashop\",\n                    \"editable\": false\n                },\n                \"brand_feature_id\": {\n                    \"description\": \"id of the marketplace brand feature\",\n                    \"editable\": true\n                },\n                \"wear_feature_id\": {\n                    \"description\": \"id of the marketplace wear feature\",\n                    \"editable\": true\n                },\n                \"default_category\": {\n                    \"description\": \"id of the marketplace default category\",\n                    \"editable\": true\n                },\n                \"seller_page\": {\n                    \"value\": \"main-category\",\n                    \"description\": \"Method to create the seller page in Prestashop : No seller page / Ps category / Ps supplier / Origami module page\",\n                    \"type\": \"select\",\n                    \"values\": [\n                        \"none\",\n                        \"category\",\n                        \"supplier\",\n                        \"module\"\n                    ]\n                }\n            },\n            \"created_at\": \"2020-09-14T14:56:07.000000Z\",\n            \"updated_at\": \"2020-09-14T15:01:56.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 2,\n            \"name\": \"mangopay\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"base_url\": \"https://api.sandbox.mangopay.com\",\n                \"client_id\": \"origami_sandbox\",\n                \"client_password\": \"RefN4wgPDF5AVvsSYeqCbwfOXiLAePCdpuUGOXzymCSRyiLRgO\",\n                \"payment_methods\": [\n                    \"PREAUTH\"\n                ],\n                \"operator_user_id\": \"23456789\",\n                \"operator_wallet_id\": \"2345678\",\n                \"payment_methods_PREAUTH_capture_method\": null\n            },\n            \"type\": \"escrow_payment\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Mangopay\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/mangopay.jpg\",\n            \"available_configurations\": {\n                \"payment_methods\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": {\n                        \"PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"TRANSFER_PAYMENT_SHOP\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"PREAUTH\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            },\n                            \"capture_method\": {\n                                \"type\": \"select\",\n                                \"values\": [\n                                    \"EXTERNAL\",\n                                    \"INTERNAL\"\n                                ],\n                                \"value\": \"INTERNAL\"\n                            }\n                        },\n                        \"BANK_WIRE\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"DEBIT_AGREEMENT\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"GIFT_CARD_PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        }\n                    }\n                },\n                \"client_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"client_password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"base_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"operator_user_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"operator_wallet_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": \"2020-09-16T08:53:36.000000Z\",\n            \"updated_at\": \"2020-10-21T16:34:11.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"csv_feed\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"synchronization_interval\": \"60\"\n            },\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"CSV feed\",\n            \"description\": \"Module for csv catalog import\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/csv.png\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": \"2020-09-29T08:27:11.000000Z\",\n            \"updated_at\": \"2020-09-29T08:27:11.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 5,\n            \"name\": \"paysurf\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"payment_methods\": [\n                    \"PAYIN\"\n                ],\n                \"payment_methods_PREAUTH_capture_method\": null\n            },\n            \"type\": \"escrow_payment\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Paysurf\",\n            \"description\": \"Module for Paysurf\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/paysurf.png\",\n            \"available_configurations\": {\n                \"payment_methods\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": {\n                        \"PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"TRANSFER_PAYMENT_SHOP\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"PREAUTH\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            },\n                            \"capture_method\": {\n                                \"type\": \"select\",\n                                \"values\": [\n                                    \"EXTERNAL\",\n                                    \"INTERNAL\"\n                                ],\n                                \"value\": \"INTERNAL\"\n                            }\n                        },\n                        \"BANK_WIRE\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"DEBIT_AGREEMENT\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"GIFT_CARD_PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        }\n                    }\n                }\n            },\n            \"created_at\": \"2020-10-02T13:05:06.000000Z\",\n            \"updated_at\": \"2020-10-02T13:05:06.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 6,\n            \"name\": \"accounting_export\",\n            \"current_version\": \"1.0\",\n            \"configurations\": [],\n            \"type\": \"accounting\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Accounting Export\",\n            \"description\": \"Module for Accounting Export\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/accounting.png\",\n            \"available_configurations\": [],\n            \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"updated_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"deleted_at\": null\n        }\n    ]\n}"}],"_postman_id":"82438a83-0ddf-44f2-b6c3-204a55328b0c"},{"name":"Get all available modules","id":"2b4c2a70-a24b-426d-9066-d47bdd6f0dbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/available","urlObject":{"path":["v1","modules","available"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cda4baf2-6a4c-4bdd-acaf-2443d99f26b9","name":"Get all available modules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/available"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:22:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"95b461c1d462ce8673a613ce37dc098c1360252b\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 6,\n            \"name\": \"accounting_export\",\n            \"current_version\": \"1.0\",\n            \"configurations\": [],\n            \"type\": \"accounting\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Accounting Export\",\n            \"description\": \"Module for Accounting Export\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/accounting.png\",\n            \"available_configurations\": [],\n            \"created_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"updated_at\": \"2020-10-23T13:45:12.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"beezup\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Beezup\",\n            \"description\": \"Module for Beezup\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/beezup_logo.jpg\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"boxtal\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"shipping\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Boxtal\",\n            \"description\": \"Module for Boxtal\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/boxtal.jpg\",\n            \"available_configurations\": {\n                \"mode\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"user\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"key\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"eligible_states\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        \"created\",\n                        \"En cours\",\n                        \"OK\",\n                        \"payment_error\",\n                        \"payment_validated\",\n                        \"payment_waiting\"\n                    ]\n                },\n                \"order_state_to_track\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        \"created\",\n                        \"En cours\",\n                        \"OK\",\n                        \"payment_error\",\n                        \"payment_validated\",\n                        \"payment_waiting\"\n                    ]\n                },\n                \"eligible_shipping_type\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        1\n                    ]\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"csv_feed\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"synchronization_interval\": \"60\"\n            },\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"CSV feed\",\n            \"description\": \"Module for csv catalog import\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/csv.png\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": \"2020-09-29T08:27:11.000000Z\",\n            \"updated_at\": \"2020-09-29T08:27:11.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"cheque\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"payment\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Cheque\",\n            \"description\": \"Module for cheque\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/cheque.png\",\n            \"available_configurations\": {\n                \"payment_methods\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": {\n                        \"PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"TRANSFER_PAYMENT_SHOP\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"PREAUTH\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            },\n                            \"capture_method\": {\n                                \"type\": \"select\",\n                                \"values\": [\n                                    \"EXTERNAL\",\n                                    \"INTERNAL\"\n                                ],\n                                \"value\": \"INTERNAL\"\n                            }\n                        },\n                        \"BANK_WIRE\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"DEBIT_AGREEMENT\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"GIFT_CARD_PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        }\n                    }\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"colissimo_suivi\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"shipping\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Colissimo Suivi\",\n            \"description\": \"Module for Colissimo Suivi\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/colissimo_logo.jpg\",\n            \"available_configurations\": {\n                \"api_key\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"shipping_type_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"order_state_to_track\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        \"created\",\n                        \"En cours\",\n                        \"OK\",\n                        \"payment_error\",\n                        \"payment_validated\",\n                        \"payment_waiting\"\n                    ]\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"diatly\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Diatly\",\n            \"description\": \"Module for Diatly\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/diatly_logo.jpg\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"example_custom_field\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"custom_fields\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Example custom field module\",\n            \"description\": \"Custom field module example\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/origami_dashboard_logo.png\",\n            \"available_configurations\": [],\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"freightos\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"shipping\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Freightos\",\n            \"description\": \"Module for freightos\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/freightos.png\",\n            \"available_configurations\": [],\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"google_shopping\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Google Shopping\",\n            \"description\": \"Module for Google Shopping\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/google_shopping_logo.png\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"hipay\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"escrow_payment\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Hipay\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/hipay.jpg\",\n            \"available_configurations\": {\n                \"payment_methods\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": {\n                        \"PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"TRANSFER_PAYMENT_SHOP\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"PREAUTH\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            },\n                            \"capture_method\": {\n                                \"type\": \"select\",\n                                \"values\": [\n                                    \"EXTERNAL\",\n                                    \"INTERNAL\"\n                                ],\n                                \"value\": \"INTERNAL\"\n                            }\n                        },\n                        \"BANK_WIRE\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"DEBIT_AGREEMENT\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"GIFT_CARD_PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        }\n                    }\n                },\n                \"entreprise_api_login\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"entreprise_api_password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"marketplace_api_login\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"marketplace_api_password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"environment\": {\n                    \"type\": \"select\",\n                    \"required\": true,\n                    \"values\": [\n                        \"production\",\n                        \"stage\"\n                    ]\n                },\n                \"api_secret_passphrase\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"operator_account_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"operator_account_login\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"iziflux\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Iziflux\",\n            \"description\": \"Module for iziflux\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/iziflux_logo.png\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"lengow\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Lengow\",\n            \"description\": \"Module for Lengow\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/lengow_logo.jpg\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"mail_gun\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"communication\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Mailgun inbound email\",\n            \"description\": \"Module for inbound email\",\n            \"image\": \"\",\n            \"available_configurations\": [],\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 2,\n            \"name\": \"mangopay\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"base_url\": \"https://api.sandbox.mangopay.com\",\n                \"client_id\": \"origami_sandbox\",\n                \"client_password\": \"RefN4wgPDF5AVvsSYeqCbwfOXiLAePCdpuUGOXzymCSRyiLRgO\",\n                \"payment_methods\": [\n                    \"PREAUTH\"\n                ],\n                \"operator_user_id\": \"23456789\",\n                \"operator_wallet_id\": \"2345678\",\n                \"payment_methods_PREAUTH_capture_method\": null\n            },\n            \"type\": \"escrow_payment\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Mangopay\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/mangopay.jpg\",\n            \"available_configurations\": {\n                \"payment_methods\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": {\n                        \"PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"TRANSFER_PAYMENT_SHOP\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"PREAUTH\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            },\n                            \"capture_method\": {\n                                \"type\": \"select\",\n                                \"values\": [\n                                    \"EXTERNAL\",\n                                    \"INTERNAL\"\n                                ],\n                                \"value\": \"INTERNAL\"\n                            }\n                        },\n                        \"BANK_WIRE\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"DEBIT_AGREEMENT\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"GIFT_CARD_PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        }\n                    }\n                },\n                \"client_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"client_password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"base_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"operator_user_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"operator_wallet_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": \"2020-09-16T08:53:36.000000Z\",\n            \"updated_at\": \"2020-10-21T16:34:11.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"origami_dashboard\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"metrics\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Origami Dashboard\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/origami_dashboard_logo.png\",\n            \"available_configurations\": {\n                \"client_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"user_password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"origami_vendor\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Origami Vendor\",\n            \"description\": \"Module for Origami Vendor\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/origami_dashboard_logo.png\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 5,\n            \"name\": \"paysurf\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"payment_methods\": [\n                    \"PAYIN\"\n                ],\n                \"payment_methods_PREAUTH_capture_method\": null\n            },\n            \"type\": \"escrow_payment\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Paysurf\",\n            \"description\": \"Module for Paysurf\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/paysurf.png\",\n            \"available_configurations\": {\n                \"payment_methods\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": {\n                        \"PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"TRANSFER_PAYMENT_SHOP\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"PREAUTH\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            },\n                            \"capture_method\": {\n                                \"type\": \"select\",\n                                \"values\": [\n                                    \"EXTERNAL\",\n                                    \"INTERNAL\"\n                                ],\n                                \"value\": \"INTERNAL\"\n                            }\n                        },\n                        \"BANK_WIRE\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"DEBIT_AGREEMENT\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        },\n                        \"GIFT_CARD_PAYIN\": {\n                            \"customer_group_id\": {\n                                \"type\": \"multiple\",\n                                \"values\": [\n                                    1,\n                                    2\n                                ]\n                            }\n                        }\n                    }\n                }\n            },\n            \"created_at\": \"2020-10-02T13:05:06.000000Z\",\n            \"updated_at\": \"2020-10-02T13:05:06.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": 1,\n            \"name\": \"prestashop\",\n            \"current_version\": \"1.0\",\n            \"configurations\": {\n                \"api_url\": \"https://staging.origami-marketplace.com/module/origami/api\",\n                \"api_token\": \"testBiked2020\",\n                \"seller_page\": null,\n                \"tax_mapping\": {\n                    \"1\": \"1\"\n                },\n                \"state_mapping\": {\n                    \"1\": \"0\"\n                },\n                \"user_password\": \"cdc0rigami2020#\",\n                \"wear_feature_id\": null,\n                \"brand_feature_id\": null,\n                \"default_category\": null,\n                \"product_mainCategory\": null,\n                \"seller_parentCategory\": null,\n                \"shipping_zone_mapping\": {\n                    \"1\": \"1\"\n                },\n                \"product_deleted_states\": null,\n                \"seller_tos_validation_required\": null\n            },\n            \"type\": \"front_connector\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Prestashop\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/prestashop_logo.png\",\n            \"available_configurations\": {\n                \"api_token\": {\n                    \"value\": \"api_token\",\n                    \"description\": \"Security key between Origami and the SCS\",\n                    \"required\": true\n                },\n                \"user_password\": {\n                    \"type\": \"input\",\n                    \"description\": \"Api connector user password\",\n                    \"required\": true\n                },\n                \"api_url\": {\n                    \"description\": \"Front API URL\",\n                    \"required\": true\n                },\n                \"seller_parentCategory\": {\n                    \"description\": \"Parent category where sellers are created\"\n                },\n                \"seller_tos_validation_required\": {\n                    \"value\": \"not-required\",\n                    \"description\": \"Define if the customers have to validate all sellers ToS separately\",\n                    \"type\": \"select\",\n                    \"values\": [\n                        \"required\",\n                        \"not-required\"\n                    ]\n                },\n                \"product_mainCategory\": {\n                    \"value\": \"main-category\",\n                    \"description\": \"Define the main category of the product. \\\"main-category\\\" for the selected main category, or \\\"seller-default-offer\\\" to set as the main category the seller category.\",\n                    \"type\": \"select\",\n                    \"values\": [\n                        \"main-category\",\n                        \"seller-default-offer\"\n                    ]\n                },\n                \"product_deleted_states\": {\n                    \"description\": \"Product deleted state id\",\n                    \"editable\": true\n                },\n                \"state_mapping\": {\n                    \"description\": \"Match order states between Origami and Prestashop\",\n                    \"editable\": false\n                },\n                \"shipping_zone_mapping\": {\n                    \"description\": \"Match shipping zones between Origami and Prestashop\",\n                    \"editable\": false\n                },\n                \"tax_mapping\": {\n                    \"description\": \"Match taxes between Origami and Prestashop\",\n                    \"editable\": false\n                },\n                \"brand_feature_id\": {\n                    \"description\": \"id of the marketplace brand feature\",\n                    \"editable\": true\n                },\n                \"wear_feature_id\": {\n                    \"description\": \"id of the marketplace wear feature\",\n                    \"editable\": true\n                },\n                \"default_category\": {\n                    \"description\": \"id of the marketplace default category\",\n                    \"editable\": true\n                },\n                \"seller_page\": {\n                    \"value\": \"main-category\",\n                    \"description\": \"Method to create the seller page in Prestashop : No seller page / Ps category / Ps supplier / Origami module page\",\n                    \"type\": \"select\",\n                    \"values\": [\n                        \"none\",\n                        \"category\",\n                        \"supplier\",\n                        \"module\"\n                    ]\n                }\n            },\n            \"created_at\": \"2020-09-14T14:56:07.000000Z\",\n            \"updated_at\": \"2020-09-14T15:01:56.000000Z\",\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"send_cloud\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"shipping\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"SendCloud\",\n            \"description\": \"Module for SendCloud\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/boxtal.jpg\",\n            \"available_configurations\": {\n                \"user\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"password\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"eligible_states\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        \"created\",\n                        \"En cours\",\n                        \"OK\",\n                        \"payment_error\",\n                        \"payment_validated\",\n                        \"payment_waiting\"\n                    ]\n                },\n                \"order_state_to_track\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        \"created\",\n                        \"En cours\",\n                        \"OK\",\n                        \"payment_error\",\n                        \"payment_validated\",\n                        \"payment_waiting\"\n                    ]\n                },\n                \"eligible_shipping_type\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        1\n                    ]\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"shopping_feed\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"feed\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Shipping Feed\",\n            \"description\": \"Module for shipping feed\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/shopping_flux_logo.jpg\",\n            \"available_configurations\": {\n                \"synchronization_interval\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"tenup\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"authentication\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Tenup\",\n            \"description\": \"Module for Tenup authentication\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/tenup.png\",\n            \"available_configurations\": {\n                \"base_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"client_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"client_secret\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"redirect_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"api_base_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"licencie_customer_group_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"club_customer_group_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"ligue_customer_group_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"comite_customer_group_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"dom_tom_customer_group_id\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"twilio\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"communication\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Twilio\",\n            \"description\": \"Lorem Ipsum\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/twilio.png\",\n            \"available_configurations\": {\n                \"account_sid\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"auth_token\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"abilities\": {\n                    \"type\": \"multiple\",\n                    \"required\": true,\n                    \"values\": [\n                        \"sendSms\",\n                        \"call\"\n                    ]\n                },\n                \"redirect_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"api_base_url\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        },\n        {\n            \"id\": null,\n            \"name\": \"withdrawal_point\",\n            \"current_version\": null,\n            \"configurations\": null,\n            \"type\": \"shipping\",\n            \"version\": \"1.0\",\n            \"author\": \"Origami Marketplace\",\n            \"display_name\": \"Withdrawal point\",\n            \"description\": \"Withdrawal point module\",\n            \"image\": \"http://api.staging.origami-marketplace.com/v1/static/img/withdrawal_point.png\",\n            \"available_configurations\": {\n                \"general_google_api_key\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                },\n                \"distance_limit\": {\n                    \"type\": \"input\",\n                    \"required\": true\n                }\n            },\n            \"created_at\": null,\n            \"updated_at\": null,\n            \"deleted_at\": null\n        }\n    ]\n}"}],"_postman_id":"2b4c2a70-a24b-426d-9066-d47bdd6f0dbe"},{"name":"Get an installed module","id":"9696fea6-d2ef-4dab-9f06-4ebc281bf559","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/{{id}}","urlObject":{"path":["v1","modules","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"752864dd-c9ab-4241-a187-b2b4833a3b37","name":"Get a custom field","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:37:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"0a108dbc1b3332b0c812d62de59d2c05dae99b6a\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"key\": \"test\",\n        \"type\": \"multiple\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\",\n                \"bar\",\n                \"toto\",\n                \"bar\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"updated_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Test select\",\n                    \"language_id\": 1,\n                    \"description\": \"Test select\",\n                    \"locale\": \"fr\",\n                    \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n                    \"updated_at\": \"2020-10-22T15:29:03.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"9696fea6-d2ef-4dab-9f06-4ebc281bf559"},{"name":"Install Filerobot","id":"a1cf7b31-a605-4dd1-8923-ac31e8990fbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"file_robot\",\n        \"configurations\": {\n            \"file_robot_user\": \"test\",\n            \"file_robot_secret_key\": \"test2\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/modules","urlObject":{"path":["v1","modules"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8f485435-efa4-41c8-8d4e-2af28a74411b","name":"Get a custom field","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:37:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"0a108dbc1b3332b0c812d62de59d2c05dae99b6a\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"key\": \"test\",\n        \"type\": \"multiple\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\",\n                \"bar\",\n                \"toto\",\n                \"bar\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"updated_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Test select\",\n                    \"language_id\": 1,\n                    \"description\": \"Test select\",\n                    \"locale\": \"fr\",\n                    \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n                    \"updated_at\": \"2020-10-22T15:29:03.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"a1cf7b31-a605-4dd1-8923-ac31e8990fbd"},{"name":"Delete a module","id":"9549cf74-abfb-423e-bd46-19f248cefde8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/{{id}}","urlObject":{"path":["v1","modules","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8c616aa7-918c-4ebf-8a52-4f86ddc2194b","name":"Get a custom field","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/custom_fields/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 27 Oct 2020 13:37:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"0a108dbc1b3332b0c812d62de59d2c05dae99b6a\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"key\": \"test\",\n        \"type\": \"multiple\",\n        \"model_type\": \"seller\",\n        \"custom_field_group_id\": null,\n        \"params\": {\n            \"values\": [\n                \"foo\",\n                \"bar\",\n                \"toto\",\n                \"bar\"\n            ]\n        },\n        \"private\": 0,\n        \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"updated_at\": \"2020-10-22T15:29:03.000000Z\",\n        \"translations\": {\n            \"data\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Test select\",\n                    \"language_id\": 1,\n                    \"description\": \"Test select\",\n                    \"locale\": \"fr\",\n                    \"created_at\": \"2020-10-22T15:29:03.000000Z\",\n                    \"updated_at\": \"2020-10-22T15:29:03.000000Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"9549cf74-abfb-423e-bd46-19f248cefde8"}],"id":"19c06ac5-a534-497c-b470-4b9fe9b551c3","_postman_id":"19c06ac5-a534-497c-b470-4b9fe9b551c3","description":""},{"name":"Notifications","item":[{"name":"Notifications Logs","item":[{"name":"List all notifications logs","id":"ffb6a32e-d3c7-40ce-ba65-95023b4e66df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/logs","urlObject":{"path":["v1","notifications","logs"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6b2d6d12-87eb-49a8-b7fa-b4281cf44f46","name":"List all notifications logs","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:42:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"5ac44f9ab62d619ccaa0edd8de2acbd1d522faa4\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NTRmMzJkZQ==&user_group_id=1\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"operator@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 1,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:21\",\n            \"updated_at\": \"2020-09-14 15:12:21\"\n        },\n        {\n            \"id\": 2,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NTU1NjliNA==&user_group_id=3\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"prestashop@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 3,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:21\",\n            \"updated_at\": \"2020-09-14 15:12:21\"\n        },\n        {\n            \"id\": 3,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NTU4N2RkZg==&user_group_id=4\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurtest@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 4,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:21\",\n            \"updated_at\": \"2020-09-14 15:12:21\"\n        },\n        {\n            \"id\": 4,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NWIwMTU4Mg==&user_group_id=1\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"operator@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 1,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:27\",\n            \"updated_at\": \"2020-09-14 15:12:27\"\n        },\n        {\n            \"id\": 5,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NWMzMGI0Yw==&user_group_id=3\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"prestashop@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 3,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:28\",\n            \"updated_at\": \"2020-09-14 15:12:28\"\n        },\n        {\n            \"id\": 6,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NWQ2M2Y3Ng==&user_group_id=4\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurtest@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 4,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:29\",\n            \"updated_at\": \"2020-09-14 15:12:29\"\n        },\n        {\n            \"id\": 7,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NjAyMGJhMg==&user_group_id=3\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"prestashop@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 3,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:32\",\n            \"updated_at\": \"2020-09-14 15:12:32\"\n        },\n        {\n            \"id\": 8,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NjAxZWRlZQ==&user_group_id=1\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"operator@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 1,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:32\",\n            \"updated_at\": \"2020-09-14 15:12:32\"\n        },\n        {\n            \"id\": 9,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NjBhMTU1OQ==&user_group_id=4\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurtest@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 4,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-14 15:12:32\",\n            \"updated_at\": \"2020-09-14 15:12:32\"\n        },\n        {\n            \"id\": 10,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MDc2MDM0NDcxNQ==&user_group_id=5\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-09-15 08:06:27\",\n            \"updated_at\": \"2020-09-15 08:06:27\"\n        },\n        {\n            \"id\": 11,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MDc2MDM4ZjNlYQ==&user_group_id=5\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-15 08:06:27\",\n            \"updated_at\": \"2020-09-15 08:06:27\"\n        },\n        {\n            \"id\": 12,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MDc2MDQzNzViNg==&user_group_id=5\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-09-15 08:06:28\",\n            \"updated_at\": \"2020-09-15 08:06:28\"\n        },\n        {\n            \"id\": 13,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MDc2MDQ4YTAwMg==&user_group_id=5\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-15 08:06:28\",\n            \"updated_at\": \"2020-09-15 08:06:28\"\n        },\n        {\n            \"id\": 14,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MDc2MDRiOTE4Nw==&user_group_id=5\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-09-15 08:06:28\",\n            \"updated_at\": \"2020-09-15 08:06:28\"\n        },\n        {\n            \"id\": 15,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MDc2MDRmMjY4YQ==&user_group_id=5\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-15 08:06:29\",\n            \"updated_at\": \"2020-09-15 08:06:29\"\n        },\n        {\n            \"id\": 16,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MjBmMWM4MWY0OA==&user_group_id=6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-16 13:11:56\",\n            \"updated_at\": \"2020-09-16 13:11:56\"\n        },\n        {\n            \"id\": 17,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MjBmMWNmMDgzYw==&user_group_id=6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-16 13:11:57\",\n            \"updated_at\": \"2020-09-16 13:11:57\"\n        },\n        {\n            \"id\": 18,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MjBmMWQ2MzYwZg==&user_group_id=6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-16 13:11:57\",\n            \"updated_at\": \"2020-09-16 13:11:57\"\n        },\n        {\n            \"id\": 19,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MjBmMWRhNzZmYg==&user_group_id=6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-16 13:11:57\",\n            \"updated_at\": \"2020-09-16 13:11:57\"\n        },\n        {\n            \"id\": 20,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MjBmMWRlM2I2MA==&user_group_id=6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-16 13:11:58\",\n            \"updated_at\": \"2020-09-16 13:11:58\"\n        },\n        {\n            \"id\": 21,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2MjBmMWUxOGI5NQ==&user_group_id=6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vincent@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-16 13:11:58\",\n            \"updated_at\": \"2020-09-16 13:11:58\"\n        },\n        {\n            \"id\": 22,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Yzk0ZWZhN2ZjMQ==&user_group_id=4\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurtest@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 4,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-24 12:45:35\",\n            \"updated_at\": \"2020-09-24 12:45:35\"\n        },\n        {\n            \"id\": 23,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Yzk0ZjJlNTExYg==&user_group_id=4\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurtest@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 4,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-24 12:45:39\",\n            \"updated_at\": \"2020-09-24 12:45:39\"\n        },\n        {\n            \"id\": 24,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Yzk0ZjMzMGIwMA==&user_group_id=4\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurtest@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 4,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-09-24 12:45:39\",\n            \"updated_at\": \"2020-09-24 12:45:39\"\n        },\n        {\n            \"id\": 25,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Y2JmYTBkZWQ2YQ==&user_group_id=7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"boutestp@test.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 7,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-24 15:47:45\",\n            \"updated_at\": \"2020-09-24 15:47:45\"\n        },\n        {\n            \"id\": 26,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Y2JmYTEzNjEyYQ==&user_group_id=7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"boutestp@test.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 7,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-24 15:47:45\",\n            \"updated_at\": \"2020-09-24 15:47:45\"\n        },\n        {\n            \"id\": 27,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Y2JmYTE2YzU1ZQ==&user_group_id=7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"boutestp@test.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 7,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-24 15:47:45\",\n            \"updated_at\": \"2020-09-24 15:47:45\"\n        },\n        {\n            \"id\": 28,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Y2MxMzA0YTlkZA==&user_group_id=8\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"boutest@test.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 8,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-24 15:54:24\",\n            \"updated_at\": \"2020-09-24 15:54:24\"\n        },\n        {\n            \"id\": 29,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Y2MxMzA4ZWYwZg==&user_group_id=8\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"boutest@test.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 8,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-24 15:54:24\",\n            \"updated_at\": \"2020-09-24 15:54:24\"\n        },\n        {\n            \"id\": 30,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2Y2MxMzBjODdiNw==&user_group_id=8\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"boutest@test.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 8,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-24 15:54:25\",\n            \"updated_at\": \"2020-09-24 15:54:25\"\n        },\n        {\n            \"id\": 31,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGVjN2FjOTkzMw==&user_group_id=9\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 9,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 13:11:23\",\n            \"updated_at\": \"2020-09-25 13:11:23\"\n        },\n        {\n            \"id\": 32,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGVjN2IxNDI3OQ==&user_group_id=9\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 9,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 13:11:23\",\n            \"updated_at\": \"2020-09-25 13:11:23\"\n        },\n        {\n            \"id\": 33,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGVjN2I1NDlmMA==&user_group_id=9\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 9,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 13:11:23\",\n            \"updated_at\": \"2020-09-25 13:11:23\"\n        },\n        {\n            \"id\": 34,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGY5ODEyMDQwMQ==&user_group_id=10\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testttsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 10,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:06:57\",\n            \"updated_at\": \"2020-09-25 14:06:57\"\n        },\n        {\n            \"id\": 35,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGY5ODE2NDRmNQ==&user_group_id=10\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testttsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 10,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:06:57\",\n            \"updated_at\": \"2020-09-25 14:06:57\"\n        },\n        {\n            \"id\": 36,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGY5ODE5ODcxNQ==&user_group_id=10\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testttsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 10,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:06:57\",\n            \"updated_at\": \"2020-09-25 14:06:57\"\n        },\n        {\n            \"id\": 37,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGZhNzQzMWZmMg==&user_group_id=11\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"venddtest@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 11,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:11:00\",\n            \"updated_at\": \"2020-09-25 14:11:00\"\n        },\n        {\n            \"id\": 38,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGZhNzQ3NmY1Zg==&user_group_id=11\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"venddtest@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 11,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:11:00\",\n            \"updated_at\": \"2020-09-25 14:11:00\"\n        },\n        {\n            \"id\": 39,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGZhNzRhZWMxZQ==&user_group_id=11\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"venddtest@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 11,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:11:00\",\n            \"updated_at\": \"2020-09-25 14:11:00\"\n        },\n        {\n            \"id\": 40,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGZhZTE1MjgwMw==&user_group_id=12\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurttsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 12,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:12:49\",\n            \"updated_at\": \"2020-09-25 14:12:49\"\n        },\n        {\n            \"id\": 41,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGZhZTE4ZWUxZA==&user_group_id=12\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurttsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 12,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:12:49\",\n            \"updated_at\": \"2020-09-25 14:12:49\"\n        },\n        {\n            \"id\": 42,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY2ZGZhZTFjMzRlNg==&user_group_id=12\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"vendeurttsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 12,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-25 14:12:49\",\n            \"updated_at\": \"2020-09-25 14:12:49\"\n        },\n        {\n            \"id\": 43,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3MmYxMDlkZDE2Mg==&user_group_id=13\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"clement@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 13,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-29 08:32:10\",\n            \"updated_at\": \"2020-09-29 08:32:10\"\n        },\n        {\n            \"id\": 44,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3MmYxMGE0NDE0Zg==&user_group_id=13\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"clement@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 13,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-29 08:32:10\",\n            \"updated_at\": \"2020-09-29 08:32:10\"\n        },\n        {\n            \"id\": 45,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3MmYxMGFhZmY2YQ==&user_group_id=13\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"clement@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 13,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-09-29 08:32:11\",\n            \"updated_at\": \"2020-09-29 08:32:11\"\n        },\n        {\n            \"id\": 46,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3NzIxMjU0NmU5YQ==&user_group_id=14\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-02 12:46:29\",\n            \"updated_at\": \"2020-10-02 12:46:29\"\n        },\n        {\n            \"id\": 47,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3NzIxMjU5NWNkMQ==&user_group_id=14\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-10-02 12:46:29\",\n            \"updated_at\": \"2020-10-02 12:46:29\"\n        },\n        {\n            \"id\": 48,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3NzIxMjVjYTcxNQ==&user_group_id=14\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-02 12:46:29\",\n            \"updated_at\": \"2020-10-02 12:46:29\"\n        },\n        {\n            \"id\": 49,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3NzIxMjdhNGZiZg==&user_group_id=14\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-10-02 12:46:31\",\n            \"updated_at\": \"2020-10-02 12:46:31\"\n        },\n        {\n            \"id\": 50,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3NzIxMjdkYWQ3ZQ==&user_group_id=14\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-02 12:46:32\",\n            \"updated_at\": \"2020-10-02 12:46:32\"\n        },\n        {\n            \"id\": 51,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY3NzIxMjgyMDIzNw==&user_group_id=14\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-10-02 12:46:32\",\n            \"updated_at\": \"2020-10-02 12:46:32\"\n        },\n        {\n            \"id\": 52,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-21 17:00:50\",\n            \"updated_at\": \"2020-10-21 17:00:50\"\n        },\n        {\n            \"id\": 53,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-21 17:00:51\",\n            \"updated_at\": \"2020-10-21 17:00:51\"\n        },\n        {\n            \"id\": 54,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-21 17:00:51\",\n            \"updated_at\": \"2020-10-21 17:00:51\"\n        },\n        {\n            \"id\": 55,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:26:36\",\n            \"updated_at\": \"2020-10-22 07:26:36\"\n        },\n        {\n            \"id\": 56,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour #### !</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJEtrQjhLTWVHVnZpLzNEb1hYcE54OE9KQVhUNEo0NXRCYWNBT20ycEFqdGxnek1SandGUFJL&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:26:37\",\n            \"updated_at\": \"2020-10-22 07:26:37\"\n        },\n        {\n            \"id\": 57,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:26:37\",\n            \"updated_at\": \"2020-10-22 07:26:37\"\n        },\n        {\n            \"id\": 58,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour #### !</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJEtrQjhLTWVHVnZpLzNEb1hYcE54OE9KQVhUNEo0NXRCYWNBT20ycEFqdGxnek1SandGUFJL&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:26:37\",\n            \"updated_at\": \"2020-10-22 07:26:37\"\n        },\n        {\n            \"id\": 59,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:26:37\",\n            \"updated_at\": \"2020-10-22 07:26:37\"\n        },\n        {\n            \"id\": 60,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour #### !</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJEtrQjhLTWVHVnZpLzNEb1hYcE54OE9KQVhUNEo0NXRCYWNBT20ycEFqdGxnek1SandGUFJL&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:26:37\",\n            \"updated_at\": \"2020-10-22 07:26:37\"\n        },\n        {\n            \"id\": 61,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:32:23\",\n            \"updated_at\": \"2020-10-22 07:32:23\"\n        },\n        {\n            \"id\": 62,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour #### !</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJDFpcEpjL3RXaElQT3R4ODNMVktVWU82VUl0Z3RiV05CMDRrSzM0dTBKYng2NzNna29ncFE2&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:32:23\",\n            \"updated_at\": \"2020-10-22 07:32:23\"\n        },\n        {\n            \"id\": 63,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:35:40\",\n            \"updated_at\": \"2020-10-22 07:35:40\"\n        },\n        {\n            \"id\": 64,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\r\\n  <tbody>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p><strong>Bonjour {$order_seller->customer->user_group_parent->firstname} !</strong></p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n          <tbody>\\r\\n            <tr>\\r\\n              <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJDJvRGdNRTJOd0VXVkNXTXQveHJsYXVXWGRpYnFoS0RmWmMycjFpb1dqM1I4WDZVeDYyZ2R5&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\r\\n            </tr>\\r\\n          </tbody>\\r\\n        </table>\\r\\n      </td>\\r\\n    </tr>\\r\\n  </tbody>\\r\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:35:40\",\n            \"updated_at\": \"2020-10-22 07:35:40\"\n        },\n        {\n            \"id\": 65,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:36:38\",\n            \"updated_at\": \"2020-10-22 07:36:38\"\n        },\n        {\n            \"id\": 66,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\r\\n  <tbody>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p><strong>Bonjour Julien !</strong></p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n          <tbody>\\r\\n            <tr>\\r\\n              <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJFpNOUV0eGVvaTFVWDZvZGJFWW44bC5QYmFWNDJsMVZraGFtZkJaMkpEV0xIamRvQi9QRlFl&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\r\\n            </tr>\\r\\n          </tbody>\\r\\n        </table>\\r\\n      </td>\\r\\n    </tr>\\r\\n  </tbody>\\r\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 07:36:39\",\n            \"updated_at\": \"2020-10-22 07:36:39\"\n        },\n        {\n            \"id\": 67,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5MTRkMjUzZjUxZg==&user_group_id=9\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testsoc@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 9,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-10-22 09:13:09\",\n            \"updated_at\": \"2020-10-22 09:13:09\"\n        },\n        {\n            \"id\": 68,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5MTRmNjc4Y2MxMg==&user_group_id=15\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien2@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 15,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 09:22:47\",\n            \"updated_at\": \"2020-10-22 09:22:47\"\n        },\n        {\n            \"id\": 69,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5MTRmNjgwZmMyNQ==&user_group_id=15\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien2@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 15,\n            \"notifiable_type\": null,\n            \"state\": null,\n            \"created_at\": \"2020-10-22 09:22:48\",\n            \"updated_at\": \"2020-10-22 09:22:48\"\n        },\n        {\n            \"id\": 70,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/8\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien2@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 15,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 09:24:34\",\n            \"updated_at\": \"2020-10-22 09:24:34\"\n        },\n        {\n            \"id\": 71,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\r\\n  <tbody>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p><strong>Bonjour Julien !</strong></p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n          <tbody>\\r\\n            <tr>\\r\\n              <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=OA==&t=JDJ5JDEwJDA0SVEuTU9XbkNIMkRNelhWS3RBak9XdlAveGR3TU5kTk14ZFRIZ3N3U1hLOXBGVTNCU3pl&pid=MQ==&guid=MTU=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\r\\n            </tr>\\r\\n          </tbody>\\r\\n        </table>\\r\\n      </td>\\r\\n    </tr>\\r\\n  </tbody>\\r\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien2@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 15,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 09:24:34\",\n            \"updated_at\": \"2020-10-22 09:24:34\"\n        },\n        {\n            \"id\": 72,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5MThjNzUzODE1Yw==&user_group_id=16\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"antoine@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 16,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 13:43:17\",\n            \"updated_at\": \"2020-10-22 13:43:17\"\n        },\n        {\n            \"id\": 73,\n            \"subject\": \"[Origami Marketplace] Finalisez votre compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour Test</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Vous avez été invité à rejoindre la marketplace</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Afin de finaliser votre compte, veuillez cliquer sur le lien ci dessous :</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"####\\\" target=\\\"_blank\\\"><strong>Finaliser mon compte</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\\n</td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"test@comptoirducode.cil\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 6,\n            \"notifiable_type\": \"user\",\n            \"state\": null,\n            \"created_at\": \"2020-10-22 16:21:02\",\n            \"updated_at\": \"2020-10-22 16:21:02\"\n        },\n        {\n            \"id\": 74,\n            \"subject\": \"[Origami Marketplace] Réinitialisation de mot de passe\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour Admin</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Vous avez demand&eacute; &agrave; changer votre mot de passe.</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Afin de proc&eacute;der &agrave; la modification de mot de passe, veuillez cliquer sur le lien ci dessous :</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"####\\\" target=\\\"_blank\\\"><strong>R&eacute;initialiser mon mot de passe</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\\n</td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"admin@origami-marketplace.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 1,\n            \"notifiable_type\": \"user\",\n            \"state\": null,\n            \"created_at\": \"2020-10-23 13:09:58\",\n            \"updated_at\": \"2020-10-23 13:09:58\"\n        },\n        {\n            \"id\": 75,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/7\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-26 15:07:30\",\n            \"updated_at\": \"2020-10-26 15:07:30\"\n        },\n        {\n            \"id\": 76,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\r\\n  <tbody>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p><strong>Bonjour Julien !</strong></p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n          <tbody>\\r\\n            <tr>\\r\\n              <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Nw==&t=JDJ5JDEwJEJBaXZEaFNQZlZ2bFRaUVM5VHU1My41WFc2SGNxdnltUUhsQXFlL05pUHhmZmhENG1aSFZx&pid=MQ==&guid=MTQ=\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\r\\n            </tr>\\r\\n          </tbody>\\r\\n        </table>\\r\\n      </td>\\r\\n    </tr>\\r\\n  </tbody>\\r\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"julien@comptoirducode.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 14,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-26 15:07:30\",\n            \"updated_at\": \"2020-10-26 15:07:30\"\n        },\n        {\n            \"id\": 77,\n            \"subject\": \"[Origami Marketplace] Une nouvelle commande a été ajoutée\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#add8e6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <p>Ceci est un ent&ecirc;te</p>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/6\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align: top; display: inline-block; direction: ltr; font-size: 13px; text-align: left; width: 100%;\\\">\\r\\n<table role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td style=\\\"word-wrap: break-word; font-size: 0px; padding: 0px 25px;\\\" align=\\\"center\\\">\\r\\n<div style=\\\"cursor: auto; color: #000000; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 22px; text-align: center;\\\"><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">The Origami Team</span><br /><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">Made by Comptoir du code</span></div>\\r\\n</td>\\r\\n</tr>\\r\\n</tbody>\\r\\n</table>\\r\\n</div>\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"EglantineBeaudouin@dayrep.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-26 15:44:09\",\n            \"updated_at\": \"2020-10-26 15:44:09\"\n        },\n        {\n            \"id\": 78,\n            \"subject\": \"[Origami Marketplace] Votre avis compte !\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#add8e6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <p>Ceci est un ent&ecirc;te</p>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\r\\n  <tbody>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p><strong>Bonjour Test !</strong></p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n          <tbody>\\r\\n            <tr>\\r\\n              <td style=\\\"vertical-align:middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/reviews/create?ooid=Ng==&t=JDJ5JDEwJHBadW10Ry8yODhkQ3FjNEpQQ0g4b2ViVUVWSnQ4ekZTMUl0ZFZ4SkZISWNqRXR2cTVtY015&pid=MQ==&guid=NQ==\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\r\\n            </tr>\\r\\n          </tbody>\\r\\n        </table>\\r\\n      </td>\\r\\n    </tr>\\r\\n  </tbody>\\r\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align: top; display: inline-block; direction: ltr; font-size: 13px; text-align: left; width: 100%;\\\">\\r\\n<table role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td style=\\\"word-wrap: break-word; font-size: 0px; padding: 0px 25px;\\\" align=\\\"center\\\">\\r\\n<div style=\\\"cursor: auto; color: #000000; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 22px; text-align: center;\\\"><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">The Origami Team</span><br /><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">Made by Comptoir du code</span></div>\\r\\n</td>\\r\\n</tr>\\r\\n</tbody>\\r\\n</table>\\r\\n</div>\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"EglantineBeaudouin@dayrep.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 5,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-26 15:44:10\",\n            \"updated_at\": \"2020-10-26 15:44:10\"\n        },\n        {\n            \"id\": 79,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#add8e6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <p>Ceci est un ent&ecirc;te</p>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5N2UxMzg5NzQ3ZQ==&user_group_id=19\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align: top; display: inline-block; direction: ltr; font-size: 13px; text-align: left; width: 100%;\\\">\\r\\n<table role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td style=\\\"word-wrap: break-word; font-size: 0px; padding: 0px 25px;\\\" align=\\\"center\\\">\\r\\n<div style=\\\"cursor: auto; color: #000000; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 22px; text-align: center;\\\"><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">The Origami Team</span><br /><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">Made by Comptoir du code</span></div>\\r\\n</td>\\r\\n</tr>\\r\\n</tbody>\\r\\n</table>\\r\\n</div>\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"testphone@gmail.com\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 19,\n            \"notifiable_type\": \"seller\",\n            \"state\": null,\n            \"created_at\": \"2020-10-27 08:58:32\",\n            \"updated_at\": \"2020-10-27 08:58:32\"\n        },\n        {\n            \"id\": 80,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#add8e6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <p>Ceci est un ent&ecirc;te</p>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5N2U4NTEzMWMxZg==&user_group_id=20\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align: top; display: inline-block; direction: ltr; font-size: 13px; text-align: left; width: 100%;\\\">\\r\\n<table role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td style=\\\"word-wrap: break-word; font-size: 0px; padding: 0px 25px;\\\" align=\\\"center\\\">\\r\\n<div style=\\\"cursor: auto; color: #000000; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 22px; text-align: center;\\\"><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">The Origami Team</span><br /><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">Made by Comptoir du code</span></div>\\r\\n</td>\\r\\n</tr>\\r\\n</tbody>\\r\\n</table>\\r\\n</div>\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"GilbertAustin@teleworm.us\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 20,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-27 09:28:49\",\n            \"updated_at\": \"2020-10-27 09:28:49\"\n        },\n        {\n            \"id\": 81,\n            \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n            \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#add8e6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <p>Ceci est un ent&ecirc;te</p>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY5N2VlYzgxODllYw==&user_group_id=21\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align: top; display: inline-block; direction: ltr; font-size: 13px; text-align: left; width: 100%;\\\">\\r\\n<table role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td style=\\\"word-wrap: break-word; font-size: 0px; padding: 0px 25px;\\\" align=\\\"center\\\">\\r\\n<div style=\\\"cursor: auto; color: #000000; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 22px; text-align: center;\\\"><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">The Origami Team</span><br /><span style=\\\"font-size: 14.6px; font-family: Arial;\\\">Made by Comptoir du code</span></div>\\r\\n</td>\\r\\n</tr>\\r\\n</tbody>\\r\\n</table>\\r\\n</div>\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n            \"to\": \"GilbertAustin@teleworm.us\",\n            \"cc\": null,\n            \"bcc\": \"\",\n            \"type\": \"mail\",\n            \"notifiable_id\": 21,\n            \"notifiable_type\": \"customer\",\n            \"state\": null,\n            \"created_at\": \"2020-10-27 09:56:24\",\n            \"updated_at\": \"2020-10-27 09:56:24\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 81,\n            \"count\": 81,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"ffb6a32e-d3c7-40ce-ba65-95023b4e66df"},{"name":"Get a notification log","id":"251de205-2458-4f05-9268-0f6b8a7424fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/logs/1","urlObject":{"path":["v1","notifications","logs","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6370d77b-6c9e-4970-bb0f-dc39e9903aba","name":"Get a notification log","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/logs/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:43:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"f12e5712ac1c5e538e62c3b0e95a33ff30f0e85f\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"subject\": \"[Origami Marketplace] Confirmez votre email\",\n        \"content\": \"<!doctype html>\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\" xmlns:v=\\\"urn:schemas-microsoft-com:vml\\\"\\n      xmlns:o=\\\"urn:schemas-microsoft-com:office:office\\\">\\n<head>\\n  <title></title>\\n  <meta http-equiv=\\\"X-UA-Compatible\\\" content=\\\"IE=edge\\\">\\n  <meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n      \\n    <link href=\\\"https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\"/>\\n</head>\\n<body>\\n<div class=\\\"mj-container\\\"\\n     style=\\\"background-color:#ADD8E6; padding-top: 20px;padding-bottom: 20px; width : 100%\\\">\\n  <div style=\\\"margin:0px auto;max-width:600px;background:#ffffff; border : 0px; margin-top : 20px\\\">\\n    <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\"\\n           style=\\\"width:100%;background:#ffffff;border : 0px\\\">\\n      <tbody>\\n      <tr style=\\\"text-align : center;\\\">\\n        <td>\\n          <div class=\\\"header\\\">\\n            <img src=\\\"http://drive.google.com/uc?export=view&amp;id=0By1dGKuocczXc2VONmxVQUNVdU0\\\"></img>\\n          </div>\\n        </td>\\n      </tr>\\n      <tr>\\n        <td style=\\\"text-align: center; padding-top: 30px;\\\"><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour #### !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/email_validation?callback_url=https://admin.staging.origami-marketplace.com&token=NWY1Zjg4NTRmMzJkZQ==&user_group_id=1\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table></td>\\n      </tr>\\n            <tr>\\n        <td style=\\\"text-align:center;padding-top:30px\\\">\\n          \\n        <tr>\\n            <td style=\\\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px;padding-bottom:60px;padding-top:50px;\\\">\\n            <div class=\\\"mj-column-per-100 outlook-group-fix\\\" style=\\\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\\\">\\n            <table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n                <tbody>\\n                    <tr>\\n                        <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;\\\">\\n                        <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><span style=\\\"font-size:14.6px;font-family:Arial;\\\">The Origami Team</span><br />\\n                        <span style=\\\"font-size:14.6px;font-family:Arial;\\\">Made by Comptoir du code</span></div>\\n                        </td>\\n                    </tr>\\n                </tbody>\\n            </table>\\n            </div>\\n            </td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n</div>\\n\\n\\n        </td>\\n      </tr>\\n      </tbody>\\n\\n    </table>\\n  </div>\\n</body>\\n</html>\",\n        \"to\": \"operator@origami-marketplace.com\",\n        \"cc\": null,\n        \"bcc\": \"\",\n        \"type\": \"mail\",\n        \"notifiable_id\": 1,\n        \"notifiable_type\": null,\n        \"state\": null,\n        \"created_at\": \"2020-09-14 15:12:21\",\n        \"updated_at\": \"2020-09-14 15:12:21\"\n    }\n}"}],"_postman_id":"251de205-2458-4f05-9268-0f6b8a7424fb"}],"id":"b9835d5b-4df8-4b5c-961d-75ec586dbd96","_postman_id":"b9835d5b-4df8-4b5c-961d-75ec586dbd96","description":""},{"name":"Notification Templates","item":[{"name":"List all notifications templates","id":"74182d85-6efc-4f6d-83c4-63acbbc72435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/templates","urlObject":{"path":["v1","notifications","templates"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d53c8eae-df02-4dfc-aff4-47a446fce2d6","name":"List all notifications templates","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:47:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"e8c60c1047d2826cabe78d8a1b8a555315c8a111\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"seller registration confirmation\",\n            \"subject\": \"Bienvenue sur la marketplace !\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Votre demande de création de compte pour la boutique [seller.name] a bien été prise en compte !</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pourrez acc&eacute;der &agrave; votre backoffice d&egrave;s que votre compte sera valid&eacute; par un administrateur.</div>\\n      </td>\\n    </tr>   \\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"seller registration validation\",\n            \"subject\": \"Inscription validée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Hey [notifiable.name]!</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">F&eacute;licitations ! Vous avez &eacute;t&eacute; valid&eacute; par un administrateur !</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez acc&eacute;der &agrave; la marketplace en cliquant sur le boutton ci dessous</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n        <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Origami</strong></a></td>\\n          </tr>\\n        </tbody>\\n      </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\\n\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"seller registration rejection\",\n            \"subject\": \"Inscription refusée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Hey [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Votre compte a &eacute;t&eacute; refus&eacute;e par un op&eacute;rateur!</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pourrez r&eacute;essayer ou contacter la marketplace.</div>\\n      </td>\\n    </tr>   \\n  </tbody>\\n</table>\\n\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"user reset password\",\n            \"subject\": \"Réinitialisation de mot de passe\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour [user.firstname]</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Vous avez demand&eacute; &agrave; changer votre mot de passe.</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Afin de proc&eacute;der &agrave; la modification de mot de passe, veuillez cliquer sur le lien ci dessous :</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"[user.reset_password_link]\\\" target=\\\"_blank\\\"><strong>R&eacute;initialiser mon mot de passe</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\\n\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"user set password\",\n            \"subject\": \"Finalisez votre compte !\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\n  <tbody>\\n  <tr>\\n    <td>\\n      <p><strong>Bonjour [user.firstname]</strong></p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Vous avez été invité à rejoindre la marketplace</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <p>Afin de finaliser votre compte, veuillez cliquer sur le lien ci dessous :</p>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td>\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tbody>\\n        <tr>\\n          <td style=\\\"vertical-align:middle\\\"><a href=\\\"[user.reset_password_link]\\\" target=\\\"_blank\\\"><strong>Finaliser mon compte</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\\n\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"order seller ask opinion\",\n            \"subject\": \"Votre avis compte !\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:100%\\\">\\r\\n  <tbody>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p><strong>Bonjour {{$order_seller->customer->user_group_parent->firstname}} !</strong></p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <p>Nous aimerions connaitre votre avis &agrave; propos de votre r&eacute;cente commande. Vos notes et commentaires nous aiderons &agrave; am&eacute;liorer le service</p>\\r\\n      </td>\\r\\n    </tr>\\r\\n    <tr>\\r\\n      <td>\\r\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n          <tbody>\\r\\n            <tr>\\r\\n              <td style=\\\"vertical-align:middle\\\"><a href=\\\"[order_seller.give_opinion_link]\\\" target=\\\"_blank\\\"><strong>Je donne mon avis !</strong></a></td>\\r\\n            </tr>\\r\\n          </tbody>\\r\\n        </table>\\r\\n      </td>\\r\\n    </tr>\\r\\n  </tbody>\\r\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"user group email validation\",\n            \"subject\": \"Confirmez votre email\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [user_group.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Merci de cliquer sur le boutton ci dessous afin de confirmer votre adresse email</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"[user_group.email_validation_link]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Je confirme mon email</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"order_seller.create\",\n            \"subject\": \"Une nouvelle commande a été ajoutée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle commande a été ajoutée à la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/[order_seller.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"order_seller.update\",\n            \"subject\": \"Une commande a été modifiée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une commande a été modifiée sur la marketplace</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de cette commande en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/orders/[order_seller.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir la commande</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"product.create\",\n            \"subject\": \"Un nouveau produit a été ajouté\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Un nouveau produit a été ajouté à la marketplace : [product.name]</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"product.update\",\n            \"subject\": \"Un produit a été modifié\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le produit [product.name] a été modifié</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"product.delete\",\n            \"subject\": \"Un produit a été supprimé\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le produit [product.name] - [product.reference] a été supprimé</div>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"product_variant.create\",\n            \"subject\": \"Une nouvelle variante a été ajoutée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle variante a été ajoutée au produit [product_variant.product.name]</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product_variant.product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"product_variant.update\",\n            \"subject\": \"Une variante a été modifiée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une variante a été modifiée sur le produit [product_variant.product.name]</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n        <tbody>\\n        <tr>\\n          <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product_variant.product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"product_variant.delete\",\n            \"subject\": \"Une variante a été supprimée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une variante a été supprimée sur le produit [product_variant.product.name]</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n        <tbody>\\n        <tr>\\n          <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product_variant.product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"product_offer.create\",\n            \"subject\": \"Une nouvelle offre de produit a été ajoutée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une nouvelle offre a été ajoutée au produit [product_offer.product.name]</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product_offer.product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"product_offer.update\",\n            \"subject\": \"Une offre de produit a été modifiée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une offre a été modifiée sur le produit [product_offer.product.name]</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n        <tbody>\\n        <tr>\\n          <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product_offer.product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"product_offer.delete\",\n            \"subject\": \"Une offre de produit a été supprimée\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Une offre a été supprimée sur le produit [product_offer.product.name]</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce produit en cliquant sur le boutton ci dessous.</div>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n      <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n        <tbody>\\n        <tr>\\n          <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/products/[product_offer.product.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le produit</strong></a></td>\\n        </tr>\\n        </tbody>\\n      </table>\\n    </td>\\n  </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"user_group.create\",\n            \"subject\": \"Un nouveau vendeur a été ajouté\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Un nouveau vendeur a été ajouté à la marketplace : [seller.name]</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce vendeur en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/[seller.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le vendeur</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"user_group.update\",\n            \"subject\": \"Un vendeur a été modifié\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le vendeur [seller.name] a été modifié</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce vendeur en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/sellers/[seller.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le vendeur</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"user_group.delete\",\n            \"subject\": \"Un vendeur a été supprimé\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le vendeur [seller.name] a été supprimée de la marketplace</div>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"ticket.create\",\n            \"subject\": \"Un nouveau ticket a été ajouté\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Un ticket a été ajouté : [ticket.subject]</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce ticket en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/tickets/[ticket.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le ticket</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"ticket.update\",\n            \"subject\": \"Un ticket a été modifié\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n        <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le ticket <i>\\\"[ticket.subject]\\\"</i> a été modifié</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce ticket en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/tickets/[ticket.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le ticket</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"ticket_message.create\",\n            \"subject\": \"Un message a été ajouté à un ticket\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n        <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Un message a été ajouté au ticket <i>\\\"[ticket_message.ticket.subject]\\\"</i></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce ticket en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/tickets/[ticket_message.ticket.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le ticket</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"ticket_report.create\",\n            \"subject\": \"Un ticket a été report\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n        <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le ticket <i>\\\"[ticket_report.ticket.subject]\\\"</i> a été report</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce ticket en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/tickets/[ticket_report.ticket.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le ticket</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"ticket_report.update\",\n            \"subject\": \"Un report de ticket a été modifié\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n        <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le report sur le ticket <i>\\\"[ticket_report.ticket.subject]\\\"</i> a été modifié</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce ticket en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/tickets/[ticket_report.ticket.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le ticket</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 27,\n            \"name\": \"voucher.create\",\n            \"subject\": \"Un nouveau bon de réduction a été ajouté\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Un nouveau bon de réduction a été ajouté à la marketplace : [voucher.code]</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce bon de réduction en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/vouchers/[voucher.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le bon de réduction</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"voucher.update\",\n            \"subject\": \"Un bon de réduction a été modifié\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le bon de réduction [voucher.code] a été modifié</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pouvez accéder au détail de ce bon de réduction en cliquant sur le boutton ci dessous.</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px;padding-top:30px;\\\">\\n        <table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" style=\\\"border-collapse:separate;\\\">\\n          <tbody>\\n          <tr>\\n            <td align=\\\"center\\\" bgcolor=\\\"#8bb420\\\" style=\\\"border:none;border-radius:3px;color:#FFFFFF;cursor:auto;padding:10px 25px;\\\" valign=\\\"middle\\\"><a href=\\\"https://admin.staging.origami-marketplace.com/catalog/vouchers/[voucher.id]\\\" style=\\\"background: #8bb420; font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 120%; text-transform: none; margin: 0px; text-decoration: none; color: inherit;\\\" target=\\\"_blank\\\"><strong>Voir le bon de réduction</strong></a></td>\\n          </tr>\\n          </tbody>\\n        </table>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 29,\n            \"name\": \"voucher.delete\",\n            \"subject\": \"Un bon de réduction a été supprimé\",\n            \"type\": \"mail\",\n            \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Le bon de réduction [voucher.code] a été supprimé</div>\\n      </td>\\n    </tr>\\n  </tbody>\\n</table>\",\n            \"view_type\": \"only_body\"\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Bienvenue\",\n            \"subject\": null,\n            \"type\": \"sms\",\n            \"content\": \"<p>Bienvenue</p>\",\n            \"view_type\": \"mail\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 30,\n            \"count\": 30,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"74182d85-6efc-4f6d-83c4-63acbbc72435"},{"name":"Get a notification template","id":"027ca2ba-81d5-4308-875f-2089979abd64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/templates/1","urlObject":{"path":["v1","notifications","templates","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d6a782ea-ad9c-4efa-a67e-1c3e648480a1","name":"Get a notification template","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/notifications/templates/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:48:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"caee95f39c754d5a082d171796f3c57121fc95b5\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"seller registration confirmation\",\n        \"subject\": \"Bienvenue sur la marketplace !\",\n        \"type\": \"mail\",\n        \"content\": \"<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" role=\\\"presentation\\\" width=\\\"100%\\\">\\n  <tbody>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:30px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:22px;text-align:center;\\\"><strong><span style=\\\"color: rgb(68, 154, 220);font-size: 25px;\\\">Bonjour [notifiable.name] !</span></strong></div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Votre demande de création de compte pour la boutique [seller.name] a bien été prise en compte !</div>\\n      </td>\\n    </tr>\\n    <tr>\\n      <td align=\\\"center\\\" style=\\\"word-wrap:break-word;font-size:0px;padding:0px 25px;padding-top:20px;\\\">\\n      <div style=\\\"cursor:auto;color:#000000;font-family:Arial;font-size:18px;line-height:22px;text-align:center;\\\">Vous pourrez acc&eacute;der &agrave; votre backoffice d&egrave;s que votre compte sera valid&eacute; par un administrateur.</div>\\n      </td>\\n    </tr>   \\n  </tbody>\\n</table>\",\n        \"view_type\": \"only_body\"\n    }\n}"}],"_postman_id":"027ca2ba-81d5-4308-875f-2089979abd64"},{"name":"Create a notification template","id":"79c8d7c5-729b-4ae7-b2f1-8cbcfef8853e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Order confirmation email\",\n    \"content\": \"<html></html>\",\n    \"subject\": \"Your order\",\n    \"type\": \"mail\",\n    \"view_type\": \"full\"\n}"},"url":"{{domain}}/v1/notifications/templates","urlObject":{"path":["v1","notifications","templates"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6f5ed465-dae9-401b-9d0d-eff75e15014a","name":"Create a notification template","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Order confirmation email\",\n    \"content\": \"<html></html>\",\n    \"subject\": \"Your order\",\n    \"type\": \"mail\",\n    \"view_type\": \"full\"\n}"},"url":"{{domain}}/v1/notifications/templates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:54:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"fec7daac187466753dfebf7b9221fbdf7fb2c20e\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 31,\n        \"name\": \"Order confirmation email\",\n        \"subject\": \"Your order\",\n        \"type\": \"mail\",\n        \"content\": \"<html></html>\",\n        \"view_type\": \"full\"\n    }\n}"}],"_postman_id":"79c8d7c5-729b-4ae7-b2f1-8cbcfef8853e"},{"name":"Update a notification template","id":"e6a32363-e8a8-4f53-a4d2-54610a1ae015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Order confirmation email\",\n    \"content\": \"<html></html>\",\n    \"subject\": \"Your order\",\n    \"type\": \"mail\",\n    \"view_type\": \"full\"\n}"},"url":"{{domain}}/v1/notifications/templates/7","urlObject":{"path":["v1","notifications","templates","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3be86ac0-d2b3-4146-b6fb-ee9f6464689e","name":"Update a notification template","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Order confirmation email\",\n    \"content\": \"<html></html>\",\n    \"subject\": \"Your order\",\n    \"type\": \"mail\",\n    \"view_type\": \"full\"\n}"},"url":"{{domain}}/v1/notifications/templates/7"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:54:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e6a32363-e8a8-4f53-a4d2-54610a1ae015"},{"name":"Delete a notification template","id":"24c807bf-bd46-4076-93b6-47675d214979","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/notifications/templates/31","urlObject":{"path":["v1","notifications","templates","31"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3c3d99fc-9a70-47c0-889c-1eb9522be697","name":"Delete a notification template","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/notifications/templates/31"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Wed, 28 Oct 2020 13:55:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"24c807bf-bd46-4076-93b6-47675d214979"}],"id":"e18b26ea-955e-4a49-b413-2247ef17f464","_postman_id":"e18b26ea-955e-4a49-b413-2247ef17f464","description":""}],"id":"54ee7e5e-0c93-4bb8-b335-f1e9a040b504","event":[{"listen":"prerequest","script":{"id":"125f72a3-3e0a-44ad-b1ec-df285984f786","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ad8981ed-0454-411f-b594-f8072ff2718f","type":"text/javascript","exec":[""]}}],"_postman_id":"54ee7e5e-0c93-4bb8-b335-f1e9a040b504","description":""}],"id":"1262ca16-62b6-4255-9361-f6a27a3a47de","_postman_id":"1262ca16-62b6-4255-9361-f6a27a3a47de","description":""},{"name":"Modules","item":[{"name":"Withdrawal Points","item":[{"name":"{{domain}}/v1/modules/withdrawal_points/product_offers","id":"af93a450-8b6f-4aef-8a56-33a5bf3201a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_variant_id\" : 1321,\n    \"lat\" : 50.6280095,\n    \"long\" : 3.0798144,\n    \"context\" : \n    {\n        \"user_group_id\" : 2\n    }\n}"},"url":"{{domain}}/v1/modules/withdrawal_points/product_offers","urlObject":{"path":["v1","modules","withdrawal_points","product_offers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af93a450-8b6f-4aef-8a56-33a5bf3201a4"}],"id":"9e59998c-d0fe-4f54-a2fa-548771471893","_postman_id":"9e59998c-d0fe-4f54-a2fa-548771471893","description":""},{"name":"B2BAdvanced","item":[{"name":"Register Seller on Cart","id":"a1e22747-8dab-4825-a889-d8020a39c6d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{connector_access_token}}","type":"text"},{"key":"context","value":"{{connector_context}}","type":"text"}],"url":"{{domain}}/v1/modules/b2b_advanced/punchout/carts/register-seller?seller_id=34&cart_id=144","urlObject":{"path":["v1","modules","b2b_advanced","punchout","carts","register-seller"],"host":["{{domain}}"],"query":[{"key":"seller_id","value":"34"},{"key":"cart_id","value":"144"}],"variable":[]}},"response":[],"_postman_id":"a1e22747-8dab-4825-a889-d8020a39c6d9"},{"name":"Add Product To Cart","id":"698a3ceb-77a5-4f24-8c89-17e2dac11b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{seller_access_token}}"},{"key":"context","value":"{{seller_context}}","type":"text"}],"url":"{{domain}}/v1/modules/b2b_advanced/punchout/carts/lines","urlObject":{"path":["v1","modules","b2b_advanced","punchout","carts","lines"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"698a3ceb-77a5-4f24-8c89-17e2dac11b8a"}],"id":"2f55953b-9f59-4b3d-97b4-bfc31dd2570b","_postman_id":"2f55953b-9f59-4b3d-97b4-bfc31dd2570b","description":""},{"name":"Billing Mandate","item":[{"name":"Get all documents (invoice & credit note)","id":"9c5f69a7-5a69-4c21-8722-30b586962457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/billing_mandates/documents","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filtre</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>\"invoice\" ou \"credit note\" selon le type de document voulu</td>\n</tr>\n<tr>\n<td>seller_id</td>\n<td>Vendeur associé au document</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","modules","billing_mandates","documents"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b8197fc6-8737-47e7-b69c-e8f0df070864","name":"Get all documents (invoice & credit note)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/billing_mandates/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 Apr 2022 15:30:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"7b7e60f9558d6b8425165547094462847afefb55\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"type\": \"invoice\",\n            \"name\": \"FACLSDJ_00001\",\n            \"url\": \"https://google.fr\",\n            \"created_at\": \"2021-11-03T17:07:30.000000Z\"\n        },\n        {\n            \"id\": 2,\n            \"type\": \"credit_note\",\n            \"name\": \"FACLSDJ_00002\",\n            \"url\": \"https://google.fr\",\n            \"created_at\": \"2021-11-03T21:57:33.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n        }\n    }\n}"}],"_postman_id":"9c5f69a7-5a69-4c21-8722-30b586962457"}],"id":"94c360b6-bbee-4b9f-b725-364161adfe74","_postman_id":"94c360b6-bbee-4b9f-b725-364161adfe74","description":""},{"name":"Vimeo","item":[{"name":"Get all Vimeo videos","id":"c20d9ccf-9277-4c14-abe7-297530c4d9d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer  {{access_token}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"context","type":"text","value":"{{context}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/v1/modules/vimeo","urlObject":{"path":["v1","modules","vimeo"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c20d9ccf-9277-4c14-abe7-297530c4d9d3"},{"name":"Create a Vimeo video","id":"821b6617-b736-45bf-80f5-17e007c968c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","type":"text","value":"multipart/form-data"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer  {{access_token}}"},{"key":"context","type":"text","value":"{{context}}"}],"body":{"mode":"raw","raw":"{\n    \"video_stream\": \"file.mp4\",\n    \"product_id\": 1\n}"},"url":"{{domain}}/v1/modules/vimeo","description":"<p>Create a new Vimeo video</p>\n<h3 id=\"permissions\"><strong>PERMISSIONS</strong></h3>\n<p>A user needs to be authenticated</p>\n<h3 id=\"body-parameters\"><strong>BODY PARAMETERS</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>video_stream</strong></td>\n<td>the video file (binary data) you want to upload to Vimeo</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>The origami product id on which the video will be linked</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","modules","vimeo"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"821b6617-b736-45bf-80f5-17e007c968c8"},{"name":"Edit a Vimeo video","id":"6cc02e48-f03d-4885-a0b0-3d94760ab016","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"link\": \"http://origami-marketplace.com\",\n    \"uploader_id\": 1,\n    \"product_id\": 1,\n    \"external_id\": \"1234123412341234\"\n}"},"url":"{{domain}}/v1/modules/vimeo/1","description":"<p>Edit an existing Vimeo video</p>\n<h3 id=\"permissions\">PERMISSIONS</h3>\n<p>A user needs to be authenticated</p>\n<h3 id=\"body-parameters\">BODY PARAMETERS</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>KEY</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>link</td>\n<td>Vimeo link to the video</td>\n</tr>\n<tr>\n<td>uploader_id</td>\n<td>Id of the user who uploaded the video</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>The origami product id on which the video will be linked</td>\n</tr>\n<tr>\n<td>external_id</td>\n<td>Vimeo generated video id</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","modules","vimeo","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6cc02e48-f03d-4885-a0b0-3d94760ab016"},{"name":"Delete a vimeo Video","id":"9eceeffd-85ce-4f61-abca-ae9e21155693","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"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/modules/vimeo/1","urlObject":{"path":["v1","modules","vimeo","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9eceeffd-85ce-4f61-abca-ae9e21155693"}],"id":"bb8dee83-baaa-4dd3-bb4f-b6f331b2f8cd","_postman_id":"bb8dee83-baaa-4dd3-bb4f-b6f331b2f8cd","description":""},{"name":"SendCloud","item":[{"name":"New Request","id":"20c80890-0c09-40e3-b8ea-9ef27f7d3bba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"20c80890-0c09-40e3-b8ea-9ef27f7d3bba"}],"id":"dfd670e0-51db-4290-8738-01384cc63b97","_postman_id":"dfd670e0-51db-4290-8738-01384cc63b97","description":""}],"id":"43f9e5d7-6e35-4a1c-952e-bcd959a2a84b","_postman_id":"43f9e5d7-6e35-4a1c-952e-bcd959a2a84b","description":""},{"name":"Shipping management","item":[{"name":"Shipping Label","item":[{"name":"Update a shipping label","id":"cc369d96-d18c-4f7d-a163-9f4395a270aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"http://origami-marketplace.com\",\n    \"order_seller_id\": 1,\n    \"type\": \"boxtal\",\n    \"extra_info\": \"\",\n    \"reference\": \"ABCDEF\",\n    \"state\": \"VALIDATED\",\n    \"warehouse_fulfillment_id\": 1\n\n}"},"url":"{{domain}}/v1/shipping/labels/1","description":"<p>Update an existing<code>ShippingLabel</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>order_sellers.show</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingLabel</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>URL of the generated shipping label</td>\n<td>String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>id of the related <code>OrderSeller</code></td>\n<td>Must be an <code>OrderSeller</code> id.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Type of the <code>ShippingLabel</code>, usually the name of the module used to create this <code>ShippingLabel</code>.</td>\n<td>String.</td>\n</tr>\n<tr>\n<td>extra_info</td>\n<td>Contains response of shipping platform used, after it tryed to create the label. It can contains additional information about <code>ShippingLabel</code>, or, if state of <code>ShippingLabel</code> is <code>ERROR</code>, it contains the logs of this state.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>Reference of the <code>ShippingLabel,</code> corresponding to the ID of this <code>label</code> created on the shipping plateform</td>\n<td>Nullable.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Current state of the <code>ShippingLabel</code>.</td>\n<td>Enum: <code>WAITING</code>, <code>VALIDATED</code> or <code>ERROR</code>.</td>\n</tr>\n<tr>\n<td>warehouse_fullfilment_id</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","labels","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc369d96-d18c-4f7d-a163-9f4395a270aa"}],"id":"51735abe-31c9-4b9c-810b-c81155b49141","_postman_id":"51735abe-31c9-4b9c-810b-c81155b49141","description":""},{"name":"Shipping Packs","item":[{"name":"List all shipping packs","id":"ef4402b5-c165-45d6-92fc-8a8fa0d27853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/packs","description":"<p>Get all existing <code>ShippingPack</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_packs.index</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingPack</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None</p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","packs"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef4402b5-c165-45d6-92fc-8a8fa0d27853"},{"name":"Get a shipping pack","id":"dc299b1a-bf93-46d3-999d-405a2729009c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/packs/1","description":"<p>Get an existing <code>ShippingPack</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_packs.show</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingPack</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None</p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","packs","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc299b1a-bf93-46d3-999d-405a2729009c"},{"name":"Create a shipping pack","id":"4dacbf14-41ba-4e9a-b075-45f974c69a18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Shipping Pack 1\",\n    \"description\": \"This is a shipping pack\",\n    \"max_weight\": 1.0, \n    \"min_weight\": 1.0,\n    \"width\": 12,\n    \"length\": 15, \n    \"height\": 30\n}"},"url":"{{domain}}/v1/shipping/packs","description":"<p>Create a <code>ShippingPack</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_packs.create</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingPack</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th>Rules</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations.*.language_id</td>\n<td>ID of language used to create the name and description.</td>\n<td>Required. Existing ID of a language.</td>\n</tr>\n<tr>\n<td>translations.*.name</td>\n<td>Name of the <code>ShippingPack</code></td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>translations.*.description</td>\n<td>Description of the <code>ShippingPack</code></td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>max_weight</td>\n<td>Maximum weight of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>min_weight</td>\n<td>Mininmum weight of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Width of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>length</td>\n<td>Length of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>height</td>\n<td>Height of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","packs"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4dacbf14-41ba-4e9a-b075-45f974c69a18"},{"name":"Update a shipping pack","id":"63279eaf-59d5-4376-a83a-f3b3b7f463d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Shipping Pack 1\",\n    \"description\": \"This is a shipping pack\",\n    \"max_weight\": 1.0, \n    \"min_weight\": 1.0,\n    \"width\": 12,\n    \"length\": 15, \n    \"height\": 30\n}"},"url":"{{domain}}/v1/shipping/packs/1","description":"<p>Update an existing <code>ShippingPack</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_packs.index</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingPack</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>translations.*.language_id</td>\n<td>ID of language used to create the name and description.</td>\n<td>Required with translations. Existing ID of a language.</td>\n</tr>\n<tr>\n<td>translations.*.name</td>\n<td>Name of the <code>ShippingPack</code></td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>translations.*.description</td>\n<td>Description of the <code>ShippingPack</code></td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td>max_weight</td>\n<td>Maximum weight of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>min_weight</td>\n<td>Mininmum weight of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Width of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>length</td>\n<td>Length of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td>height</td>\n<td>Height of the <code>ShippingPack</code></td>\n<td>Nullable. Integer.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","packs","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63279eaf-59d5-4376-a83a-f3b3b7f463d6"},{"name":"Delete a shipping pack","id":"2047d5b8-8356-4e00-bf0f-b1516fa81a5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/packs/1","description":"<p>Delete a <code>ShippingPack</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_packs.index</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingPack</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","packs","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2047d5b8-8356-4e00-bf0f-b1516fa81a5b"}],"id":"775e56e3-1ab9-498a-b9ca-4019296ae0ac","_postman_id":"775e56e3-1ab9-498a-b9ca-4019296ae0ac","description":""},{"name":"Shipping Type","item":[{"name":"List all shipping types","id":"daec6b84-fc22-4b08-af93-6ecf14ad8874","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/types","description":"<p>Retrieve a list of existing <code>ShippingType</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.index</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Type-7e86561dbe8447c8bdd9a10c009855e0\">ShippingType</a></p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"01465a2c-aa2e-4c16-91c4-ade4036dbcc3","name":"List all shipping types","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 25 Apr 2022 08:41:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"de1f363ce9d002e607d0cb20ad773d48a6f77339\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"created_at\": \"2020-09-15T06:15:33.000000Z\",\n            \"updated_at\": \"2021-12-24T10:46:23.000000Z\",\n            \"shipping_key\": null,\n            \"shipping_payable_by_operator\": 0,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Livraison à domicile\",\n                        \"description\": \"24 à 72H\",\n                        \"delay\": \"24h - 48h\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"created_at\": \"2020-12-07T12:32:01.000000Z\",\n            \"updated_at\": \"2021-12-24T10:46:23.000000Z\",\n            \"shipping_key\": null,\n            \"shipping_payable_by_operator\": 0,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Click & collect\",\n                        \"description\": \"Click & collect\",\n                        \"delay\": \"24h - 48h\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 4,\n            \"created_at\": \"2021-07-26T08:55:21.000000Z\",\n            \"updated_at\": \"2022-03-24T15:23:03.000000Z\",\n            \"shipping_key\": null,\n            \"shipping_payable_by_operator\": 0,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Express\",\n                        \"description\": \"Livraisons sous 24h\",\n                        \"delay\": \"24h\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 5,\n            \"created_at\": \"2021-10-29T13:30:35.000000Z\",\n            \"updated_at\": \"2021-10-29T13:30:35.000000Z\",\n            \"shipping_key\": null,\n            \"shipping_payable_by_operator\": 0,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Remise en \\\"main libre\\\"\",\n                        \"description\": \"Remise en \\\"main libre\\\"\",\n                        \"delay\": \"48h\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 7,\n            \"created_at\": \"2021-12-29T17:07:54.000000Z\",\n            \"updated_at\": \"2021-12-29T17:07:54.000000Z\",\n            \"shipping_key\": null,\n            \"shipping_payable_by_operator\": 0,\n            \"translations\": {\n                \"data\": [\n                    {\n                        \"locale\": \"fr\",\n                        \"default\": false,\n                        \"language_id\": 1,\n                        \"name\": \"Livraison longue durée\",\n                        \"description\": \"Livraison longue durée\",\n                        \"delay\": \"240H\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 5,\n            \"count\": 5,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"daec6b84-fc22-4b08-af93-6ecf14ad8874"},{"name":"Get a shipping type","id":"27c160d8-fb42-4cb1-9605-0fd5cf21abf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/types/1","description":"<p>Retrieve a<code>ShippingType</code>with its id</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.show</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Type-7e86561dbe8447c8bdd9a10c009855e0\">ShippingType</a></p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","types","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"86c2ea9b-c144-4d90-a970-607b5ce12e0c","name":"Get a shipping type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/types/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 25 Apr 2022 08:46:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"48930eb9eded6c0dbf426d666d3f4d40bce59dcb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"created_at\": \"2020-09-15T06:15:33.000000Z\",\n        \"updated_at\": \"2021-12-24T10:46:23.000000Z\",\n        \"shipping_key\": null,\n        \"shipping_payable_by_operator\": 0,\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"Livraison à domicile\",\n                    \"description\": \"24 à 72H\",\n                    \"delay\": \"24h - 48h\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"27c160d8-fb42-4cb1-9605-0fd5cf21abf8"},{"name":"Get shipping points related to a shipping type","id":"f15482b8-5601-4130-9814-3dfc51a8b4b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/types/1/shipping-points","description":"<p>Retrieve delivery points related to a<code>ShippingType</code>from the shipping type id.<br />Note that this endpoint is only available for specific shipping types:<br />- those related to shipping points delivery. Otherwise, an error will be returned.<br />- those related to an activated shipping module (for instance, the module SendCloud).</p>\n<p>2 different ways are possible to get the delivery points:<br />- in a specific postcode.<br />- in a geographic zone defined by latitude, longitude and a radius in meters.</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.show</code> permission is needed.</p>\n<h3 id=\"query-parameters\">Query parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country_iso2</td>\n<td>Iso2 code relate dto the country where will be located the delivery points returned in the response.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>Postcode in where will be located the shipping points returned in the response.</td>\n<td>Nullable.  <br />Required without radius.  <br />String.</td>\n</tr>\n<tr>\n<td>radius</td>\n<td>Radius in meters around the gegraphic point defined by latitude and longitude. The delivery points returned will be located in the geographic zone defined by these 3 parameters.</td>\n<td>Nullable.  <br />Required without postcode.  <br />Integer. Min: 100, max: 50000.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Latitude.</td>\n<td>Nullable.  <br />Required with radius.  <br />String.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Longitude.</td>\n<td>Nullable.  <br />Required with radius.  <br />String.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","types","1","shipping-points"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"42cc3a77-f29b-4f0e-9d2b-7063f41ed4d7","name":"Get a shipping type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/types/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 25 Apr 2022 08:46:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"48930eb9eded6c0dbf426d666d3f4d40bce59dcb\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"created_at\": \"2020-09-15T06:15:33.000000Z\",\n        \"updated_at\": \"2021-12-24T10:46:23.000000Z\",\n        \"shipping_key\": null,\n        \"shipping_payable_by_operator\": 0,\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"Livraison à domicile\",\n                    \"description\": \"24 à 72H\",\n                    \"delay\": \"24h - 48h\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"f15482b8-5601-4130-9814-3dfc51a8b4b4"},{"name":"Create a shipping type","id":"291f255e-d554-4755-88ca-ddc595efcada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Colissimo\",\n        \"description\": \"Colissimo\",\n        \"delay\": \"24h/48h\",\n        \"shipping_payable_by_operator\": false\n    }\n  ]\n}"},"url":"{{domain}}/v1/shipping/types","description":"<p>Create a new<code>ShippingType</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.create</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Type-7e86561dbe8447c8bdd9a10c009855e0\">ShippingType</a></p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shipping_payable_by_operator</td>\n<td>Boolean that define if shipping costs of this shipping type are paid by the operator or the seller</td>\n</tr>\n<tr>\n<td><strong>translations</strong></td>\n<td>List of <code>shipping_type</code> translations</td>\n</tr>\n<tr>\n<td><strong>translations.*.language_id</strong></td>\n<td>Language id for this translation</td>\n</tr>\n<tr>\n<td><strong>translations.*.name</strong></td>\n<td>The <code>shipping type</code> title that will be displayed on order checkout</td>\n</tr>\n<tr>\n<td>translations.*.description</td>\n<td>The <code>shipping type</code>description that will be displayed on order checkout</td>\n</tr>\n<tr>\n<td>translations.*.delay</td>\n<td>Define the <code>shipping type</code> delay. This field is only for information and display. You can configure delay with more details on <code>shipping offers</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1d9c0cb0-0074-4f47-89e1-227de02df3ff","name":"Create a shipping type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Colissimo\",\n        \"description\": \"Colissimo\",\n        \"delay\": \"24h/48h\",\n        \"shipping_payable_by_operator\": false\n    }\n  ]\n}"},"url":"{{domain}}/v1/shipping/types"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 25 Apr 2022 08:49:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.17"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"a921886ad05789197761f5128b1a7595bcdabb36\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 8,\n        \"created_at\": \"2022-04-25T08:49:31.000000Z\",\n        \"updated_at\": \"2022-04-25T08:49:31.000000Z\",\n        \"shipping_key\": null,\n        \"shipping_payable_by_operator\": 0,\n        \"translations\": {\n            \"data\": [\n                {\n                    \"locale\": \"fr\",\n                    \"default\": false,\n                    \"language_id\": 1,\n                    \"name\": \"Colissimo\",\n                    \"description\": \"Colissimo\",\n                    \"delay\": \"24h/48h\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"291f255e-d554-4755-88ca-ddc595efcada"},{"name":"Update a shipping type","id":"ddc8f928-7514-4293-8e3a-2baa519a7654","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Colissimo\",\n        \"description\": \"Colissimo\",\n        \"delay\": \"24h/48h\",\n        \"shipping_payable_by_operator\": false\n    }\n  ]\n}"},"url":"{{domain}}/v1/shipping/types/8","description":"<p>Update an existing<code>ShippingType</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.update</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Type-7e86561dbe8447c8bdd9a10c009855e0\">ShippingType</a></p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shipping_payable_by_operator</td>\n<td>Boolean that define if shipping costs of this shipping type are paid by the operator or the seller</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>List of <code>shipping_type</code> translations</td>\n</tr>\n<tr>\n<td>translations.*.language_id</td>\n<td>Language id for this translation</td>\n</tr>\n<tr>\n<td>translations.*.name</td>\n<td>The <code>shipping type</code> title that will be displayed on order checkout</td>\n</tr>\n<tr>\n<td>translations.*.description</td>\n<td>The <code>shipping type</code>description that will be displayed on order checkout</td>\n</tr>\n<tr>\n<td>translations.*.delay</td>\n<td>Define the <code>shipping type</code> delay. This field is only for information and display. You can configure delay with more details on <code>shipping offers</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","types","8"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7b03e284-6b8f-4772-b6a5-3795db4fd9e8","name":"Update a shipping type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"translations\": [\n    {\n        \"language_id\": \"1\",\n        \"name\": \"Colissimo\",\n        \"description\": \"Colissimo\",\n        \"delay\": \"24h/48h\",\n        \"shipping_payable_by_operator\": false\n    }\n  ]\n}"},"url":"{{domain}}/v1/shipping/types/8"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 25 Apr 2022 08:50:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ddc8f928-7514-4293-8e3a-2baa519a7654"},{"name":"Delete a shipping type","id":"0e9202c1-7998-444e-b6c3-3fb680453194","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/types/8","description":"<p>Delete an existing<code>ShippingType</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.delete</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Type-7e86561dbe8447c8bdd9a10c009855e0\">ShippingType</a></p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","types","8"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"67b5b10c-32a1-4d5f-b28b-60d4a3fae4f8","name":"Delete a shipping type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/types/8"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Mon, 25 Apr 2022 08:51:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0e9202c1-7998-444e-b6c3-3fb680453194"}],"id":"d8ea7385-da09-472e-896e-ce20147dd4c2","description":"<p>You can find detailled information about this model here : <a href=\"https://shrub-bubble-adb.notion.site/Shipping-Type-7e86561dbe8447c8bdd9a10c009855e0\">ShippingType</a></p>\n","event":[{"listen":"prerequest","script":{"id":"abc497a6-ff64-443f-bb04-5895b98f612e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc604638-70ff-4481-b816-7530bf84f09e","type":"text/javascript","exec":[""]}}],"_postman_id":"d8ea7385-da09-472e-896e-ce20147dd4c2"},{"name":"Shipping Offer","item":[{"name":"List all shipping offers","id":"938ca080-b4b4-4224-859c-b16841cef6df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/offers","description":"<p>Retrieve a list of existing <code>ShippingOffer</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_offer.index</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Offer-b2effa2e49c746948edf77a085959fd0\">ShippingOffer</a></p>\n","urlObject":{"path":["v1","shipping","offers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2f013b7e-69e8-46b4-95ea-f47bc61de783","name":"List all shipping offers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/offers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 26 Apr 2022 09:14:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"0168007fc578b9b37f7c9cb863d4d7cbeee0a628\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"warehouse_id\": null,\n            \"seller_id\": null,\n            \"shipping_type_id\": 4,\n            \"shipping_method\": \"weight\",\n            \"out_of_range\": \"disable\",\n            \"name\": \"Chronopost\",\n            \"url_tracking\": null,\n            \"max_width\": \"1000\",\n            \"max_height\": \"1000\",\n            \"max_depth\": \"1000\",\n            \"max_weight\": \"10000\",\n            \"is_free\": 0,\n            \"created_at\": \"2020-09-15T06:16:53.000000Z\",\n            \"updated_at\": \"2022-03-24T15:23:27.000000Z\",\n            \"extra_infos\": null,\n            \"nb_days_min\": null,\n            \"nb_days_max\": null,\n            \"logo_url\": \"https://start.docuware.com/hubfs/Case%20Studies%20-%20FR/Chronopost/logo%20Chronopost.png\"\n        },\n        {\n            \"id\": 3,\n            \"warehouse_id\": null,\n            \"seller_id\": null,\n            \"shipping_type_id\": 1,\n            \"shipping_method\": \"weight\",\n            \"out_of_range\": \"highest\",\n            \"name\": \"Colissimo\",\n            \"url_tracking\": \"https://colissimo.com/suivi\",\n            \"max_width\": \"42\",\n            \"max_height\": \"42\",\n            \"max_depth\": \"42\",\n            \"max_weight\": \"20\",\n            \"is_free\": 0,\n            \"created_at\": \"2020-12-07T12:33:09.000000Z\",\n            \"updated_at\": \"2022-03-24T15:10:46.000000Z\",\n            \"extra_infos\": null,\n            \"nb_days_min\": 1,\n            \"nb_days_max\": 2,\n            \"logo_url\": \"https://upload.wikimedia.org/wikipedia/fr/3/39/Colissimo_Logo.svg\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 10,\n            \"count\": 10,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"938ca080-b4b4-4224-859c-b16841cef6df"},{"name":"Get a shipping offer","id":"e24cf310-6604-4c46-9106-7e2a4cd43e70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/offers/31?include=shipping_type.module,seller,shipping_offer_zones,seller.default_tax,shipping_type.visibilities.model,visibilities,warehouse","description":"<p>Retrieve a<code>ShippingOffer</code>with its id</p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_offer.index</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Offer-b2effa2e49c746948edf77a085959fd0\">ShippingOffer</a></p>\n","urlObject":{"path":["v1","shipping","offers","31"],"host":["{{domain}}"],"query":[{"key":"include","value":"shipping_type.module,seller,shipping_offer_zones,seller.default_tax,shipping_type.visibilities.model,visibilities,warehouse"}],"variable":[]}},"response":[{"id":"223c0dac-248c-4325-b05b-d593a9b553e2","name":"Get a shipping offer","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/shipping/offers/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 26 Apr 2022 09:18:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/8.0.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"W/\"85104c127f7e5099e240e9b6130cba71a5368eaa\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"warehouse_id\": null,\n        \"seller_id\": null,\n        \"shipping_type_id\": 4,\n        \"shipping_method\": \"weight\",\n        \"out_of_range\": \"disable\",\n        \"name\": \"Chronopost\",\n        \"url_tracking\": null,\n        \"max_width\": \"1000\",\n        \"max_height\": \"1000\",\n        \"max_depth\": \"1000\",\n        \"max_weight\": \"10000\",\n        \"is_free\": 0,\n        \"created_at\": \"2020-09-15T06:16:53.000000Z\",\n        \"updated_at\": \"2022-03-24T15:23:27.000000Z\",\n        \"extra_infos\": null,\n        \"nb_days_min\": null,\n        \"nb_days_max\": null,\n        \"logo_url\": \"https://start.docuware.com/hubfs/Case%20Studies%20-%20FR/Chronopost/logo%20Chronopost.png\"\n    }\n}"}],"_postman_id":"e24cf310-6604-4c46-9106-7e2a4cd43e70"},{"name":"Create a shipping offer","id":"7fb8ac86-8713-4113-b9ff-ce0755a3ccc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"seller_id\": 4,\n    \"shipping_type_id\": 1,\n    \"out_of_range\": \"disable\",\n    \"shipping_method\": \"price\",\n    \"name\": \"Test offer\",\n    \"url_tracking\": \"https://tracking.com?tracking=@\",\n    \"max_height\": 1000,\n    \"max_width\": 1000,\n    \"max_weight\": 1000,\n    \"max_depth\": 1000,\n    \"is_free\": false,\n    \"nb_days_min\": 2,\n    \"nb_days_max\": 3,\n    \"offer_zones\": [\n        {\n            \"shipping_zone_id\": 1,\n            \"min_value\": 0,\n            \"max_value\": 10,\n            \"price\": 5\n        },\n        {\n            \"shipping_zone_id\": 5,\n            \"min_value\": 11,\n            \"max_value\": 20,\n            \"price\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/shipping/offers","description":"<p>Create a new <code>ShippingOffer</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.create</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Offer-b2effa2e49c746948edf77a085959fd0\">ShippingOffer</a></p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>seller_id</td>\n<td>A <code>shipping offer</code> can be available for only one <code>seller</code>. If none is provided, the <code>shipping offer</code> will be available for all <code>sellers</code>.</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>A <code>shipping offer</code> can be available for only one <code>warehouse</code>. if none is provided, the <code>shipping offer</code> will be available for all <code>warehouses</code>.</td>\n</tr>\n<tr>\n<td>shipping_type_id</td>\n<td>Must be linked to a <code>shipping type</code></td>\n</tr>\n<tr>\n<td><strong>tax_id</strong></td>\n<td>The <code>tax</code> that will be applied on <code>shipping</code> prices on a <code>cart</code></td>\n</tr>\n<tr>\n<td><strong>out_of_range</strong></td>\n<td>Defines the <code>shipping offer</code> behaviour if the <code>cart</code> is out of the ranges configured. Available values : “disable\" to disable <code>shipping offer</code> or “highest\" to choose the highest range by default</td>\n</tr>\n<tr>\n<td><strong>shipping_method</strong></td>\n<td>Defines the prices by zone ranges method.  <br />Available values : “price” or “weight”.</td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td>The <code>shipping offer</code> name</td>\n</tr>\n<tr>\n<td>url_tracking</td>\n<td>Defines the url tracking template for the offer. The symbole @ will represent the tracking number.  <br />Example : <a href=\"https://www.laposte.fr/outils/suivre-vos-envois?code=@\">https://www.laposte.fr/outils/suivre-vos-envois?code=@</a></td>\n</tr>\n<tr>\n<td>max_height</td>\n<td>Defines the package max height allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>max_width  <br /></td>\n<td>Defines the package max width allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>max_weight</td>\n<td>Defines the package max weight allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>max_depth</td>\n<td>Defines the package max depth allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td><strong>is_free</strong></td>\n<td>Defines if the <code>shipping offer</code> is free for the customers or not. If it’s free, prices by zone will be useless.  <br />Available values : 0 or 1.</td>\n</tr>\n<tr>\n<td>shipping_free_price</td>\n<td>Defines the <code>cart</code> price from which no shipping costs will be applied on the <code>cart</code></td>\n</tr>\n<tr>\n<td>nb_days_min</td>\n<td>Defines the minimum shipping delay in days</td>\n</tr>\n<tr>\n<td>nb_days_max</td>\n<td>Defines the maximum shipping delay in days</td>\n</tr>\n<tr>\n<td>offer_zones</td>\n<td>List of prices by ranges and <code>shipping zones</code></td>\n</tr>\n<tr>\n<td>offer_zones.*.shipping_zone_id  <br /></td>\n<td>Range shipping zone id</td>\n</tr>\n<tr>\n<td>offer_zones.*.min_value</td>\n<td>Range min value</td>\n</tr>\n<tr>\n<td>offer_zones.*.max_value</td>\n<td>Range max value</td>\n</tr>\n<tr>\n<td><strong>is_activated_by_default</strong></td>\n<td><code>Sellers</code> can enable or disable some <code>shipping offers</code> for them. Define if the <code>shipping offer</code> is enable or disable by default for <code>sellers</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","offers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1670d74c-cf2e-4c67-9373-dda9c679f91e","name":"Create a shipping offer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"seller_id\": 4,\n    \"shipping_type_id\": 1,\n    \"out_of_range\": \"disable\",\n    \"shipping_method\": \"price\",\n    \"name\": \"Test offer\",\n    \"url_tracking\": \"https://tracking.com?tracking=@\",\n    \"max_height\": 1000,\n    \"max_width\": 1000,\n    \"max_weight\": 1000,\n    \"max_depth\": 1000,\n    \"is_free\": false,\n    \"nb_days_min\": 2,\n    \"nb_days_max\": 3,\n    \"offer_zones\": [\n        {\n            \"shipping_zone_id\": 1,\n            \"min_value\": 0,\n            \"max_value\": 10,\n            \"price\": 5\n        },\n        {\n            \"shipping_zone_id\": 5,\n            \"min_value\": 11,\n            \"max_value\": 20,\n            \"price\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/shipping/offers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 26 Apr 2022 09:24:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.18"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"9a1a162a9e52c6fc7ef0fed5cc7ca3012687e0e6\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 28,\n        \"warehouse_id\": null,\n        \"seller_id\": 4,\n        \"shipping_type_id\": 1,\n        \"shipping_method\": \"price\",\n        \"out_of_range\": \"disable\",\n        \"name\": \"Test offer\",\n        \"url_tracking\": \"https://tracking.com?tracking=@\",\n        \"max_width\": \"1000\",\n        \"max_height\": \"1000\",\n        \"max_depth\": \"1000\",\n        \"max_weight\": \"1000\",\n        \"is_free\": 0,\n        \"created_at\": \"2022-04-26T09:24:34.000000Z\",\n        \"updated_at\": \"2022-04-26T09:24:34.000000Z\",\n        \"extra_infos\": null,\n        \"nb_days_min\": 2,\n        \"nb_days_max\": 3,\n        \"logo_url\": null\n    }\n}"}],"_postman_id":"7fb8ac86-8713-4113-b9ff-ce0755a3ccc6"},{"name":"Update a shipping offer","id":"3182c399-e360-4d0d-b080-3f4a8ae2150c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"seller_id\": 4,\n    \"shipping_type_id\": 1,\n    \"out_of_range\": \"disable\",\n    \"shipping_method\": \"price\",\n    \"name\": \"Test offer\",\n    \"url_tracking\": \"https://tracking.com?tracking=@\",\n    \"max_height\": 1000,\n    \"max_width\": 1000,\n    \"max_weight\": 1000,\n    \"max_depth\": 1000,\n    \"is_free\": false,\n    \"nb_days_min\": 2,\n    \"nb_days_max\": 3,\n    \"offer_zones\": [\n        {\n            \"shipping_zone_id\": 1,\n            \"min_value\": 0,\n            \"max_value\": 10,\n            \"price\": 5\n        },\n        {\n            \"shipping_zone_id\": 5,\n            \"min_value\": 11,\n            \"max_value\": 20,\n            \"price\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/shipping/offers/28","description":"<p>Update an existing <code>ShippingOffer</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_type.update</code> permission is needed.</p>\n<h3 id=\"model\">Model</h3>\n<p><a href=\"https://shrub-bubble-adb.notion.site/Shipping-Offer-b2effa2e49c746948edf77a085959fd0\">ShippingOffer</a></p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>seller_id</td>\n<td>A <code>shipping offer</code> can be available for only one <code>seller</code>. If none is provided, the <code>shipping offer</code> will be available for all <code>sellers</code>.</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>A <code>shipping offer</code> can be available for only one <code>warehouse</code>. if none is provided, the <code>shipping offer</code> will be available for all <code>warehouses</code>.</td>\n</tr>\n<tr>\n<td>shipping_type_id</td>\n<td>Must be linked to a <code>shipping type</code></td>\n</tr>\n<tr>\n<td>tax_id</td>\n<td>The <code>tax</code> that will be applied on <code>shipping</code> prices on a <code>cart</code></td>\n</tr>\n<tr>\n<td>out_of_range</td>\n<td>Defines the <code>shipping offer</code> behaviour if the <code>cart</code> is out of the ranges configured. Available values : “disable\" to disable <code>shipping offer</code> or “highest\" to choose the highest range by default</td>\n</tr>\n<tr>\n<td>shipping_method</td>\n<td>Defines the prices by zone ranges method.  <br />Available values : “price” or “weight”.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The <code>shipping offer</code> name</td>\n</tr>\n<tr>\n<td>url_tracking</td>\n<td>Defines the url tracking template for the offer. The symbole @ will represent the tracking number.  <br />Example : <a href=\"https://www.laposte.fr/outils/suivre-vos-envois?code=@\">https://www.laposte.fr/outils/suivre-vos-envois?code=@</a></td>\n</tr>\n<tr>\n<td>max_height</td>\n<td>Defines the package max height allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>max_width  <br /></td>\n<td>Defines the package max width allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>max_weight</td>\n<td>Defines the package max weight allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>max_depth</td>\n<td>Defines the package max depth allowed by the <code>shipping offer</code></td>\n</tr>\n<tr>\n<td>is_free</td>\n<td>Defines if the <code>shipping offer</code> is free for the customers or not. If it’s free, prices by zone will be useless.  <br />Available values : 0 or 1.</td>\n</tr>\n<tr>\n<td>shipping_free_price</td>\n<td>Defines the <code>cart</code> price from which no shipping costs will be applied on the <code>cart</code></td>\n</tr>\n<tr>\n<td>nb_days_min</td>\n<td>Defines the minimum shipping delay in days</td>\n</tr>\n<tr>\n<td>nb_days_max</td>\n<td>Defines the maximum shipping delay in days</td>\n</tr>\n<tr>\n<td>offer_zones</td>\n<td>List of prices by ranges and <code>shipping zones</code></td>\n</tr>\n<tr>\n<td>offer_zones.*.shipping_zone_id  <br /></td>\n<td>Range shipping zone id</td>\n</tr>\n<tr>\n<td>offer_zones.*.min_value</td>\n<td>Range min value</td>\n</tr>\n<tr>\n<td>offer_zones.*.max_value</td>\n<td>Range max value</td>\n</tr>\n<tr>\n<td>is_activated_by_default</td>\n<td><code>Sellers</code> can enable or disable some <code>shipping offers</code> for them. Define if the <code>shipping offer</code> is enable or disable by default for <code>sellers</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","offers","28"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8e35ade1-0a47-4067-958b-a2c37333c2f2","name":"Update a shipping offer","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"seller_id\": 4,\n    \"shipping_type_id\": 1,\n    \"out_of_range\": \"disable\",\n    \"shipping_method\": \"price\",\n    \"name\": \"Test offer\",\n    \"url_tracking\": \"https://tracking.com?tracking=@\",\n    \"max_height\": 1000,\n    \"max_width\": 1000,\n    \"max_weight\": 1000,\n    \"max_depth\": 1000,\n    \"is_free\": false,\n    \"nb_days_min\": 2,\n    \"nb_days_max\": 3,\n    \"offer_zones\": [\n        {\n            \"shipping_zone_id\": 1,\n            \"min_value\": 0,\n            \"max_value\": 10,\n            \"price\": 5\n        },\n        {\n            \"shipping_zone_id\": 5,\n            \"min_value\": 11,\n            \"max_value\": 20,\n            \"price\": 10\n        }\n    ]\n}"},"url":"{{domain}}/v1/shipping/offers/28"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 26 Apr 2022 09:28:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3182c399-e360-4d0d-b080-3f4a8ae2150c"},{"name":"Delete a shipping offer","id":"d76624bc-ba8d-4a17-9091-14677c5a2bdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/offers/28","description":"<p>Delete an existing<code>ShippingOffer</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>shipping_offer.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","shipping","offers","28"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0e2b0db1-6741-4ea8-8c3f-0eb39c4d312a","name":"Delete a shipping offer","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/offers/28"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.10"},{"key":"Date","value":"Tue, 26 Apr 2022 09:28:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.0.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d76624bc-ba8d-4a17-9091-14677c5a2bdc"},{"name":"Attach or detach a shipping offer from a warehouse","id":"23aa7122-837f-4899-9068-4bae4b191da6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"exclude\": 0,\n    \"shipping_offer_id\": 1,\n    \"warehouse_id\": 3\n}"},"url":"{{domain}}/v1/shipping/offers/exclude_warehouse","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>warehouse_id</strong></td>\n<td>ID of the <code>Warehouse</code> to attach ou detach from <code>ShippingOffer</code> defined by <code>shipping_offer_id</code>.</td>\n<td>Required. Integer. Must be a <code>Warehouse</code> id.</td>\n</tr>\n<tr>\n<td><strong>shipping_offer_id</strong></td>\n<td>ID of the <code>ShippingOffer</code> to attach or detach from <code>Warehouse</code> defined by <code>warehouse_id</code>.</td>\n<td>Required. Integer. Must be a <code>ShippingOffer</code> id.</td>\n</tr>\n<tr>\n<td><strong>exclude</strong></td>\n<td>Defines if the <code>ShippingOffer</code> will be detached from the <code>Warehouse</code> or attached to the <code>Warehouse</code>.</td>\n<td>Required. Boolean.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","shipping","offers","exclude_warehouse"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"23aa7122-837f-4899-9068-4bae4b191da6"}],"id":"e2586acf-6c5d-4e08-af7f-1d8b9efca939","description":"<p>You can find detailled information about this model here : <a href=\"https://shrub-bubble-adb.notion.site/Shipping-Offer-b2effa2e49c746948edf77a085959fd0\">ShippingOffer</a></p>\n","event":[{"listen":"prerequest","script":{"id":"abc497a6-ff64-443f-bb04-5895b98f612e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc604638-70ff-4481-b816-7530bf84f09e","type":"text/javascript","exec":[""]}}],"_postman_id":"e2586acf-6c5d-4e08-af7f-1d8b9efca939"},{"name":"Shipping Zone","item":[{"name":"List all shipping zones","id":"a5d4cf60-2635-47d5-af21-b20f6016cce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/zones","description":"<p>Get all existing <code>ShippingZone</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_zones.index</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingZone</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None</p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","zones"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5d4cf60-2635-47d5-af21-b20f6016cce9"},{"name":"Get a shipping zone","id":"51f26eb9-a68f-4391-9f04-47e599df901e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/zones/1","description":"<p>Get an existing <code>ShippingZone</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_zones.show</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingZone</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None</p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","zones","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"51f26eb9-a68f-4391-9f04-47e599df901e"},{"name":"Create a shipping zone","id":"0e45e787-48df-4a62-a45a-fadd2043dabc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"postcodes\": \"59000,59290,75000\",\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"name\": \"Zone 1\"\n        }\n  ]\n}"},"url":"{{domain}}/v1/shipping/zones","description":"<p>Create a <code>ShippingZone</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_zones.create</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingZone</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>postcodes</td>\n<td>List of all postcodes</td>\n</tr>\n<tr>\n<td><strong>translations</strong></td>\n<td>List of <code>shipping_zone</code> translations</td>\n</tr>\n<tr>\n<td><strong>translations.*.language_id</strong></td>\n<td>Language id for this translation</td>\n</tr>\n<tr>\n<td><strong>translations.*.name</strong></td>\n<td>The <code>shipping_zone</code> title that will be displayed when using this language</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","zones"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e45e787-48df-4a62-a45a-fadd2043dabc"},{"name":"Update a shipping zone","id":"5c0ee33b-6c31-422e-b12c-ca1bd476d334","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"postcodes\": \"59000,59290,75000\",\n    \"translations\": [\n        {\n            \"language_id\": \"1\",\n            \"name\": \"Zone 1\"\n        }\n  ]\n}"},"url":"{{domain}}/v1/shipping/zones/1","description":"<p>Update an existing <code>ShippingZone</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_zones.update</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingZone</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>postcodes</td>\n<td>List of postcodes</td>\n</tr>\n<tr>\n<td><strong>translations</strong></td>\n<td>List of <code>shipping_zone</code> translations</td>\n</tr>\n<tr>\n<td><strong>translations.*.language_id</strong></td>\n<td>Language id for this translation</td>\n</tr>\n<tr>\n<td><strong>translations.*.name</strong></td>\n<td>The <code>shipping_zone</code> title that will be displayed when using this language</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","zones","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c0ee33b-6c31-422e-b12c-ca1bd476d334"},{"name":"Delete a shipping zone","id":"f297e7c0-0da7-4c93-bb94-dc47f9196a02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/shipping/zone/1","description":"<p>Delete a <code>ShippingZone</code></p>\n<h3 id=\"permissions\">Permissions</h3>\n<p>A user needs to be authenticated and have <code>shipping_packs.delete</code> permission</p>\n<h3 id=\"model\">Model</h3>\n<p>ShippingPack</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<p>None</p>\n<h3 id=\"example\">Example</h3>\n","urlObject":{"path":["v1","shipping","zone","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f297e7c0-0da7-4c93-bb94-dc47f9196a02"}],"id":"5a0c25d9-127f-4c91-afc9-4d11357c897f","_postman_id":"5a0c25d9-127f-4c91-afc9-4d11357c897f","description":""}],"id":"d7aa635b-d5ee-4ed3-83ba-ae00aa646bf7","description":"<p>This part is about all the shipping stuff on a marketplace.</p>\n<p>Shipping part is split into several models :</p>\n<ul>\n<li><code>shiping_label</code> : The label that <code>seller</code> put on a package before shipping</li>\n<li><code>shipping_pack</code> : A package template (weight / size) that can be selected by a <code>seller</code> on <code>product</code> creation</li>\n<li><code>shipping_type</code> : The carrier (colissimo / mondial relay) declined in various <code>shipping_offer</code></li>\n<li><code>shipping_offer</code>: A declinaison of a <code>shipping_type</code> for a <code>seller</code> with different prices by <code>shipping_zone</code></li>\n<li><code>shipping_offer_zone</code> : It's a price of a <code>shipping_offer</code> for a <code>shipping_zone</code> defined by a range of <code>order</code> weight or a range of <code>order</code> prices</li>\n<li><code>shipping_zone</code> : The shipping area that can be defined by one or many countries or a postcode range</li>\n</ul>\n<p>All of this models is detailled on their own parts</p>\n","_postman_id":"d7aa635b-d5ee-4ed3-83ba-ae00aa646bf7"},{"name":"Statistics","item":[{"name":"Products","item":[{"name":"Get best product sold","id":"7e4d715a-48a5-4065-b725-92f285ce3b61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"start_date\": \"2021-08-05\",\n    \"end_date\": \"2021-08-06\",\n    \"number\": 11\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/stats/orders/turnover_by_seller","description":"<p>Get best product sold</p>\n<h2 id=\"useful-parameters\">Useful parameters</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>The start date</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>The end date</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>number</td>\n<td>Number of results to display per page</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","stats","orders","turnover_by_seller"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e4d715a-48a5-4065-b725-92f285ce3b61"}],"id":"a7525c73-b731-4ced-b48f-b644edf89de2","_postman_id":"a7525c73-b731-4ced-b48f-b644edf89de2","description":""}],"id":"a6b87550-46b3-4caa-b89d-5e697867acd4","_postman_id":"a6b87550-46b3-4caa-b89d-5e697867acd4","description":""},{"name":"Ticket management","item":[{"name":"Tickets","item":[{"name":"List all tickets","id":"05eb6392-3f92-4520-ab77-ce571102b230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","tickets"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9d2096bd-06c1-4ce8-bb68-72333d65b735","name":"List all tickets","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:10:44 GMT"},{"key":"ETag","value":"\"a8b2ef741859ce7491e1b38223e893695c35c33e\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 18,\n            \"subject\": \"Sujet\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 66008,\n            \"customer_id\": 65482,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-14T10:27:00.000000Z\",\n            \"updated_at\": \"2021-09-29T18:51:14.000000Z\"\n        },\n        {\n            \"id\": 20,\n            \"subject\": \"Question sur le produit\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3449,\n            \"customer_id\": 65482,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-14T10:34:11.000000Z\",\n            \"updated_at\": \"2019-08-14T10:34:11.000000Z\"\n        },\n        {\n            \"id\": 21,\n            \"subject\": \"Question sur le produit\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3449,\n            \"customer_id\": 65482,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-14T10:45:53.000000Z\",\n            \"updated_at\": \"2019-08-14T10:45:53.000000Z\"\n        },\n        {\n            \"id\": 22,\n            \"subject\": \"Question sur le produit\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3449,\n            \"customer_id\": 65482,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-14T10:46:12.000000Z\",\n            \"updated_at\": \"2019-08-14T10:46:12.000000Z\"\n        },\n        {\n            \"id\": 23,\n            \"subject\": \"Question sur le produit\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3449,\n            \"customer_id\": 65482,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-14T10:46:41.000000Z\",\n            \"updated_at\": \"2019-08-14T10:46:41.000000Z\"\n        },\n        {\n            \"id\": 30,\n            \"subject\": \"Service client - Bonjour, \\r\\nAyant fait une vente\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": null,\n            \"customer_id\": 52124,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T08:55:03.000000Z\",\n            \"updated_at\": \"2019-08-26T08:55:03.000000Z\"\n        },\n        {\n            \"id\": 31,\n            \"subject\": \"Service client - Bjr,\\r\\n\\r\\nJ'ai mis en ligne samedi\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": null,\n            \"customer_id\": 61370,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T08:55:04.000000Z\",\n            \"updated_at\": \"2019-08-26T08:55:04.000000Z\"\n        },\n        {\n            \"id\": 32,\n            \"subject\": \"Service client - On ne peut plus trier les\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": null,\n            \"customer_id\": 48881,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T08:55:05.000000Z\",\n            \"updated_at\": \"2019-08-26T08:55:05.000000Z\"\n        },\n        {\n            \"id\": 33,\n            \"subject\": \"Webmaster - Bonjour la nouvelle version et au top\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": null,\n            \"customer_id\": 46660,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T08:55:07.000000Z\",\n            \"updated_at\": \"2019-08-26T08:55:07.000000Z\"\n        },\n        {\n            \"id\": 34,\n            \"subject\": \"négociation\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18619,\n            \"customer_id\": 69556,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T08:57:52.000000Z\",\n            \"updated_at\": \"2019-08-26T08:57:52.000000Z\"\n        },\n        {\n            \"id\": 35,\n            \"subject\": \"Vente\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 9852,\n            \"customer_id\": 36294,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T09:57:02.000000Z\",\n            \"updated_at\": \"2019-08-26T09:57:02.000000Z\"\n        },\n        {\n            \"id\": 36,\n            \"subject\": \"Vente\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 9852,\n            \"customer_id\": 36294,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T09:57:17.000000Z\",\n            \"updated_at\": \"2019-08-26T09:57:17.000000Z\"\n        },\n        {\n            \"id\": 37,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 11192,\n            \"customer_id\": 42194,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T10:32:04.000000Z\",\n            \"updated_at\": \"2019-08-26T10:32:04.000000Z\"\n        },\n        {\n            \"id\": 38,\n            \"subject\": \"Chemise horseware\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 11993,\n            \"customer_id\": 39322,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T10:34:11.000000Z\",\n            \"updated_at\": \"2019-08-29T09:26:18.000000Z\"\n        },\n        {\n            \"id\": 39,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18813,\n            \"customer_id\": 42194,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T10:34:17.000000Z\",\n            \"updated_at\": \"2019-08-26T10:34:17.000000Z\"\n        },\n        {\n            \"id\": 40,\n            \"subject\": \"masque anti-mouche\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8125,\n            \"customer_id\": 39322,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T10:36:36.000000Z\",\n            \"updated_at\": \"2019-08-26T10:36:36.000000Z\"\n        },\n        {\n            \"id\": 41,\n            \"subject\": \"Plus d'informations\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 14775,\n            \"customer_id\": 69673,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T10:50:43.000000Z\",\n            \"updated_at\": \"2019-08-26T19:12:23.000000Z\"\n        },\n        {\n            \"id\": 44,\n            \"subject\": \"Selle Bruno Delgrange\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19988,\n            \"customer_id\": 61229,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T11:51:08.000000Z\",\n            \"updated_at\": \"2019-08-26T11:51:08.000000Z\"\n        },\n        {\n            \"id\": 49,\n            \"subject\": \"Disponibilité\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 12842,\n            \"customer_id\": 69697,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T12:12:46.000000Z\",\n            \"updated_at\": \"2019-08-26T12:12:46.000000Z\"\n        },\n        {\n            \"id\": 52,\n            \"subject\": \"Test\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 47517,\n            \"customer_id\": 66022,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T12:46:32.000000Z\",\n            \"updated_at\": \"2019-08-27T05:38:18.000000Z\"\n        },\n        {\n            \"id\": 53,\n            \"subject\": \"Etrivieres\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 20150,\n            \"customer_id\": 65457,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T12:51:14.000000Z\",\n            \"updated_at\": \"2019-08-26T12:51:14.000000Z\"\n        },\n        {\n            \"id\": 54,\n            \"subject\": \"Étriers\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 65810,\n            \"customer_id\": 65457,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T12:59:33.000000Z\",\n            \"updated_at\": \"2019-08-26T12:59:33.000000Z\"\n        },\n        {\n            \"id\": 55,\n            \"subject\": \"enrenement\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 11993,\n            \"customer_id\": 64319,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T13:06:38.000000Z\",\n            \"updated_at\": \"2019-08-29T09:25:25.000000Z\"\n        },\n        {\n            \"id\": 56,\n            \"subject\": \"enrenement\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 11993,\n            \"customer_id\": 64319,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T13:06:52.000000Z\",\n            \"updated_at\": \"2019-08-29T09:24:56.000000Z\"\n        },\n        {\n            \"id\": 57,\n            \"subject\": \"photo\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19121,\n            \"customer_id\": 64319,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T13:09:15.000000Z\",\n            \"updated_at\": \"2019-08-26T13:09:15.000000Z\"\n        },\n        {\n            \"id\": 58,\n            \"subject\": \"Dispo\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 16767,\n            \"customer_id\": 39944,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T13:22:09.000000Z\",\n            \"updated_at\": \"2019-08-26T13:22:09.000000Z\"\n        },\n        {\n            \"id\": 61,\n            \"subject\": \"Postérieurs\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 11695,\n            \"customer_id\": 49044,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T13:30:22.000000Z\",\n            \"updated_at\": \"2019-08-26T13:30:22.000000Z\"\n        },\n        {\n            \"id\": 62,\n            \"subject\": \"Bridon  filet\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3946,\n            \"customer_id\": 57356,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T14:46:16.000000Z\",\n            \"updated_at\": \"2019-08-26T14:46:16.000000Z\"\n        },\n        {\n            \"id\": 63,\n            \"subject\": \"Filet\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 4934,\n            \"customer_id\": 57356,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T15:02:04.000000Z\",\n            \"updated_at\": \"2019-08-26T15:02:04.000000Z\"\n        },\n        {\n            \"id\": 64,\n            \"subject\": \"Filet / bridon\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 7621,\n            \"customer_id\": 57356,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T15:03:06.000000Z\",\n            \"updated_at\": \"2019-08-26T15:03:06.000000Z\"\n        },\n        {\n            \"id\": 68,\n            \"subject\": \"Guêtres noir\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 13958,\n            \"customer_id\": 25895,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T15:46:16.000000Z\",\n            \"updated_at\": \"2019-08-26T15:46:16.000000Z\"\n        },\n        {\n            \"id\": 69,\n            \"subject\": \"Antares\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3843,\n            \"customer_id\": 58758,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T15:52:20.000000Z\",\n            \"updated_at\": \"2019-08-26T15:52:20.000000Z\"\n        },\n        {\n            \"id\": 70,\n            \"subject\": \"Antares\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3843,\n            \"customer_id\": 58758,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T15:52:58.000000Z\",\n            \"updated_at\": \"2019-08-26T15:52:58.000000Z\"\n        },\n        {\n            \"id\": 72,\n            \"subject\": \"Sangle anatomique\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 16202,\n            \"customer_id\": 32255,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T16:07:19.000000Z\",\n            \"updated_at\": \"2019-08-28T15:59:43.000000Z\"\n        },\n        {\n            \"id\": 76,\n            \"subject\": \"Informations complémentaires selle Childéric\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 20012,\n            \"customer_id\": 34744,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T17:51:26.000000Z\",\n            \"updated_at\": \"2019-08-26T17:51:26.000000Z\"\n        },\n        {\n            \"id\": 77,\n            \"subject\": \"Marque\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8381,\n            \"customer_id\": 59888,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T17:54:37.000000Z\",\n            \"updated_at\": \"2019-08-26T17:54:37.000000Z\"\n        },\n        {\n            \"id\": 78,\n            \"subject\": \"Marque\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8381,\n            \"customer_id\": 59888,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T17:54:37.000000Z\",\n            \"updated_at\": \"2019-08-26T17:54:37.000000Z\"\n        },\n        {\n            \"id\": 79,\n            \"subject\": \"Guêtre Norton\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8105,\n            \"customer_id\": 69732,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T17:56:50.000000Z\",\n            \"updated_at\": \"2019-08-26T17:56:50.000000Z\"\n        },\n        {\n            \"id\": 80,\n            \"subject\": \"Guêtre Norton\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8105,\n            \"customer_id\": 69732,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T17:57:09.000000Z\",\n            \"updated_at\": \"2019-08-26T17:57:09.000000Z\"\n        },\n        {\n            \"id\": 82,\n            \"subject\": \"Bavette Antares\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8446,\n            \"customer_id\": 48433,\n            \"status\": \"close\",\n            \"created_at\": \"2019-08-26T18:03:35.000000Z\",\n            \"updated_at\": \"2019-08-26T18:11:19.000000Z\"\n        },\n        {\n            \"id\": 83,\n            \"subject\": \"Informations complémentaires selle Devoucoux\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 16877,\n            \"customer_id\": 34744,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T18:04:55.000000Z\",\n            \"updated_at\": \"2019-08-29T15:59:05.000000Z\"\n        },\n        {\n            \"id\": 84,\n            \"subject\": \"Eva\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 65585,\n            \"customer_id\": 69742,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T18:52:14.000000Z\",\n            \"updated_at\": \"2019-08-26T18:52:14.000000Z\"\n        },\n        {\n            \"id\": 85,\n            \"subject\": \"Filet noir\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 20211,\n            \"customer_id\": 32849,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T18:54:18.000000Z\",\n            \"updated_at\": \"2019-08-28T12:14:12.000000Z\"\n        },\n        {\n            \"id\": 87,\n            \"subject\": \"Guêtres\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 14265,\n            \"customer_id\": 59821,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:01:37.000000Z\",\n            \"updated_at\": \"2019-08-26T19:01:37.000000Z\"\n        },\n        {\n            \"id\": 88,\n            \"subject\": \"Guêtres\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 14265,\n            \"customer_id\": 59821,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:02:08.000000Z\",\n            \"updated_at\": \"2019-08-26T19:02:08.000000Z\"\n        },\n        {\n            \"id\": 89,\n            \"subject\": \"Étriers Free Jump enfant\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19552,\n            \"customer_id\": 69746,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:24:59.000000Z\",\n            \"updated_at\": \"2019-08-28T16:46:12.000000Z\"\n        },\n        {\n            \"id\": 90,\n            \"subject\": \"Étriers Free Jump enfant\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19552,\n            \"customer_id\": 69746,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:25:13.000000Z\",\n            \"updated_at\": \"2019-08-26T19:25:13.000000Z\"\n        },\n        {\n            \"id\": 91,\n            \"subject\": \"Sur le filet\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18695,\n            \"customer_id\": 44338,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:42:09.000000Z\",\n            \"updated_at\": \"2019-08-26T19:42:09.000000Z\"\n        },\n        {\n            \"id\": 92,\n            \"subject\": \"Sur le filet\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18695,\n            \"customer_id\": 44338,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:42:29.000000Z\",\n            \"updated_at\": \"2019-08-26T19:42:29.000000Z\"\n        },\n        {\n            \"id\": 93,\n            \"subject\": \"Prix\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 16611,\n            \"customer_id\": 61493,\n            \"status\": \"close\",\n            \"created_at\": \"2019-08-26T19:47:31.000000Z\",\n            \"updated_at\": \"2019-08-27T10:43:41.000000Z\"\n        },\n        {\n            \"id\": 94,\n            \"subject\": \"Sur le filet\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 11010,\n            \"customer_id\": 44338,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:48:23.000000Z\",\n            \"updated_at\": \"2019-08-26T19:48:23.000000Z\"\n        },\n        {\n            \"id\": 95,\n            \"subject\": \"Négociable\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8671,\n            \"customer_id\": 69752,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-26T19:59:01.000000Z\",\n            \"updated_at\": \"2019-08-27T05:35:24.000000Z\"\n        },\n        {\n            \"id\": 96,\n            \"subject\": \"Service client - Bonjour\\r\\nMa comptable me réclame\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": null,\n            \"customer_id\": 47632,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T01:41:12.000000Z\",\n            \"updated_at\": \"2019-08-27T01:41:12.000000Z\"\n        },\n        {\n            \"id\": 97,\n            \"subject\": \"tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 12344,\n            \"customer_id\": 67842,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T04:39:28.000000Z\",\n            \"updated_at\": \"2019-08-27T04:39:28.000000Z\"\n        },\n        {\n            \"id\": 98,\n            \"subject\": \"tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 12344,\n            \"customer_id\": 67842,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T04:39:43.000000Z\",\n            \"updated_at\": \"2019-08-27T04:39:43.000000Z\"\n        },\n        {\n            \"id\": 99,\n            \"subject\": \"Informations\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 15216,\n            \"customer_id\": 51806,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T04:52:56.000000Z\",\n            \"updated_at\": \"2019-08-27T16:00:17.000000Z\"\n        },\n        {\n            \"id\": 100,\n            \"subject\": \"Questions selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18187,\n            \"customer_id\": 69759,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T05:23:26.000000Z\",\n            \"updated_at\": \"2019-08-27T05:23:26.000000Z\"\n        },\n        {\n            \"id\": 101,\n            \"subject\": \"Questions selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 12070,\n            \"customer_id\": 69759,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T05:24:56.000000Z\",\n            \"updated_at\": \"2019-08-29T09:25:12.000000Z\"\n        },\n        {\n            \"id\": 102,\n            \"subject\": \"selle privilège 16.5\\\"\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 65706,\n            \"customer_id\": 69761,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T05:29:30.000000Z\",\n            \"updated_at\": \"2019-08-27T05:29:30.000000Z\"\n        },\n        {\n            \"id\": 103,\n            \"subject\": \"GPA\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18757,\n            \"customer_id\": 69126,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T05:30:22.000000Z\",\n            \"updated_at\": \"2019-08-27T05:30:22.000000Z\"\n        },\n        {\n            \"id\": 104,\n            \"subject\": \"prix\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 13655,\n            \"customer_id\": 36458,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T05:46:15.000000Z\",\n            \"updated_at\": \"2019-08-27T05:46:15.000000Z\"\n        },\n        {\n            \"id\": 109,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 21428,\n            \"customer_id\": 29530,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:32:46.000000Z\",\n            \"updated_at\": \"2019-08-27T06:32:46.000000Z\"\n        },\n        {\n            \"id\": 112,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 7289,\n            \"customer_id\": 29530,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:41:21.000000Z\",\n            \"updated_at\": \"2019-09-12T04:54:32.000000Z\"\n        },\n        {\n            \"id\": 113,\n            \"subject\": \"tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 4170,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:46:00.000000Z\",\n            \"updated_at\": \"2019-08-27T06:46:00.000000Z\"\n        },\n        {\n            \"id\": 114,\n            \"subject\": \"Tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 5967,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:46:46.000000Z\",\n            \"updated_at\": \"2019-08-27T06:46:46.000000Z\"\n        },\n        {\n            \"id\": 115,\n            \"subject\": \"Tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 5967,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:47:12.000000Z\",\n            \"updated_at\": \"2019-08-27T06:47:12.000000Z\"\n        },\n        {\n            \"id\": 116,\n            \"subject\": \"Tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 10995,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:47:51.000000Z\",\n            \"updated_at\": \"2019-08-27T06:47:51.000000Z\"\n        },\n        {\n            \"id\": 117,\n            \"subject\": \"Tapis PL\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 10995,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:47:59.000000Z\",\n            \"updated_at\": \"2019-08-27T06:47:59.000000Z\"\n        },\n        {\n            \"id\": 118,\n            \"subject\": \"tapis RG\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18899,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:52:47.000000Z\",\n            \"updated_at\": \"2019-08-27T06:52:47.000000Z\"\n        },\n        {\n            \"id\": 119,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19528,\n            \"customer_id\": 29530,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:52:57.000000Z\",\n            \"updated_at\": \"2019-08-27T06:52:57.000000Z\"\n        },\n        {\n            \"id\": 120,\n            \"subject\": \"Échange\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 10995,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:55:36.000000Z\",\n            \"updated_at\": \"2019-08-27T06:55:36.000000Z\"\n        },\n        {\n            \"id\": 121,\n            \"subject\": \"echange\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 5967,\n            \"customer_id\": 65153,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:56:54.000000Z\",\n            \"updated_at\": \"2019-08-27T11:14:33.000000Z\"\n        },\n        {\n            \"id\": 122,\n            \"subject\": \"prix\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 15414,\n            \"customer_id\": 25803,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:57:34.000000Z\",\n            \"updated_at\": \"2019-08-27T06:57:34.000000Z\"\n        },\n        {\n            \"id\": 123,\n            \"subject\": \"Questions\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19402,\n            \"customer_id\": 64997,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:57:52.000000Z\",\n            \"updated_at\": \"2019-08-27T06:57:52.000000Z\"\n        },\n        {\n            \"id\": 124,\n            \"subject\": \"prix\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 15414,\n            \"customer_id\": 25803,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:58:11.000000Z\",\n            \"updated_at\": \"2019-08-27T06:58:11.000000Z\"\n        },\n        {\n            \"id\": 127,\n            \"subject\": \"Questions\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19402,\n            \"customer_id\": 64997,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T06:59:25.000000Z\",\n            \"updated_at\": \"2019-08-27T06:59:25.000000Z\"\n        },\n        {\n            \"id\": 128,\n            \"subject\": \"Questions\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19402,\n            \"customer_id\": 64997,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:06:02.000000Z\",\n            \"updated_at\": \"2019-08-27T07:06:02.000000Z\"\n        },\n        {\n            \"id\": 129,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 17621,\n            \"customer_id\": 29530,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:09:10.000000Z\",\n            \"updated_at\": \"2019-08-27T07:09:10.000000Z\"\n        },\n        {\n            \"id\": 130,\n            \"subject\": \"Demande d'info\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 20318,\n            \"customer_id\": 49802,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:23:34.000000Z\",\n            \"updated_at\": \"2019-09-16T15:46:35.000000Z\"\n        },\n        {\n            \"id\": 131,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 21428,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:26:15.000000Z\",\n            \"updated_at\": \"2019-08-27T07:26:15.000000Z\"\n        },\n        {\n            \"id\": 132,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 7289,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:28:43.000000Z\",\n            \"updated_at\": \"2019-09-12T04:54:25.000000Z\"\n        },\n        {\n            \"id\": 133,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19528,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:30:48.000000Z\",\n            \"updated_at\": \"2019-08-27T07:30:48.000000Z\"\n        },\n        {\n            \"id\": 136,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 17621,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:31:21.000000Z\",\n            \"updated_at\": \"2019-08-27T07:31:21.000000Z\"\n        },\n        {\n            \"id\": 137,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19906,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:31:50.000000Z\",\n            \"updated_at\": \"2019-08-27T07:31:50.000000Z\"\n        },\n        {\n            \"id\": 138,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 3445,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:32:13.000000Z\",\n            \"updated_at\": \"2019-08-27T07:32:13.000000Z\"\n        },\n        {\n            \"id\": 140,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 19492,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:32:33.000000Z\",\n            \"updated_at\": \"2019-08-27T07:32:33.000000Z\"\n        },\n        {\n            \"id\": 141,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 6992,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:32:43.000000Z\",\n            \"updated_at\": \"2019-08-27T07:32:43.000000Z\"\n        },\n        {\n            \"id\": 142,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 20613,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:32:52.000000Z\",\n            \"updated_at\": \"2019-08-27T07:32:52.000000Z\"\n        },\n        {\n            \"id\": 143,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18813,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:33:21.000000Z\",\n            \"updated_at\": \"2019-08-27T07:33:21.000000Z\"\n        },\n        {\n            \"id\": 144,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 9677,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:33:28.000000Z\",\n            \"updated_at\": \"2019-08-27T08:58:18.000000Z\"\n        },\n        {\n            \"id\": 145,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18120,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:33:35.000000Z\",\n            \"updated_at\": \"2019-08-28T11:19:36.000000Z\"\n        },\n        {\n            \"id\": 146,\n            \"subject\": \"Photos\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 8913,\n            \"customer_id\": 69783,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:33:41.000000Z\",\n            \"updated_at\": \"2019-08-31T11:06:40.000000Z\"\n        },\n        {\n            \"id\": 147,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 12946,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:33:44.000000Z\",\n            \"updated_at\": \"2019-08-27T07:33:44.000000Z\"\n        },\n        {\n            \"id\": 149,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 7806,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:40:18.000000Z\",\n            \"updated_at\": \"2019-08-27T08:23:52.000000Z\"\n        },\n        {\n            \"id\": 151,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18472,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:40:38.000000Z\",\n            \"updated_at\": \"2019-08-27T07:40:38.000000Z\"\n        },\n        {\n            \"id\": 152,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 17510,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:40:47.000000Z\",\n            \"updated_at\": \"2019-08-27T07:40:47.000000Z\"\n        },\n        {\n            \"id\": 153,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 17237,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T07:40:56.000000Z\",\n            \"updated_at\": \"2019-08-27T07:40:56.000000Z\"\n        },\n        {\n            \"id\": 156,\n            \"subject\": \"Demande d'informations\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 20671,\n            \"customer_id\": 48679,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T08:04:22.000000Z\",\n            \"updated_at\": \"2019-08-27T08:04:22.000000Z\"\n        },\n        {\n            \"id\": 158,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 7806,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T08:20:02.000000Z\",\n            \"updated_at\": \"2019-08-28T12:02:56.000000Z\"\n        },\n        {\n            \"id\": 160,\n            \"subject\": \"Selle\",\n            \"operator_assigned_id\": null,\n            \"seller_id\": 18472,\n            \"customer_id\": 69781,\n            \"status\": \"open\",\n            \"created_at\": \"2019-08-27T08:20:20.000000Z\",\n            \"updated_at\": \"2019-08-27T08:20:20.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 95834,\n            \"count\": 100,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 959,\n            \"links\": {\n                \"next\": \"http://localhost:8090/v1/tickets?page=2\"\n            }\n        }\n    }\n}"}],"_postman_id":"05eb6392-3f92-4520-ab77-ce571102b230"},{"name":"Count all tickets","id":"e0162878-472e-4fe0-9ab5-189c133d0b02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/count?without_pagination=true","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","tickets","count"],"host":["{{domain}}"],"query":[{"key":"without_pagination","value":"true"}],"variable":[]}},"response":[{"id":"cb17cdc5-4e68-46d2-838f-65a358b9c417","name":"Count all tickets","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":{"raw":"{{domain}}/v1/tickets/count?without_pagination=true","host":["{{domain}}"],"path":["v1","tickets","count"],"query":[{"key":"without_pagination","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:29:21 GMT"},{"key":"ETag","value":"\"f09ca8f1156a2cf631e4616f2209f1a1b14c2ce5\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"count\": 95835\n    }\n}"}],"_postman_id":"e0162878-472e-4fe0-9ab5-189c133d0b02"},{"name":"Get a ticket","id":"699a6c73-5f16-4b8e-83e4-bd18d663d6ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{domain}}/v1/tickets/{{ticket_id}}","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","tickets","{{ticket_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0257e80a-3bc1-4976-83c3-6df7f4b7e70c","name":"Get a ticket","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/18"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:12:02 GMT"},{"key":"ETag","value":"\"b151061791e5f7917a934948a099c1ad72bf4346\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 18,\n        \"subject\": \"Sujet\",\n        \"operator_assigned_id\": null,\n        \"seller_id\": 66008,\n        \"customer_id\": 65482,\n        \"status\": \"open\",\n        \"created_at\": \"2019-08-14T10:27:00.000000Z\",\n        \"updated_at\": \"2021-09-29T18:51:14.000000Z\"\n    }\n}"}],"_postman_id":"699a6c73-5f16-4b8e-83e4-bd18d663d6ae"},{"name":"Create a ticket","id":"a7f01ba0-05be-4589-8d50-ac86ce28feeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subject\": \"Ticket d'exemple\",\n    \"body\": \"Bonjour, ceci est un ticket de test\",\n    \"customer_id\": 65482,\n    \"ticket_type_id\": 6,\n    \"seller_id\": 8597,\n    \"order_seller_id\": 87\n}"},"url":"{{domain}}/v1/tickets","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"79c6d9de-e3ce-4f0a-8cc8-f1e886e49662","name":"Create a ticket","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subject\": \"Ticket d'exemple\",\n    \"body\": \"Bonjour, ceci est un ticket de test\",\n    \"customer_id\": 65482,\n    \"ticket_type_id\": 6,\n    \"seller_id\": 8597,\n    \"order_seller_id\": 87\n}"},"url":"{{domain}}/v1/tickets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:16:34 GMT"},{"key":"ETag","value":"\"326448e01ef68a67eb84b8671b4686194fa569b6\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 101997,\n        \"subject\": \"Ticket d'exemple\",\n        \"operator_assigned_id\": null,\n        \"seller_id\": 8597,\n        \"customer_id\": 65482,\n        \"status\": \"open\",\n        \"created_at\": \"2021-10-01T09:16:34.000000Z\",\n        \"updated_at\": \"2021-10-01T09:16:34.000000Z\"\n    }\n}"}],"_postman_id":"a7f01ba0-05be-4589-8d50-ac86ce28feeb"},{"name":"Update a ticket","id":"9698894a-4d14-41f9-8aef-cbcde402a625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subject\": \"Ticket d'exemple\",\n    \"body\": \"Bonjour, ceci est un ticket de test\",\n    \"customer_id\": 65482,\n    \"ticket_type_id\": 6,\n    \"seller_id\": 8597,\n    \"order_seller_id\": 87\n}"},"url":"{{domain}}/v1/tickets/18","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","18"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0a86766b-9d9b-45a9-99e0-19bb1c6a2d81","name":"Update a ticket","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subject\": \"Ticket d'exemple\",\n    \"body\": \"Bonjour, ceci est un ticket de test\",\n    \"customer_id\": 65482,\n    \"ticket_type_id\": 6,\n    \"seller_id\": 8597,\n    \"order_seller_id\": 87\n}"},"url":"{{domain}}/v1/tickets/18"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:40:38 GMT"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9698894a-4d14-41f9-8aef-cbcde402a625"}],"id":"e43e2a35-96f0-462d-8ade-1efbaf45148b","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>messages</td>\n<td>Ticket messages</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller</td>\n<td>Ticket seller</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Ticket customer</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_seller</td>\n<td>Ticket order seller</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product</td>\n<td>Ticket product</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>operator_assigned</td>\n<td>Ticket user operator assigned</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller_assigned</td>\n<td>Ticket user seller assigned</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Ticket tag list</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Ticket type</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subject</td>\n<td>Ticket subject</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>body</td>\n<td>Ticket body</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td>Ticket customer id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>ticket_type_id</td>\n<td>Ticket type id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller_id</td>\n<td>Ticket seller id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>order_seller_id</td>\n<td>Ticket order seller id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>Ticket user id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>Ticket product id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Ticket tags</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>tags.*.id</td>\n<td>Ticket tag id to add</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e43e2a35-96f0-462d-8ade-1efbaf45148b"},{"name":"Ticket Messages","item":[{"name":"Create a ticket message","id":"ddf4a42f-2493-4f62-a9bd-45e68b8cacc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"Context","value":"{{context}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body\": \"Test Postman\",\n    \"ticket_id\" : 21\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/tickets/messages","description":"<h3 id=\"permissions\">Permissions</h3>\n<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>ticket_messages.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ticket_id</strong></td>\n<td>Ticket related to the message.</td>\n<td>Integer. Required. Must be a <code>Ticket</code> id.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>Sender of the message.</td>\n<td>Integer. Required. Must be a <code>User</code> id.</td>\n</tr>\n<tr>\n<td><strong>body</strong></td>\n<td>Body of the message.</td>\n<td>String. Required if \"attachment\" parameter is not supplied.</td>\n</tr>\n<tr>\n<td><strong>attachments</strong></td>\n<td></td>\n<td>Not required. Array.</td>\n</tr>\n<tr>\n<td><strong>attachments.*.url</strong></td>\n<td>URL where file to attach to this ticket message is hosted.</td>\n<td>String. Required if \"file\" parameter is not supplied. Forbidden if \"file\" parameter is supplied. Must be an URL.</td>\n</tr>\n<tr>\n<td><strong>attachments.*.file</strong></td>\n<td>File data</td>\n<td>File. Required if \"url\" parameter is not supplied. Forbidden if \"url\" parameter is supplied.</td>\n</tr>\n<tr>\n<td><strong>attachments.*.name</strong></td>\n<td>Name of the attachment</td>\n<td>String. Not required.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","tickets","messages"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"54205782-8dab-4a54-999e-abd7c196903e","name":"Create a ticket message","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"Context","value":"{{context}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body\": \"Test Postman\",\n    \"ticket_id\" : 21\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/tickets/messages"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:33:21 GMT"},{"key":"ETag","value":"\"207276bbc25d27c9d59d12558aa6d6acf43c4fb0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 243016,\n        \"body\": \"Test Postman\",\n        \"customer_visible\": 1,\n        \"seller_visible\": 1,\n        \"operator_visible\": 1,\n        \"user_id\": 1,\n        \"created_at\": \"2021-10-01T09:33:21.000000Z\",\n        \"updated_at\": \"2021-10-01T09:33:21.000000Z\"\n    }\n}"}],"_postman_id":"ddf4a42f-2493-4f62-a9bd-45e68b8cacc8"},{"name":"Update a ticket message","id":"fe977532-9241-4a00-87a8-e0792d48f8de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"Context","value":"{{context}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body\": \"Test Postman\",\n    \"state_id\": 31\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/tickets/messages/20","urlObject":{"path":["v1","tickets","messages","20"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"716561cb-d2f1-45dc-9373-339da606726c","name":"Update a ticket message","originalRequest":{"method":"PATCH","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"Context","value":"{{context}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body\": \"Test Postman\",\n    \"state_id\": 31\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/v1/tickets/messages/20"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:38:42 GMT"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fe977532-9241-4a00-87a8-e0792d48f8de"}],"id":"3a25691d-591a-4061-ac1d-1287ef074f57","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>Ticket message user</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>user_group</td>\n<td>Ticket message user group</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>Ticket message attachments</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Ticket message state</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ticket_id</td>\n<td>Ticket message ticket id</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>Ticket message user id</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>body</td>\n<td>Ticket message body</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>Ticket message attachments</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>attachments.*.url</td>\n<td>Ticket message url</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3a25691d-591a-4061-ac1d-1287ef074f57"},{"name":"Ticket Tags","item":[{"name":"List all ticket tags","id":"5808a888-d7d3-4eb4-bc4c-56d1752ccd70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/tags","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","tickets","tags"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ef7f7cfd-2a4d-49b9-9fa3-39ad88b1ac2a","name":"List all ticket tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:44:35 GMT"},{"key":"ETag","value":"\"1f66cd71835ec088232674d3c036582136d16335\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Tag1\",\n            \"created_at\": \"2021-10-01T09:44:28.000000Z\",\n            \"updated_at\": \"2021-10-01T09:44:28.000000Z\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"5808a888-d7d3-4eb4-bc4c-56d1752ccd70"},{"name":"Get a ticket tag","id":"03d34cad-12b8-43a8-a60d-5c562886f2c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/tags/1","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","tickets","tags","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c722bd11-a6cb-45ef-a2c3-4455990ccfe3","name":"Get a ticket tag","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/tags/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:45:13 GMT"},{"key":"ETag","value":"\"06c69dca376b1e671dd55141dab31e1d982dfc49\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Tag1\",\n        \"created_at\": \"2021-10-01T09:44:28.000000Z\",\n        \"updated_at\": \"2021-10-01T09:44:28.000000Z\"\n    }\n}"}],"_postman_id":"03d34cad-12b8-43a8-a60d-5c562886f2c3"},{"name":"Create a ticket tag","id":"5a1e2f30-fb44-4638-b16d-c975aa278d44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/tags","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","tags"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"414827d6-596b-416e-9cc2-5c606b615189","name":"Create a ticket tag","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/tags"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:48:49 GMT"},{"key":"ETag","value":"\"ac76b6037351dd8d681b92336dbc8d2b5543b96f\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Test tag\",\n        \"created_at\": \"2021-10-01T09:48:49.000000Z\",\n        \"updated_at\": \"2021-10-01T09:48:49.000000Z\"\n    }\n}"}],"_postman_id":"5a1e2f30-fb44-4638-b16d-c975aa278d44"},{"name":"Update a ticket tag","id":"9c33b580-fb03-4c0c-8c00-6dcd2560ff48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/tags/1","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","tags","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6c7f5026-baea-4024-95ae-7abe9e443f37","name":"Update a ticket tag","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/tags/1"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:50:26 GMT"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9c33b580-fb03-4c0c-8c00-6dcd2560ff48"},{"name":"Delete a ticket tag","id":"79b37ff4-02ef-4ecf-8c60-e7ef4e88c3ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/tags/1","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","tags","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"33445e2b-dd2c-4f8c-988b-9a88ada531fd","name":"Delete a ticket tag","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/tags/1"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:51:02 GMT"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"79b37ff4-02ef-4ecf-8c60-e7ef4e88c3ad"}],"id":"413ed7fd-87ec-45ca-a273-199475105a71","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tickets</td>\n<td>All tickets with this tag</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Ticket tag name</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"413ed7fd-87ec-45ca-a273-199475105a71"},{"name":"Ticket Types","item":[{"name":"List all ticket types","id":"ba8664db-555e-4cfc-96a7-78af36b94545","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/types","description":"<p>GET all attribute_types</p>\n","urlObject":{"path":["v1","tickets","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"82d54902-e28d-47f9-b3a2-399f4485f590","name":"List all ticket types","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:56:28 GMT"},{"key":"ETag","value":"\"712b6bdc0d813c36760b0bf823cd332b56644cd5\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 4,\n            \"name\": \"J'ai un problème avec une facture / un paiement / un compte bloqué\",\n            \"need_order\": 1,\n            \"need_product\": 0,\n            \"position\": 0,\n            \"for_seller\": 0,\n            \"for_customer\": 0,\n            \"is_default\": 0,\n            \"custom_answer\": null,\n            \"ticket_count\": 0\n        },\n        {\n            \"id\": 5,\n            \"name\": \"J'ai un problème avec une commande\",\n            \"need_order\": 1,\n            \"need_product\": 0,\n            \"position\": 0,\n            \"for_seller\": 0,\n            \"for_customer\": 0,\n            \"is_default\": 0,\n            \"custom_answer\": null,\n            \"ticket_count\": 0\n        },\n        {\n            \"id\": 6,\n            \"name\": \"J'ai un autre problème technique\",\n            \"need_order\": 0,\n            \"need_product\": 0,\n            \"position\": 0,\n            \"for_seller\": 0,\n            \"for_customer\": 0,\n            \"is_default\": 1,\n            \"custom_answer\": null,\n            \"ticket_count\": 95835\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 3,\n            \"count\": 3,\n            \"per_page\": 100,\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"ba8664db-555e-4cfc-96a7-78af36b94545"},{"name":"Get a ticket type","id":"c3bdf748-05ca-4ca0-aeea-41fd3bbe1517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/types/4","description":"<p>GET an attribute_type</p>\n","urlObject":{"path":["v1","tickets","types","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9108b546-fd7c-4925-ac61-660ba91f1a0b","name":"Get a ticket type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/tickets/types/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:57:08 GMT"},{"key":"ETag","value":"\"2a594f5a1ef12c3dab533f314c61d2b5d2952609\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"J'ai un problème avec une facture / un paiement / un compte bloqué\",\n        \"need_order\": 1,\n        \"need_product\": 0,\n        \"position\": 0,\n        \"for_seller\": 0,\n        \"for_customer\": 0,\n        \"is_default\": 0,\n        \"custom_answer\": null,\n        \"ticket_count\": 0\n    }\n}"}],"_postman_id":"c3bdf748-05ca-4ca0-aeea-41fd3bbe1517"},{"name":"Create a ticket type","id":"925aef6c-2bd3-404d-b651-27cae61fbc9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test type\"\n}"},"url":"{{domain}}/v1/tickets/types","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a71a77e7-f699-455a-8364-1e9b2f14a398","name":"Create a ticket type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test type\"\n}"},"url":"{{domain}}/v1/tickets/types"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Location","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:58:17 GMT"},{"key":"ETag","value":"\"cc86d31a80bb444ace67ef5bca551fab0983ca69\""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 7,\n        \"name\": \"Test type\",\n        \"need_order\": 0,\n        \"need_product\": 0,\n        \"position\": 0,\n        \"for_seller\": 0,\n        \"for_customer\": 0,\n        \"is_default\": 0,\n        \"custom_answer\": null,\n        \"ticket_count\": 0\n    }\n}"}],"_postman_id":"925aef6c-2bd3-404d-b651-27cae61fbc9b"},{"name":"Update a ticket type","id":"5fb7bf36-0d9e-4bbb-8115-0ce30aebe55c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/types/7","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","types","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0918af04-02fb-4ee2-ad30-a64b6b4ecb76","name":"Update a ticket type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/types/7"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 09:59:22 GMT"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5fb7bf36-0d9e-4bbb-8115-0ce30aebe55c"},{"name":"Delete a ticket type","id":"458e2bd0-bedf-4861-a8b7-073440f2d7dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/types/7","description":"<p>CREATE an attribute_type</p>\n","urlObject":{"path":["v1","tickets","types","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"134496ed-8c7b-4fc4-b41c-9538cbb8b281","name":"Delete a ticket type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer  {{access_token}}"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test tag\"\n}"},"url":"{{domain}}/v1/tickets/types/7"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.4.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 01 Oct 2021 10:00:24 GMT"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"458e2bd0-bedf-4861-a8b7-073440f2d7dd"}],"id":"fd38382b-7ed7-4273-8e03-592f65ef6cc9","description":"<h2 id=\"fields\">Fields</h2>\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>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Ticket type name</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fd38382b-7ed7-4273-8e03-592f65ef6cc9"}],"id":"4f9b2494-816a-42a4-b3da-9b94e9894d40","_postman_id":"4f9b2494-816a-42a4-b3da-9b94e9894d40","description":""},{"name":"Warehouses Management","item":[{"name":"Warehouses","item":[{"name":"List all warehouses","id":"596c2e6b-8bbb-470e-906d-8fff96b90597","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/warehouses/","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse.index</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"596c2e6b-8bbb-470e-906d-8fff96b90597"},{"name":"Get a warehouse","id":"efa64eea-5a88-4297-acc5-f289db0c0350","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/warehouses/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse.show</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"efa64eea-5a88-4297-acc5-f289db0c0350"},{"name":"Create a warehouse","id":"fceaeeec-6d2e-48bb-8a5a-f6667968629a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/warehouses/","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouses.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td>Name of the <code>Warehouse</code>.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td><strong>seller_owner_id</strong></td>\n<td>ID of the <code>Seller</code> who is the <code>Warehouse</code> owner.</td>\n<td>Required. Integer. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td><strong>is_default</strong></td>\n<td>Defines if the <code>Warehouse</code> is the <code>Warehouse</code> by default</td>\n<td>Required. Boolean.</td>\n</tr>\n<tr>\n<td><strong>address.street1</strong></td>\n<td>First <code>Warehouse</code> <code>Address</code> line.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>address.street2</strong></td>\n<td>Second <code>Warehouse</code> <code>Address</code> line.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td><strong>address.postcode</strong></td>\n<td>Postcode of <code>Warehouse</code> <code>Address</code>.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>address.region</strong></td>\n<td><code>Addresses</code> in specific <code>Countries</code> need to indicate the region or province. This must be filled here.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td><strong>address.city</strong></td>\n<td>City of <code>Warehouse</code> <code>Address</code>.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>address.country</strong></td>\n<td>Country of <code>Warehouse</code> <code>Address</code>.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>fees_profile_id</strong></td>\n<td><code>FeesProfile</code> related to this <code>Warehouse</code>.</td>\n<td>Nullable. Must be a <code>FeesProfile</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","warehouses",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fceaeeec-6d2e-48bb-8a5a-f6667968629a"},{"name":"Update a warehouse","id":"476ef9c3-de9e-48d3-9b8b-ac194c78c2d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Lorem ipsum\",\n    \"is_default\": 0,\n    \"fees_profile_id\": 1,\n    \"seller_owner_id\": 4\n}"},"url":"{{domain}}/v1/warehouses/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td>Name of the <code>Warehouse</code>.</td>\n<td>Required. String.</td>\n</tr>\n<tr>\n<td><strong>seller_owner_id</strong></td>\n<td>ID of the <code>Seller</code> who is the <code>Warehouse</code> owner.</td>\n<td>Required. Integer. Must be a <code>UserGroup</code> id.</td>\n</tr>\n<tr>\n<td><strong>is_default</strong></td>\n<td>Defines if the <code>Warehouse</code> is the <code>Warehouse</code> by default</td>\n<td>Required. Boolean.</td>\n</tr>\n<tr>\n<td><strong>address.street1</strong></td>\n<td>First <code>Warehouse</code> <code>Address</code> line.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>address.street2</strong></td>\n<td>Second <code>Warehouse</code> <code>Address</code> line.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td><strong>address.postcode</strong></td>\n<td>Postcode of <code>Warehouse</code> <code>Address</code>.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>address.region</strong></td>\n<td><code>Addresses</code> in specific <code>Countries</code> need to indicate the region or province. This must be filled here.</td>\n<td>Nullable. String.</td>\n</tr>\n<tr>\n<td><strong>address.city</strong></td>\n<td>City of <code>Warehouse</code> <code>Address</code>.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>address.country</strong></td>\n<td>Country of <code>Warehouse</code> <code>Address</code>.</td>\n<td>Required with <code>address</code>. String.</td>\n</tr>\n<tr>\n<td><strong>fees_profile_id</strong></td>\n<td><code>FeesProfile</code> related to this <code>Warehouse</code>.</td>\n<td>Nullable. Must be a <code>FeesProfile</code> id.</td>\n</tr>\n<tr>\n<td><strong>products.*.id</strong></td>\n<td><code>Product</code> ID which <code>ProductOffers</code> are related to this <code>Warehouse</code>.</td>\n<td>Required with products. Must be a <code>Product</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","warehouses","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"476ef9c3-de9e-48d3-9b8b-ac194c78c2d0"},{"name":"Delete a warehouse","id":"b99ef652-5e05-4d8c-bd3e-ff311a082832","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer  {{access_token}}","type":"text"},{"key":"context","value":"{{context}}","type":"text"}],"url":"{{domain}}/v1/warehouses/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b99ef652-5e05-4d8c-bd3e-ff311a082832"}],"id":"dd8f104c-eb38-4e61-91ff-2cd9c992d036","description":"<h2 id=\"includes-available\">Includes available</h2>\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>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address</td>\n<td><code>Address</code> related to this <code>Warehouse</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller</td>\n<td><code>Seller</code> which ID is <code>seller_owner_id</code> of this <code>Warehouse</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>fulfillments</td>\n<td><code>WarehouseFulfillments</code> related to this <code>Warehouse</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>offers</td>\n<td><code>ProductOffers</code> related to this <code>Warehouse</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>seller_fees_profiles</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>visibilities</td>\n<td><code>Visibilities</code> related to this <code>Warehouse</code></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>excluded_shipping_offer</td>\n<td></td>\n<td>NO</td>\n</tr>\n<tr>\n<td>visibilities</td>\n<td></td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"dd8f104c-eb38-4e61-91ff-2cd9c992d036"},{"name":"Warehouse fulfillments (deprecated)","item":[{"name":"Get shipping labels from a warehouse fulfillment","id":"55cd83ba-3c8f-4c13-a5f6-c18c4a8a6765","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/{{id}}/get-shipping-labels","urlObject":{"path":["v1","warehouses","fulfillments","{{id}}","get-shipping-labels"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"55cd83ba-3c8f-4c13-a5f6-c18c4a8a6765"},{"name":"Get all warehouse fulfillments","id":"bb870031-f1dd-4e11-b645-4f08f5980210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.</p>\n","urlObject":{"path":["v1","warehouses","fulfillments",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb870031-f1dd-4e11-b645-4f08f5980210"},{"name":"Get a warehouse fulfillment","id":"04de5067-3b28-49b0-90b5-8da3e0aa8074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_fulfillments.show</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses","fulfillments","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04de5067-3b28-49b0-90b5-8da3e0aa8074"},{"name":"Create a warehouse fulfillment","id":"dc2ba862-92d4-4b5e-9a47-27793cab9165","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_fulfillments.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>date</strong></td>\n<td></td>\n<td>Required. Date. Value by default: <code>0000-00-00</code></td>\n</tr>\n<tr>\n<td><strong>comment</strong></td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>tracking</strong></td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>supplier_ref</strong></td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>warehouse_fulfillment_origin_id</strong></td>\n<td></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>Seller owner id of this <code>WarehouseFulfillment</code>.</td>\n<td>Required. Integer. Must be a <code>Seller</code> id.</td>\n</tr>\n<tr>\n<td><strong>warehouse_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>Warehouse</code> id.</td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td>State of this <code>WarehouseFulfillment</code>.</td>\n<td>Value by default: <code>CREATED</code>. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td>Name of this <code>WarehouseFulfillment</code>.</td>\n<td>Nullable. String. Unique.</td>\n</tr>\n<tr>\n<td><strong>offers.*.product_offer_id</strong></td>\n<td>ID of a ProductOffer related to this <code>WarehouseFulfillment</code>.</td>\n<td>Required. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td><strong>offers.*.initial_qty</strong></td>\n<td>Initial quantity of the product offer which ID is <code>offers.product_offer_id</code>.</td>\n<td>Required with <code>offers.product_offer_id</code>. Integer, minimum: <code>1</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","warehouses","fulfillments",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc2ba862-92d4-4b5e-9a47-27793cab9165"},{"name":"Update a warehouse fulfillment","id":"9f611c83-50e2-47bd-b337-7cada391a7e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_fulfillments.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>date</strong></td>\n<td></td>\n<td>Required. Date. Value by default: <code>0000-00-00</code></td>\n</tr>\n<tr>\n<td><strong>comment</strong></td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>tracking</strong></td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>supplier_ref</strong></td>\n<td></td>\n<td>Nullable. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>warehouse_fulfillment_origin_id</strong></td>\n<td></td>\n<td>Nullable. Integer.</td>\n</tr>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>Seller owner id of this <code>WarehouseFulfillment</code>.</td>\n<td>Required. Integer. Must be a <code>Seller</code> id.</td>\n</tr>\n<tr>\n<td><strong>warehouse_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>Warehouse</code> id.</td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td>State of this <code>WarehouseFulfillment</code>.</td>\n<td>Value by default: <code>CREATED</code>. String. Max: 255 characters.</td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td>Name of this <code>WarehouseFulfillment</code>.</td>\n<td>Nullable. String. Unique.</td>\n</tr>\n<tr>\n<td><strong>offers.*.product_offer_id</strong></td>\n<td>ID of a ProductOffer related to this <code>WarehouseFulfillment</code>.</td>\n<td>Required. Must be a <code>ProductOffer</code> id.</td>\n</tr>\n<tr>\n<td><strong>offers.*.initial_qty</strong></td>\n<td>Initial quantity of the product offer which ID is <code>offers.product_offer_id</code>.</td>\n<td>Required with <code>offers.product_offer_id</code>. Integer, minimum: <code>1</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","warehouses","fulfillments","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f611c83-50e2-47bd-b337-7cada391a7e5"},{"name":"Delete a warehouse fulfillment","id":"f7932ee5-2188-465f-a210-c56da5f6e04c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_fulfillments.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses","fulfillments","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f7932ee5-2188-465f-a210-c56da5f6e04c"},{"name":"Update a product offer of warehouse fulfillments","id":"10a6ce70-8379-429c-8b8f-dc4e8de41550","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"{{domain}}/v1/warehouses/fulfillments/offers/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_fulfillment_product_offers.update</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses","fulfillments","offers","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10a6ce70-8379-429c-8b8f-dc4e8de41550"}],"id":"1cb34be8-6800-43d0-b718-8990c36d3bf2","_postman_id":"1cb34be8-6800-43d0-b718-8990c36d3bf2","description":""},{"name":"Seller fees profiles","item":[{"name":"Create a seller fees profile","id":"cf395b7d-c55b-49a1-a8a7-e874b628e070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/warehouses/seller_fees_profiles","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_seller_fees_profiles.create</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>seller_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>Seller</code> id.</td>\n</tr>\n<tr>\n<td><strong>fees_profile_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>FeesProfile</code> id.</td>\n</tr>\n<tr>\n<td><strong>warehouse_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>Warehouse</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","warehouses","seller_fees_profiles"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf395b7d-c55b-49a1-a8a7-e874b628e070"},{"name":"Update a seller fees profile","id":"9913877c-bd53-49ad-bd52-55a522199d31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"{{domain}}/v1/warehouses/seller_fees_profiles/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_seller_fees_profiles.update</code> permission is needed.</p>\n<h3 id=\"body-parameters\">Body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Rules</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>seller_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>Seller</code> id.</td>\n</tr>\n<tr>\n<td><strong>fees_profile_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>FeesProfile</code> id.</td>\n</tr>\n<tr>\n<td><strong>warehouse_id</strong></td>\n<td></td>\n<td>Required. Integer. Must be a <code>Warehouse</code> id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","warehouses","seller_fees_profiles","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9913877c-bd53-49ad-bd52-55a522199d31"},{"name":"Delete a seller fees profile","id":"7b106ebb-f334-4101-992e-db50208e57b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{domain}}/v1/warehouses/seller_fees_profiles/{{id}}","description":"<p>A <code>User</code> needs to be authenticated.<br />A <code>UserGroup</code> needs to be authenticated.<br />The <code>warehouse_seller_fees_profiles.delete</code> permission is needed.</p>\n","urlObject":{"path":["v1","warehouses","seller_fees_profiles","{{id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b106ebb-f334-4101-992e-db50208e57b4"}],"id":"c89ce9e4-5e51-4a28-8384-26aeafcc7743","_postman_id":"c89ce9e4-5e51-4a28-8384-26aeafcc7743","description":""}],"id":"1515515f-552a-4b1d-aa19-c813dc1ffb12","_postman_id":"1515515f-552a-4b1d-aa19-c813dc1ffb12","description":""},{"name":"Reviews","item":[{"name":"Create a Review","id":"d8708961-99d4-4deb-88c2-814adfd95216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{domain}}/v1/reviews","urlObject":{"path":["v1","reviews"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8708961-99d4-4deb-88c2-814adfd95216"}],"id":"367d019b-2256-4ed6-a1b0-647178c9288c","_postman_id":"367d019b-2256-4ed6-a1b0-647178c9288c","description":""}]}