{"info":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","description":"<html><head></head><body><h2 id=\"junte-se-ao-discord-conexa-for-developers\">Junte-se ao Discord <em>\"Conexa for Developers\"</em>!</h2>\n<p>Mantenha-se atualizado com todas as novidades da API Conexa, como novos endpoints, campos adicionais, possíveis breakchanges e outras notícias importantes. Entre em nossa comunidade no Discord e fique por dentro das atualizações em tempo real.</p>\n<p>🔗 <a href=\"https://discord.gg/zW28sJh7Nz\">Acesse o Discord <i>Conexa for Developers</i></a></p>\n<p>Com a API do Conexa, diversas rotinas da sua empresa poderão ser expandidas e automatizadas. Abaixo, está toda a documentação necessária para te ajudar a construir coisas incríveis!</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>baseUrl : https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2\n\n</code></pre><h2 id=\"error-response\">Error Response</h2>\n<h3 id=\"429-too-many-request\"><em>429 Too Many Request</em></h3>\n<p>A API do Conexa possui uma política de limitação de requisições para garantir a estabilidade e o desempenho do serviço. Atualmente, o limite máximo é de 100 requisições por minuto, mas em <strong>27 de abril de 2026</strong> será alterado para <strong>60 requisições por minuto</strong>. Recomendamos que, qualquer aplicação que utilize a API, implemente as requisições considerando o novo (60 requisições) garantindo que não ultrapasse essa quantidade de requisições dentro de um intervalo de 60 segundos.</p>\n<p>Caso o limite seja excedido, a API retornará uma resposta de erro, apresentada abaixo, e as requisições subsequentes serão bloqueadas até que o período de um minuto seja reiniciado. Nos cabeçalhos da resposta haverá informações sobre o <em>rate limit</em> como a quantidade máxima de requisições em x tempo, a quantidade de requisições restantes em x tempo e o tempo restante até o desbloqueio.</p>\n<h4 id=\"body\">Body:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"Rate limit exceeded!\"\n}\n\n</code></pre>\n<h4 id=\"headers\">Headers:</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>Value</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-Rate-Limit-Limit</td>\n<td>60</td>\n<td>Quantidade máxima de requisições em 60s</td>\n<td>Effective from 2026-04-27</td>\n</tr>\n<tr>\n<td>X-Rate-Limit-Remaining</td>\n<td>59</td>\n<td>Quantidade de requisições restantes em 60s</td>\n<td>Effective from 2026-04-27</td>\n</tr>\n<tr>\n<td>X-Rate-Limit-Limit</td>\n<td>100</td>\n<td>Quantidade máxima de requisições em 60s</td>\n<td>Deprecate from 2026-04-27</td>\n</tr>\n<tr>\n<td>X-Rate-Limit-Remaining</td>\n<td>99</td>\n<td>Quantidade de requisições restantes em 60s</td>\n<td>Deprecate from 2026-04-27</td>\n</tr>\n<tr>\n<td>X-Rate-Limit-Reset</td>\n<td>60</td>\n<td>Tempo em segundos restantes para o reset</td>\n<td>Maintained</td>\n</tr>\n<tr>\n<td>...</td>\n<td>...</td>\n<td>...</td>\n<td>...</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25182821","collectionId":"d3b5983d-12f3-4f8a-b536-933c3fb87707","publishedId":"2s93RZMpcB","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-03-12T14:53:46.000Z"},"item":[{"name":"Auth","item":[{"name":"/auth","event":[{"listen":"test","script":{"id":"a6846073-5a6b-400b-bff2-6a6729bfa97d","exec":["var jsonData = pm.response.json();","pm.environment.set(\"accessToken\", jsonData.accessToken);"],"type":"text/javascript","packages":{}}}],"id":"06d0a67b-5a59-45d4-abf0-9bc367963115","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"lorem.ipsun0\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/auth","description":"<h3 id=\"body\">Body:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>username</td>\n<td>string</td>\n<td>Login de acesso ao sistema Conexa</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>Senha de acesso ao sistema Conexa</td>\n<td>Sim</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>object</td>\n<td>Objeto do usuário logado</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>user.id</td>\n<td>integer</td>\n<td>ID do usuário logado</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>user.type</td>\n<td>string</td>\n<td>Tipo de usuário, podendo ser: <strong>admin</strong> ou <strong>employee</strong></td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>user.name</td>\n<td>string</td>\n<td>Nome do usuário</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>tokenType</td>\n<td>string</td>\n<td>\"Bearer\"</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>accessToken</td>\n<td>string</td>\n<td>JWT</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>expiresIn</td>\n<td>integer</td>\n<td>Tempo de expiração do JWT em segundos</td>\n<td>Sim</td>\n</tr>\n</tbody>\n</table>\n</div><p>O JWT deve ser armazenado em um cookie seguro ou local storage para evitar o seu roubo por meio de ataques de cross-site scripting (XSS), por exemplo.</p>\n","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["auth"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"66d2c683-b734-4d5b-bf70-7f2463928bd9","name":"(200) Admin authentication successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"eee0a8a64ab89bd6dfd33d\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/auth","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["auth"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Apr 2023 20:13:52 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"425"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 1,\n        \"type\": \"admin\",\n        \"name\": \"Luke Skywalker\"\n    },\n    \"tokenType\": \"Bearer\",\n    \"accessToken\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE2ODA4MDMwOTQsImp0aSI6IlNoODYyd2FVRS9IajRKQmZESHVIZGl4aGg2VkM3cUVyVjJkQ1J4czV6K009IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE2ODA4MDMwOTQsImV4cCI6MTY4MDgwNjY5NCwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.nbooHw_WK98ThubaDCa2GvvlblKuvXMQrVRuaYN1pwQ\",\n    \"expiresIn\": 28800\n}"},{"id":"81a28f77-6f4f-4d34-b930-25734a335964","name":"(200) Employee authentication successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"employee@company.com\",\n    \"password\": \"eee0a8a64ab89bd6dfd33d\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/auth","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["auth"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Apr 2023 16:51:23 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Set-Cookie","value":"PHPSESSID=be06b35651c349823c4f94e05fe1ed27; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"437"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 534,\n        \"type\": \"employee\",\n        \"name\": \"Han Solo\"\n    },\n    \"tokenType\": \"Bearer\",\n    \"accessToken\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE2ODA4MDMxMzksImp0aSI6Inh3akdvaENQUURvZTBIUkE1eFhZSWxIQUIvemtna1pnbnlpYnFwVVdsU289IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE2ODA4MDMxMzksImV4cCI6MTY4MDgwNjczOSwiZGF0YSI6eyJpZCI6NTM0LCJ0eXBlIjoiZW1wbG95ZWUiLCJwZXJzb25DdXN0b21lcklkIjpudWxsfX0.QchE2n0ru6uUALrQU2Az6UjycaqDH4reKJ2zpp_54fo\",\n    \"expiresIn\": 28800\n}"},{"id":"bb056619-468a-4412-a341-c8f76a66fd37","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"fr11\",\n    \"password\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/auth","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["auth"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Apr 2023 21:47:42 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"119"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"password\",\n            \"messages\": [\n                \"password does not exist or is empty\"\n            ]\n        }\n    ]\n}"},{"id":"bcde5c85-3406-4c58-90b5-7ca2bb133414","name":"(401) Invalid password","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"eee0a8a64ab89bd6dfd33d\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/auth","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["auth"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Apr 2023 21:13:09 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"49"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid password for user \\\"admin\\\"\"\n}"},{"id":"76d22491-f063-4f9e-8d97-621649193d26","name":"(401) Temporarily blocked to authenticate too many times","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"han.solo\",\n    \"password\": \"eee0a8a64ab89bd6dfd33d-error\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/auth","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["auth"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 May 2023 12:25:59 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"119"},{"key":"Keep-Alive","value":"timeout=5, max=95"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User \\\"han.solo\\\" has tried to authenticate too many times. You are temporarily blocked. Try again later.\"\n}"}],"_postman_id":"06d0a67b-5a59-45d4-abf0-9bc367963115"}],"id":"7256dfdf-a4fa-4f9c-b7ef-dcb7440bfaf0","description":"<p>Há duas formas de se autenticar na API: <strong>Token</strong> ou <strong>username</strong> e <strong>password</strong>.</p>\n<ol>\n<li><p><strong>Token:</strong> declarado aqui no enviroment como \"Application Token\", é uma chave SHA256 criada pelo administrador do sistema Conexa para uma (ou todas) as unidades, que pode ou não possuir um tempo de expiração. Essa chave deve ser informada no cabeçalho de autorização, com o tipo <strong>Bearer Token</strong>, para qualquer requisição a ser realizada na API (exceto para a rota <code>/auth</code>). A criação desse token é realizado por dentro do sistema Conexa em <strong>Config &gt; Integrações &gt; API / Token</strong>;</p>\n</li>\n<li><p><strong>username</strong> e <strong>password:</strong> é uma autentificação via as credenciais de um usuário existentes no sistema. Entende-se como usuário do sistema: <strong>admin</strong> e <strong>funcionário</strong>. Com isso, basta chamar a rota <code>/auth</code>, informando as credenciais no corpo da requisição, que um <em>Access Token</em> será retornado para ser adicionado, no cabeçalho de autorização com o tipo <strong>Bearer Token</strong>, nas requisições a serem realizadas na API (exceto para a própria rota <code>/auth</code>).</p>\n</li>\n</ol>\n<p><strong>Obs.:</strong> Se o Token de Aplicação estiver expirado a seguinte mensagem de erro será retornada para qualquer rota a ser acessada (exceto para a rota <code>/auth</code>):</p>\n<h4 id=\"401-unauthorized\">401 Unauthorized:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"The Application Token has expired in 2023-05-03\"\n}\n\n</code></pre>\n","_postman_id":"7256dfdf-a4fa-4f9c-b7ef-dcb7440bfaf0","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Sale","item":[{"name":"/sale","id":"6e7779fa-c0d6-4728-8292-53f7c835a3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"sellerId\": 534,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale","description":"<p>Criação de uma venda avulsa no sistema Conexa.</p>\n<h3 id=\"body\">Body:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente da venda</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>requesterId</td>\n<td>integer</td>\n<td>ID do solicitante da venda</td>\n<td>Depende da configuração do sistema</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário) que cadastrou a venda</td>\n<td>Não (deve ser enviado em requisições que a autenticação é realizada pelo API Token)</td>\n</tr>\n<tr>\n<td>productId</td>\n<td>integer</td>\n<td>ID do produto</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>integer</td>\n<td>Quantidade de itens do produto. Deve ser um valor maior que zero</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor personalizado para a venda, tanto para aplicar desconto quanto para um valor diferente do preço do produto</td>\n<td>Não (caso não informado, será calculado com base no preço unitário do produto)</td>\n</tr>\n<tr>\n<td>referenceDate</td>\n<td>string</td>\n<td>Data de referência da venda. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Não (caso não informado, será preenchido com a data atual)</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações da venda</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da venda criada</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["sale"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"e4fd8984-eccd-493c-8b65-f2b245dcacc7","name":"(201) Success - Apenas com campos obrigatórios","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"quantity\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Sep 2024 21:17:21 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"13"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 188481\n}"},{"id":"cfdce0ba-23f4-463b-b59f-682379d7f78c","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Apr 2023 20:29:51 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"13"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 159997\n}"},{"id":"75fa2af6-fe11-40b6-bafa-2df35b11ba19","name":"(201) Success - Informando sellerId com Token de Aplicação","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"sellerId\": 534,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Sep 2024 22:12:18 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"13"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 188510\n}"},{"id":"1f6bb8af-89b9-4230-916c-2505495469a3","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jan 2024 14:40:34 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"207"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"customerId\",\n            \"messages\": [\n                \"Customer Id cannot be blank\"\n            ]\n        },\n        {\n            \"field\": \"referenceDate\",\n            \"messages\": [\n                \"The format of referenceDate should be Y-m-d\\\\TH:i:sP\"\n            ]\n        }\n    ]\n}"},{"id":"e86fe32d-b15d-43c9-822d-fd15764038bc","name":"(401) Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Apr 2023 22:41:07 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"1a96110d-2bbc-4a6d-9f5b-ab164cea8e77","name":"(403) Not authorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Apr 2023 22:22:46 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"8601d0e7-ef58-4f61-9148-376b2ed7e7c3","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 572,\n    \"requesterId\": 48,\n    \"productId\": 4110,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Apr 2023 22:29:48 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"136"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"SALE_04\",\n            \"message\": \"Requester is not related to Customer\"\n        },\n        {\n            \"code\": \"SALE_03\",\n            \"message\": \"Han Solo doesn't have permissions to access this company: 6. The access to this company is required to performed this action. Verify the access and try again\"\n        }\n    ]\n}"},{"id":"13a17c55-0f16-406a-a0cc-49d5b8d369e9","name":"(500) Internal error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"productId\": 2521,\n    \"quantity\": 1,\n    \"amount\": 80.99,\n    \"referenceDate\": \"2024-09-24T17:24:00-03:00\",\n    \"notes\": \"Solicitação pelo WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Apr 2023 22:42:56 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"112"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Something went wrong, but don't worry, our developers are fighting the computer in an epic battle.\"\n}"}],"_postman_id":"6e7779fa-c0d6-4728-8292-53f7c835a3fa"},{"name":"/sale/:id","id":"fed8e8fa-3e9e-4830-9228-0a6752a95a7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","description":"<p>Recuperação dos principais dados de uma venda, independente de ser avulsa ou recorrente.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Status da venda, podendo ser: <strong>paid</strong>, <strong>billed</strong>, <strong>cancelled</strong>, <strong>notBilled</strong>, <strong>deductedFromQuota</strong>, <strong>billedCancelled</strong>, <strong>billedNegociated</strong> ou <strong>partiallyPaid</strong></td>\n</tr>\n<tr>\n<td>saleId</td>\n<td>integer</td>\n<td>ID da venda</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>integer</td>\n<td>ID do contrato quando a venda é originada de contrato</td>\n</tr>\n<tr>\n<td>recurringSaleId</td>\n<td>integer</td>\n<td>ID da venda recorrente quando a venda é originada de venda recorrente</td>\n</tr>\n<tr>\n<td><del>productId</del></td>\n<td><del>integer</del></td>\n<td><del>ID do produto</del> (Deprecated)</td>\n</tr>\n<tr>\n<td>product</td>\n<td>object</td>\n<td>Objeto do produto</td>\n</tr>\n<tr>\n<td>product.id</td>\n<td>integer</td>\n<td>ID do produto</td>\n</tr>\n<tr>\n<td>product.name</td>\n<td>string</td>\n<td>Nome do produto</td>\n</tr>\n<tr>\n<td>product.description</td>\n<td>string / null</td>\n<td>Descrição do produto</td>\n</tr>\n<tr>\n<td>product.companyId</td>\n<td>integer</td>\n<td>ID da unidade do produto</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n</tr>\n<tr>\n<td>requesterId</td>\n<td>integer / null</td>\n<td>ID do solicitante da venda</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário)</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>integer</td>\n<td>Quantidade de itens do produto na venda</td>\n</tr>\n<tr>\n<td>referenceDate</td>\n<td>string</td>\n<td>Data de referência da venda. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor final da venda</td>\n</tr>\n<tr>\n<td>originalAmount</td>\n<td>decimal</td>\n<td>Valor original da venda</td>\n</tr>\n<tr>\n<td>discountValue</td>\n<td>decimal</td>\n<td>Valor de desconto da venda</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações da venda</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string / null</td>\n<td>Data de criação da venda. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data de modificação da venda. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["sale",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"189040","key":"id"}]}},"response":[{"id":"41161144-a3e1-4b4b-81f6-9400dbef52ef","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"188510"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Sep 2024 01:02:06 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"CNXSESSID=5d76d78cf8579fea069e1ff1e79b31b1; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"348"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"notBilled\",\n    \"discountValue\": 0,\n    \"createdAt\": \"2024-10-16T12:38:59-03:00\",\n    \"updatedAt\": \"2025-01-15T17:10:51-03:00\",\n    \"product\": {\n        \"id\": 2521,\n        \"name\": \"Café15\",\n        \"description\": null,\n        \"companyId\": 3\n    },\n    \"contractId\": null,\n    \"recurringSaleId\": null,\n    \"saleId\": 189040,\n    \"amount\": 100,\n    \"sellerId\": 2,\n    \"quantity\": 1,\n    \"productId\": 2521,\n    \"customerId\": 627,\n    \"requesterId\": null,\n    \"referenceDate\": \"2024-10-19T17:10:00-03:00\",\n    \"originalAmount\": 100,\n    \"notes\": null\n}"},{"id":"ab52ffb9-5ecc-47f6-837f-b734dd48d357","name":"(404) Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"160007"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 Apr 2023 11:13:46 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"78"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Sale does not exist or you have no permission to access it.\"\n}"},{"id":"ddf202ea-1ba0-41c6-b1b6-6d55ff33da91","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"160007"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 Apr 2023 11:14:49 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"}],"_postman_id":"fed8e8fa-3e9e-4830-9228-0a6752a95a7d"},{"name":"/sale/:id","id":"a2044184-217a-443e-9b47-ac16b6aa6ca4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"requesterId\": 458,\n    \"sellerId\": 531,\n    \"quantity\": 2,\n    \"amount\": 500.99,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","description":"<p>Edição de uma ou n informações de uma venda avulsa no sistema Conexa.</p>\n<h3 id=\"body\">Body:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>requesterId</td>\n<td>integer</td>\n<td>ID do solicitante da venda</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário). Deve ser enviado em requisições que a autenticação é realizada pelo API Token</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>integer</td>\n<td>Quantidade de itens do produto. Deve ser um valor inteiro maior que zero</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor da venda</td>\n</tr>\n<tr>\n<td>referenceDate</td>\n<td>string</td>\n<td>Data de referência da venda. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações da venda</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response:</h3>\n<p>Mesmo conteúdo retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#fed8e8fa-3e9e-4830-9228-0a6752a95a7d\">GET /sale/:id</a>.</p>\n","urlObject":{"path":["sale",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"188510","key":"id"}]}},"response":[{"id":"f42437d2-c109-4b88-b23a-2826fe96065a","name":"(200) Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"quantity\": 2,\n    \"requesterId\": 487,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"160014"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 May 2023 19:21:21 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"311"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"notBilled\",\n    \"createdAt\": \"2023-05-08T16:57:04-03:00\",\n    \"updatedAt\": \"2023-05-09T19:21:23-03:00\",\n    \"saleId\": 160014,\n    \"amount\": 294.9,\n    \"quantity\": 2,\n    \"productId\": 4110,\n    \"customerId\": 572,\n    \"requesterId\": 487,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"discountValue\": 5.5,\n    \"originalAmount\": 300.4,\n    \"notes\": \"Café morno\"\n}"},{"id":"b00d415a-1d03-47d4-9946-cc82005d1ab0","name":"(200) Success - Alterado apenas o vendedor da venda","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"sellerId\": 531\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"188510"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Sep 2024 01:06:33 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"326"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"notBilled\",\n    \"createdAt\": \"2024-09-24T17:24:00-03:00\",\n    \"updatedAt\": \"2024-09-26T22:06:33-03:00\",\n    \"saleId\": 188510,\n    \"amount\": 294.9,\n    \"sellerId\": 531,\n    \"quantity\": 2,\n    \"productId\": 2521,\n    \"customerId\": 450,\n    \"requesterId\": 458,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"discountValue\": 5.5,\n    \"originalAmount\": 300.4,\n    \"notes\": \"Café morno\"\n}"},{"id":"bc8664c4-62ac-4204-b937-73a12f63a0a7","name":"(200) Success - Alternado o valor de uma venda avulsa","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 500.99\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"189101"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Nov 2024 11:47:00 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"312"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"notBilled\",\n    \"createdAt\": \"2024-11-05T19:15:12-03:00\",\n    \"updatedAt\": \"2024-11-06T08:47:00-03:00\",\n    \"saleId\": 189101,\n    \"amount\": 500.99,\n    \"sellerId\": 1,\n    \"quantity\": 1,\n    \"productId\": 2521,\n    \"customerId\": 617,\n    \"requesterId\": null,\n    \"referenceDate\": \"2024-11-05T19:15:00-03:00\",\n    \"discountValue\": 0,\n    \"originalAmount\": 500.99,\n    \"notes\": null\n}"},{"id":"21ef599f-e3f7-435e-ba32-b05a850ad9b0","name":"(400) Field Validation Error","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"quantity\": 2,\n    \"requesterId\": 221,\n    \"referenceDate\": \"15/04/2023\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"155459"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Apr 2023 15:38:23 GMT"},{"key":"Server","value":"Apache/2.4.54 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"referenceDate\",\n            \"messages\": [\n                \"Sale Reference Date isn't in valid format\"\n            ]\n        }\n    ]\n}"},{"id":"0e8dd67f-ff1f-4a1d-a660-f3c4c335758b","name":"(400) Field validation error - discount value exceed","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"quantity\": 1,\n    \"requesterId\": 487,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"160014"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 May 2023 19:17:50 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"135"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"discountValue\",\n            \"messages\": [\n                \"Discount value cannot exceed the product value\"\n            ]\n        }\n    ]\n}"},{"id":"710e8692-2084-4855-92b4-1866e90f04b9","name":"(404) Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"quantity\": 2,\n    \"requesterId\": 475,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"164545"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Apr 2023 15:35:30 GMT"},{"key":"Server","value":"Apache/2.4.54 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"39"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Sale \\\"164545\\\" not found\"\n}"},{"id":"8115b556-ef61-4ed9-af8c-5f20abfdbe98","name":"(422) Unable to process","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"quantity\": 2,\n    \"requesterId\": 221,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"155459"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Apr 2023 15:36:54 GMT"},{"key":"Server","value":"Apache/2.4.54 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"136"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"SALE_04\",\n            \"message\": \"Requester is not related to Customer\"\n        }\n    ]\n}"},{"id":"ff02639d-af62-484f-b98f-99bbf5f051fc","name":"(422) Unable to process - Alterando o ID do vendedor com autenticação por usuário e senha","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"quantity\": 2,\n    \"requesterId\": 487,\n    \"sellerId\": 574,\n    \"referenceDate\": \"2023-04-15T13:24:00-03:00\",\n    \"notes\": \"Café morno\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"160014"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Sep 2024 01:04:37 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"165"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"SALE_12\",\n            \"message\": \"The product that is linked to this sale does not allow its update\"\n        }\n    ]\n}"}],"_postman_id":"a2044184-217a-443e-9b47-ac16b6aa6ca4"},{"name":"/sale/:id","id":"59bdd02f-f066-468e-8350-f231502bbef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","description":"<p>Exclusão de uma venda avulsa no Conexa não faturada.</p>\n","urlObject":{"path":["sale",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"id":"8904e381-24b6-4ce7-b1dd-e39b0c7c4266","type":"any","value":"137452","key":"id"}]}},"response":[{"id":"87e04d83-6ea3-4365-86ad-ccd9203216ab","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"137453"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 10 Apr 2023 18:13:03 GMT"},{"key":"Server","value":"Apache/2.4.51 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"2f1328c7-1d95-44b1-b3cd-f72651c148dc","name":"(404) Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"137453"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Apr 2023 18:17:36 GMT"},{"key":"Server","value":"Apache/2.4.51 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"39"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Sale \\\"137453\\\" not found\"\n}"},{"id":"19d8b8df-3e91-48b5-afbf-9ae7ab0542f2","name":"(403) Unauthorized","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"137453"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Apr 2023 18:21:33 GMT"},{"key":"Server","value":"Apache/2.4.51 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"8a9774bc-db55-4d41-98b0-6b08d21fbfb0","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sale",":id"],"variable":[{"key":"id","value":"137452"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Apr 2023 18:10:37 GMT"},{"key":"Server","value":"Apache/2.4.51 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"99"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"SALE_08\",\n            \"message\": \"The Sale has already been invoiced and the Charge's status doesn't allow its deletion\"\n        },\n        {\n            \"code\": \"SALE_09\",\n            \"message\": \"The Sale belongs to a Hours Package Bundle\"\n        }\n    ]\n}"}],"_postman_id":"59bdd02f-f066-468e-8350-f231502bbef7"},{"name":"/sales","id":"a58b8e3f-1ecd-4813-808f-af9190e880cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales?limit=20","description":"<p>Listagem paginada de vendas, independente de ser avulsa ou recorrente.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula. Consultar exemplo: <a href=\"https://web.postman.co/workspace/c51b51f1-5fd1-43b8-82e6-972f5bfb78d4/example/25182821-2ec87e6e-caa0-4fc9-b034-e844c36b023d\">(200) Success filted by multiples IDs</a></p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro</strong> <strong><code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>. </p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de vendas contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#fed8e8fa-3e9e-4830-9228-0a6752a95a7d\">GET /sale/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["sales"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das vendas</p>\n","type":"text/plain"},"key":"id[]","value":"189616,187524"},{"disabled":true,"description":{"content":"<p>ID do produto da venda</p>\n","type":"text/plain"},"key":"productId","value":"4174"},{"disabled":true,"description":{"content":"<p>IDs dos clientes</p>\n","type":"text/plain"},"key":"customerId[]","value":"450,216"},{"disabled":true,"description":{"content":"<p>IDs das unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>ID do contrato</p>\n","type":"text/plain"},"key":"contractId","value":"1452"},{"disabled":true,"description":{"content":"<p>ID da venda recorrente</p>\n","type":"text/plain"},"key":"recurringSaleId","value":"1454"},{"disabled":true,"description":{"content":"<p>IDs dos vendedores (usuários) que cadastrou a venda</p>\n","type":"text/plain"},"key":"sellerId[]","value":"534,533"},{"disabled":true,"description":{"content":"<p>Referência para vendas realizadas nessa data ou após. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"dateFrom","value":"2025-12-25"},{"disabled":true,"description":{"content":"<p>Referência para vendas realizadas nessa data ou antes. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"dateTo","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>Status da venda, podendo ser: paid, billed, cancelled, notBilled, deductedFromQuota, billedCancelled, billedNegociated ou partiallyPaid</p>\n","type":"text/plain"},"key":"status","value":"notBilled"},{"disabled":true,"description":{"content":"<p>Data de criação: define a data a partir de quando as vendas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtFrom","value":"2024-04-01T12:00:00-03:00"},{"disabled":true,"description":{"content":"<p>Data de criação: define a data até quando as vendas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtTo","value":"2024-05-01T12:00:00-03:00"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca\nRecomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"b851d43c-f988-414f-9bbc-1de9bd67fe4e","name":"(200) Success default","originalRequest":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Sep 2023 18:32:40 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"5819"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"status\": \"notBilled\",\n            \"discountValue\": 16.5,\n            \"createdAt\": \"2017-12-08T14:54:32-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2106,\n                \"name\": \"Serviço de Acessoria\",\n                \"description\": \"Lorem ipsum nibh feugiat netus luctus phasellus aliquam consectetur ut justo dictum etiam cubilia\",\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 13,\n            \"amount\": 148.5,\n            \"sellerId\": 13,\n            \"quantity\": 2.75,\n            \"productId\": 2106,\n            \"customerId\": 14,\n            \"requesterId\": 1,\n            \"referenceDate\": \"2017-12-08T10:30:00-03:00\",\n            \"originalAmount\": 165,\n            \"notes\": null\n        },\n        {\n            \"status\": \"notBilled\",\n            \"discountValue\": 6,\n            \"createdAt\": \"2017-12-08T14:57:26-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\",\n                \"description\": \"Lorem ipsum nibh feugiat netus luctus phasellus aliquam consectetur ut justo dictum etiam cubilia\",\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 14,\n            \"amount\": 54,\n            \"sellerId\": 13,\n            \"quantity\": 1,\n            \"productId\": 2106,\n            \"customerId\": 14,\n            \"requesterId\": 1,\n            \"referenceDate\": \"2017-12-08T16:00:00-03:00\",\n            \"originalAmount\": 60,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:20:34-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 16,\n            \"amount\": 3.5,\n            \"sellerId\": null,\n            \"quantity\": 5,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:20:00-03:00\",\n            \"originalAmount\": 3.5,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:26:28-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 17,\n            \"amount\": 3.5,\n            \"sellerId\": null,\n            \"quantity\": 5,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:26:00-03:00\",\n            \"originalAmount\": 3.5,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:28:21-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 18,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:28:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:39:28-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 19,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:39:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:41:57-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 20,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:41:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T12:00:30-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 21,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T12:00:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T14:46:02-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 22,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T02:46:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T14:55:27-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 23,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T02:55:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T15:11:00-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 24,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T03:11:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T15:46:55-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 25,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T03:46:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T16:15:29-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 26,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T04:15:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-14T10:44:16-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 39,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-14T10:44:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"paid\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-20T18:11:33-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\",\n                \"description\": \"Lorem ipsum nibh feugiat netus luctus phasellus aliquam consectetur ut justo dictum etiam cubilia\",\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 40,\n            \"amount\": 900,\n            \"sellerId\": 13,\n            \"quantity\": 9,\n            \"productId\": 2106,\n            \"customerId\": 23,\n            \"requesterId\": 6,\n            \"referenceDate\": \"2017-12-21T00:00:00-03:00\",\n            \"originalAmount\": 900,\n            \"notes\": null\n        },\n        {\n            \"status\": \"paid\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-20T18:11:51-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2109,\n                \"name\": \"C - Pega Rato\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 41,\n            \"amount\": 4,\n            \"sellerId\": 13,\n            \"quantity\": 1,\n            \"productId\": 2109,\n            \"customerId\": 23,\n            \"requesterId\": 6,\n            \"referenceDate\": \"2017-12-20T08:00:00-03:00\",\n            \"originalAmount\": 4,\n            \"notes\": null\n        },\n        {\n            \"status\": \"notBilled\",\n            \"discountValue\": 36,\n            \"createdAt\": \"2017-12-21T11:29:23-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\",\n                \"description\": \"Lorem ipsum nibh feugiat netus luctus phasellus aliquam consectetur ut justo dictum etiam cubilia\",\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 42,\n            \"amount\": 324,\n            \"sellerId\": 13,\n            \"quantity\": 6,\n            \"productId\": 2106,\n            \"customerId\": 14,\n            \"requesterId\": 1,\n            \"referenceDate\": \"2017-12-25T08:00:00-03:00\",\n            \"originalAmount\": 360,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-28T15:41:42-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 239,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-28T03:41:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-28T16:49:57-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 240,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-28T04:49:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-28T16:51:04-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 241,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-28T04:51:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        }\n    ],\n    \"pagination\": {\n        \"itemPerPage\": 20,\n        \"currentPage\": 1,\n        \"totalPages\": 471,\n        \"totalItems\": 9415\n    }\n}"},{"id":"b3d9ecc2-2330-4f9f-a3d6-ee5f03643de2","name":"(200) Success filted by multiples IDs","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales?id[]=189616,187524&customerId[]=450,216&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sales"],"query":[{"key":"id[]","value":"189616,187524","description":"IDs das vendas"},{"key":"customerId[]","value":"450,216","description":"IDs dos clientes"},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Sep 2023 19:38:55 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"666"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"status\": \"paid\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2024-08-19T12:35:05-03:00\",\n            \"updatedAt\": \"2024-08-19T09:35:05-03:00\",\n            \"product\": {\n                \"id\": 2631,\n                \"name\": \"DEV Conexa Mensal\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": 1198,\n            \"recurringSaleId\": null,\n            \"saleId\": 187524,\n            \"amount\": 100,\n            \"sellerId\": 2,\n            \"quantity\": 1,\n            \"productId\": 2631,\n            \"customerId\": 216,\n            \"requesterId\": null,\n            \"referenceDate\": \"2024-02-11T12:35:00-03:00\",\n            \"originalAmount\": 100,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2025-12-21T22:13:14-03:00\",\n            \"updatedAt\": \"2025-12-21T22:13:14-03:00\",\n            \"product\": {\n                \"id\": 4140,\n                \"name\": \"AA Café Savóia\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 189616,\n            \"amount\": 500,\n            \"sellerId\": 450,\n            \"quantity\": 8,\n            \"productId\": 4140,\n            \"customerId\": 450,\n            \"requesterId\": 458,\n            \"referenceDate\": \"2025-12-25T16:00:00-03:00\",\n            \"originalAmount\": 500,\n            \"notes\": \"Atualização observações\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"8bd08e3b-cd16-4e1c-9df2-e2ffbee6adba","name":"(200) Success set pagination","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales?limit=5&offset=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sales"],"query":[{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"10","description":"Posição inicial da busca\nRecomendação: 0 * limit, 1 * limit, ..., k * limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Sep 2023 18:56:23 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1523"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:39:28-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 19,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:39:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T11:41:57-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 20,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T11:41:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T12:00:30-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 21,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T12:00:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T14:46:02-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 22,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T02:46:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        },\n        {\n            \"status\": \"billed\",\n            \"discountValue\": 0,\n            \"createdAt\": \"2017-12-12T14:55:27-03:00\",\n            \"updatedAt\": \"2024-01-11T17:18:04-03:00\",\n            \"product\": {\n                \"id\": 2108,\n                \"name\": \"Impressão P/B\",\n                \"description\": null,\n                \"companyId\": 3\n            },\n            \"contractId\": null,\n            \"recurringSaleId\": null,\n            \"saleId\": 23,\n            \"amount\": 0.7,\n            \"sellerId\": null,\n            \"quantity\": 1,\n            \"productId\": 2108,\n            \"customerId\": 17,\n            \"requesterId\": 3,\n            \"referenceDate\": \"2017-12-12T02:55:00-03:00\",\n            \"originalAmount\": 0.7,\n            \"notes\": null\n        }\n    ],\n    \"pagination\": {\n        \"itemPerPage\": 5,\n        \"currentPage\": 2,\n        \"totalPages\": 1883,\n        \"totalItems\": 9415\n    }\n}"},{"id":"8b34dc78-8731-4418-ac2d-bad818030e87","name":"(400) Invalid data","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales?companyId[]=31&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sales"],"query":[{"key":"companyId[]","value":"31","description":"ID da Unidade Inválida "},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Sep 2023 11:21:35 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"238"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"This company is disabled, or admin doesn't have permission to access it. The company must be enabled, or admin must have access to perform this action. Verify the company's status and access, then try again\"\n            ]\n        }\n    ]\n}"},{"id":"84225e68-77a8-47b6-8be5-99e9f6b7d4d2","name":"(403) Not authorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales?sellerId[]=534&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sales"],"query":[{"key":"sellerId[]","value":"534","description":"IDs dos vendedores (usuários) que cadastrou a venda"},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: 0 * limit, 1 * limit, ..., k * limit","type":"text","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 10:54:50 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"}],"_postman_id":"a58b8e3f-1ecd-4813-808f-af9190e880cd"}],"id":"a86db580-9fb9-4a1f-a6eb-ee95c2cde5d5","description":"<p>Endpoints que correspondem a Venda, avulsa ou não, no sistema Conexa.</p>\n<h2 id=\"códigos-de-erro-422---unable-to-process\">Códigos de Erro (422 - Unable to process)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SALE_01</td>\n<td>Não é possível conceder desconto em uma venda faturada</td>\n</tr>\n<tr>\n<td>SALE_02</td>\n<td>O desconto dado foi maior do que o limite de desconto permitido. Configure um limite maior editando o Perfil de Usuário</td>\n</tr>\n<tr>\n<td>SALE_03</td>\n<td>{username} não tem permissão para acessar a unidade: {companies}. Verifique o acesso e tente novamente</td>\n</tr>\n<tr>\n<td>SALE_04</td>\n<td>O solicitante da venda não pertence ao Cliente informado</td>\n</tr>\n<tr>\n<td>SALE_05</td>\n<td>Este usuário não tem permissão de conceder desconto</td>\n</tr>\n<tr>\n<td>SALE_06</td>\n<td>O usuário autenticado não tem permissão para {action} Vendas</td>\n</tr>\n<tr>\n<td>SALE_07</td>\n<td>A Venda foi gerada por um... 👀</td>\n</tr>\n<tr>\n<td>SALE_08</td>\n<td>A Venda já foi faturada e o status da Cobrança não permite sua {action}</td>\n</tr>\n<tr>\n<td>SALE_09</td>\n<td>A Venda pertence a um Pacote de Horas</td>\n</tr>\n<tr>\n<td>SALE_10</td>\n<td>A Venda foi gerada através de uma Venda Recorrente</td>\n</tr>\n<tr>\n<td>SALE_11</td>\n<td>Existem Impressões vinculadas a essa Venda</td>\n</tr>\n<tr>\n<td>SALE_12</td>\n<td>O Produto que está vinculado à esta venda não permite a sua edição</td>\n</tr>\n<tr>\n<td>SALE_13</td>\n<td>O produto \\'{productId}\\' não pode ser vendido para esse cliente.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a86db580-9fb9-4a1f-a6eb-ee95c2cde5d5","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Customer","item":[{"name":"/customer","event":[{"listen":"test","script":{"id":"8ffb364b-2988-4054-967c-139078c39386","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4872bc80-560d-455d-b9c5-14198e936385","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Julius Cris\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"tagsId\": [\n        1,\n        2\n    ],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true,\n        \"ir\": true,\n        \"pis\": true,\n        \"inss\": false,\n        \"csll\": true,\n        \"cofins\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    // \"naturalPerson\": {\n    //     \"cpf\": \"516.079.209-05\",\n    //     \"rg\": \"30.340.779-7\",\n    //     \"birthDate\": \"1977-05-01\",\n    //     \"issuingAuthority\": \"SSP BA\",\n    //     \"profession\": \"Developer\",\n    //     \"maritalStatus\": \"single\"\n    // },\n    // \"foreign\": {\n    //     \"document\": \"7700225VH (Passaporte)\",\n    //     \"birthDate\": \"1977-05-01\",\n    //     \"profession\": \"Developer\"\n    // },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"extraFields\": [\n        {\n            \"id\": 101,\n            \"value\": \"4qw79dsaoiqw\"\n        }\n    ],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    // \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    // \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer","description":"<p>Criação de um cliente no sistema Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não são necessários! </p>\n</blockquote>\n<h3 id=\"body\">Body:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do cliente</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>tradeName</td>\n<td>string / null</td>\n<td>Nome fantasia</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>pronunciation</td>\n<td>string / null</td>\n<td>Pronúncia</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fieldOfActivity</td>\n<td>string / null</td>\n<td>Ramo de atividade</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string / null</td>\n<td>Observações</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string / null</td>\n<td>Celular</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string / null</td>\n<td>Site</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>hasLoginAccess</td>\n<td>boolean</td>\n<td>Tem acesso a área do cliente</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string / null</td>\n<td>Login da área do cliente</td>\n<td>Apenas se o campo <strong>hasLoginAccess</strong> for <strong>true</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string / null</td>\n<td>Senha da área do cliente</td>\n<td>Apenas se o campo <strong>hasLoginAccess</strong> for <strong>true</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>automaticallyIssueNfse</td>\n<td>string / null</td>\n<td>Emitir NFS-e automaticamente. A opção deve ser uma das seguintes: <strong>whenGeneratingBilling</strong>, <strong>afterPaymentBilling</strong>, <strong>notIssue</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notesNfse</td>\n<td>string / null</td>\n<td>Observações da NFS-e</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxDeductions</td>\n<td>object</td>\n<td>Retenção de Imposto Municipal e Federal</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxDeductions.iss</td>\n<td>boolean</td>\n<td>Retém ISS (Imposto Municipal)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.ir</td>\n<td>boolean</td>\n<td>Retém IR (Imposto Federal)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.pis</td>\n<td>boolean</td>\n<td>Retém PIS (Imposto Federal)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.inss</td>\n<td>boolean</td>\n<td>Retém INSS (Imposto Federal)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.csll</td>\n<td>boolean</td>\n<td>Retém CSLL (Imposto Federal)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.cofins</td>\n<td>boolean</td>\n<td>Retém COFINS (Imposto Federal)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson</td>\n<td>object</td>\n<td>Objeto com os dados referentes a um cliente <strong>Pessoa Física</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>naturalPerson.cpf</td>\n<td>string / null</td>\n<td>CPF</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.rg</td>\n<td>string / null</td>\n<td>RG</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.birthDate</td>\n<td>date</td>\n<td>Data de aniversário. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.issuingAuthority</td>\n<td>string / null</td>\n<td>Órgão expedidor</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.profession</td>\n<td>string / null</td>\n<td>Profissão</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.maritalStatus</td>\n<td>string / null</td>\n<td>O estado civil do cliente, sendo: \"<strong>married</strong>\", \"<strong>single</strong>\", \"<strong>divorced</strong>\", \"<strong>widowed</strong>\" ou \"<strong>not informed</strong>\"</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson</td>\n<td>object</td>\n<td>Objeto com os dados referentes a um cliente <strong>Pessoa Jurídica</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>legalPerson.cnpj</td>\n<td>string / null</td>\n<td>CNPJ</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.foundationDate</td>\n<td>date</td>\n<td>Data de fundação. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.stateInscription</td>\n<td>string / null</td>\n<td>Inscrição estadual</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.municipalInscription</td>\n<td>string / null</td>\n<td>Inscrição municipal</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign</td>\n<td>object</td>\n<td>Objeto com os dados de estrangeiro</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreign.document</td>\n<td>string / null</td>\n<td>Número do documento de identificação estrangeiro</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign.birthDate</td>\n<td>date</td>\n<td>Data de aniversário. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign.profession</td>\n<td>string / null</td>\n<td>Profissão</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto com o endereço do cliente</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string / null</td>\n<td>CEP</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.country</td>\n<td>string / null</td>\n<td>País de origem (apenas se for <strong>estrangeiro</strong>)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>string / null</td>\n<td>Sigla do estado (UF)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string / null</td>\n<td>Cidade</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string / null</td>\n<td>Logradouro</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string / null</td>\n<td>Número</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string / null</td>\n<td>Bairro</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string / null</td>\n<td>Complemento</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>string[]</td>\n<td>Array com os telefones de contato. Os telefones devem ter 10 ou 11 números.</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emailsMessage</td>\n<td>string[]</td>\n<td>Array com os e-mails para envio de recados</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emailsFinancialMessages</td>\n<td>string[]</td>\n<td>Array com os e-mails para envio de avisos financeiros</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>tagsId</td>\n<td>integer[]</td>\n<td>Array com os IDs das Tags para associar ao cliente</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>extraFields</td>\n<td>array of objects</td>\n<td>Array de objetos de Campos Extras</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>extraFields[].id</td>\n<td>integer</td>\n<td>ID do Campo Extra</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>extraFields[].value</td>\n<td>string</td>\n<td>Valor para o Campo Extra</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isNetworkingProfileVisible</td>\n<td>boolean</td>\n<td>Exibir perfil do cliente na área de Networking da área do cliente</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isBlockedBookingCustomerArea</td>\n<td>boolean</td>\n<td>Não permite que o cliente cadastre novas reservas pela área do cliente, caso hasLoginAccess seja true</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isAllowedBookingOutsideBusinessHours</td>\n<td>boolean</td>\n<td>Permite reservar fora do horário de funcionamento padrão, caso hasLoginAccess seja true</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>internetPlan</td>\n<td>string / null</td>\n<td>Nome do plano de internet (Disponível apenas com o módulo Mikrotik ativo)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>businessPresentation</td>\n<td>string / null</td>\n<td>Breve apresentação sobre o cliente</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>offeredServicesProducts</td>\n<td>string / null</td>\n<td>Serviços e produtos oferecidos</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>receptionOrientations</td>\n<td>string / null</td>\n<td>Orientações para atendimento</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingOrientations</td>\n<td>string / null</td>\n<td>Orientações para correspondência</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingAddress</td>\n<td>object</td>\n<td>Objeto com o endereço para correspondências</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingAddress.zipCode</td>\n<td>string / null</td>\n<td>CEP</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.state</td>\n<td>string / null</td>\n<td>Sigla do estado (UF)</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.city</td>\n<td>string / null</td>\n<td>Cidade</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.street</td>\n<td>string / null</td>\n<td>Logradouro</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.number</td>\n<td>string / null</td>\n<td>Número</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.neighborhood</td>\n<td>string / null</td>\n<td>Bairro</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.additionalDetails</td>\n<td>string / null</td>\n<td>Complemento</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.landmark</td>\n<td>string / null</td>\n<td>Ponto de referência</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>extensionNumbers</td>\n<td>string[]</td>\n<td>Array com os ramais</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>defaultDueDay</td>\n<td>integer</td>\n<td>Dia de vencimento padrão do cliente</td>\n<td>Não</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do cliente criado</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["customer"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"065f55b3-b9ae-4ab2-9a2f-9a8b31163222","name":"(201) Success - PJ - Conexa Recorrência","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 18:57:56 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 114\n}"},{"id":"6d222ae8-02d1-449a-b148-6a8e2fd33c5b","name":"(201) Success - PF - Conexa Recorrências","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Nathan Otávio Santos\",\n    \"tradeName\": \"Dr Nathanzinho\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Medicina\",\n    \"notes\": \"Ortopedista\",\n    \"cellNumber\": \"(71) 98748-7386\",\n    \"website\": \"nathanmedico.com\",\n    \"hasLoginAccess\": true,\n    \"login\": \"nathanzinho\",\n    \"password\": \"ePpg1g1bXXH0urkU#%\",\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Developer\",\n        \"maritalStatus\": \"single\"\n    },\n    \"address\": {\n        \"zipCode\":\"41603-470\", \n        \"state\":  \"BA\",\n        \"city\": \"Salvador\",\n        \"street\": \"Rua Engenheira Magnólia Teixeira\",\n        \"number\": \"469\",\n        \"neighborhood\": \"Praia do Flamengo\",\n        \"additionalDetails\": \"\"\n    },\n    \"phones\": [\"(71) 3926-8956\"],\n    \"emailsMessage\" : [\"nathanzinho@medico.com\"],\n    \"emailsFinancialMessages\": [\"nathanzinho@medico.com\", \"nathanzinho@medico.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 19:10:42 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 116\n}"},{"id":"c1afef9f-93b2-418b-9a26-9ab70231258d","name":"(201) Success - Estrangeiro - Conexa Recorrência","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Michael M Kingston\",\n    \"tradeName\": \"Michael\",\n    \"pronunciation\": null,\n    \"cellNumber\": \"818-430-4849\",\n    \"hasLoginAccess\": false,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Developer\"\n    },\n    \"address\": {\n        \"zipCode\":\"91505\",\n        \"country\":\"United States\",\n        \"city\":\"Burbank\",\n        \"state\":\"California\",\n        \"street\":\"Liberty Avenue\",\n        \"number\":\"1967\",\n        \"neighborhood\":\"Downtown\",\n        \"additionalDetails\":\"3rd floor\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"michael@mike.com\"],\n    \"emailsFinancialMessages\": [\"michael@mike.com\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 19:26:52 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 118\n}"},{"id":"8c10a67f-7dd6-45c8-8cfc-a845cc7fbeaf","name":"(201) Success - PJ - Conexa Coworking","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 19:30:17 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 592\n}"},{"id":"ad626eab-2735-4932-a5b5-15e784eea966","name":"(201) Success - PJ - Conexa Coworking - Retenção de Impostos Federais","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"ir\": true,\n        \"pis\": true,\n        \"inss\": true,\n        \"csll\": true,\n        \"cofins\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 11:52:43 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 622\n}"},{"id":"bd03f88b-3957-408a-bdbe-7b8b7ac18f12","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": \"3\",\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"isForeign\": false,\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": 99557155000190,\n        \"foundationDate\": \"2020-06-32\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 19:31:20 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"247"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"isForeign\",\n            \"messages\": [\n                \"Failed to set or not exists \\\"isForeign\\\" field\"\n            ]\n        },\n        {\n            \"field\": \"legalPerson.cnpj\",\n            \"messages\": [\n                \"CNPJ must be string\"\n            ]\n        },\n        {\n            \"field\": \"legalPerson.foundationDate\",\n            \"messages\": [\n                \"The format of Foundation Date is invalid\"\n            ]\n        },\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"CompanyId must be integer\"\n            ]\n        }\n    ]\n}"},{"id":"b121b16c-18c9-4e4c-ab7b-af42b7aea01d","name":"(400) Field validation error - Retenção de Impostos Federais não habilitado na unidade","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"taxDeductions\": {\n        \"ir\": true,\n        \"pis\": true,\n        \"inss\": true,\n        \"csll\": true,\n        \"cofins\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 11:56:50 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"600"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"taxDeductions.ir\",\n            \"messages\": [\n                \"The IR Federal Tax is not available for the customer's company\"\n            ]\n        },\n        {\n            \"field\": \"taxDeductions.pis\",\n            \"messages\": [\n                \"The PIS Federal Tax is not available for the customer's company\"\n            ]\n        },\n        {\n            \"field\": \"taxDeductions.inss\",\n            \"messages\": [\n                \"The INSS Federal Tax is not available for the customer's company\"\n            ]\n        },\n        {\n            \"field\": \"taxDeductions.csll\",\n            \"messages\": [\n                \"The CSLL Federal Tax is not available for the customer's company\"\n            ]\n        },\n        {\n            \"field\": \"taxDeductions.cofins\",\n            \"messages\": [\n                \"The COFINS Federal Tax is not available for the customer's company\"\n            ]\n        }\n    ]\n}"},{"id":"e0539c3c-d442-47c8-88b0-c8422b74528e","name":"(401) Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Apr 2023 13:15:20 GMT"},{"key":"Server","value":"Apache/2.4.52 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"a51c2c3a-7420-4f7c-939a-6b37652377a9","name":"(403) Not authorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Apr 2023 13:20:01 GMT"},{"key":"Server","value":"Apache/2.4.52 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"3bdd94ba-5f1e-4466-a517-2738278117f1","name":"(404) Company Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 18:23:11 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"83"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This CompanyId does not exist or you have no permission to access it.\"\n}"},{"id":"60bd21c4-741f-4f9d-976f-444630982dc0","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Developer\",\n        \"maritalStatus\": \"single\"\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Developer\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 19:32:37 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"212"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CUSTOMER_01\",\n            \"message\": \"The customer cannot belong to more than one group, they can only be an natural or legal person or foreigner.\"\n        }\n    ]\n}"},{"id":"127c17ef-4d22-4651-8a3a-27974f03ffdc","name":"(500) Internal error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": false,\n    \"login\": null,\n    \"password\": null,\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3344\"],\n    \"emailsMessage\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Antônio Menito\",\n        \"number\": \"264\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"additionalDetails\": \"Bloco A1\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Apr 2023 13:25:45 GMT"},{"key":"Server","value":"Apache/2.4.52 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Something went wrong, but don't worry, our developers are fighting the computer in an epic battle.\"\n}"}],"_postman_id":"4872bc80-560d-455d-b9c5-14198e936385"},{"name":"/customer/:id","id":"8ccf00c9-767b-4517-b085-a3e5a784431e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","description":"<p>Recuperação dos dados dos clientes. Abaixo exibimos uma tabela do que será retornado dado o tipo de versão do software Conexa.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>tradeName</td>\n<td>string</td>\n<td>Nome fantasia</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td>Primeiro nome do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>pronunciation</td>\n<td>string</td>\n<td>Pronúncia</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fieldOfActivity</td>\n<td>string</td>\n<td>Ramo de atividade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string</td>\n<td>Celular</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td>Site</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>hasLoginAccess</td>\n<td>boolean</td>\n<td>Tem acesso a área do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string</td>\n<td>Login da área do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>automaticallyIssueNfse</td>\n<td>string</td>\n<td>Configuração automática da emissão de NFS-e. Podendo ser: <strong>whenGeneratingBilling</strong>, <strong>afterPaymentBilling</strong>, <strong>notIssue</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notesNfse</td>\n<td>string</td>\n<td>Observações da NFS-e</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxDeductions</td>\n<td>object</td>\n<td>Retenção de Imposto Municipal e Federal</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxDeductions.iss</td>\n<td>boolean</td>\n<td>Flag se retém ISS (Imposto Municipal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.ir</td>\n<td>boolean</td>\n<td>Flag se retém IR (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.pis</td>\n<td>boolean</td>\n<td>Flag se retém PIS (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.inss</td>\n<td>boolean</td>\n<td>Flag se retém INSS (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.csll</td>\n<td>boolean</td>\n<td>Flag se retém CSLL (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.cofins</td>\n<td>boolean</td>\n<td>Flag se retém COFINS (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>isJuridicalPerson</td>\n<td>boolean</td>\n<td>Flag se é uma pessoa jurídica</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isForeign</td>\n<td>boolean</td>\n<td>Flag se pessoa estrangeira</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>naturalPerson</td>\n<td>object</td>\n<td>Objeto com os dados referentes a um cliente <strong>Pessoa Física</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>naturalPerson.cpf</td>\n<td>string</td>\n<td>CPF</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.rg</td>\n<td>string</td>\n<td>RG</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.birthDate</td>\n<td>date</td>\n<td>Data de aniversário. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.issuingAuthority</td>\n<td>string</td>\n<td>Órgão expedidor</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.maritalStatus</td>\n<td>string</td>\n<td>O estado civil do cliente, podendo ser: \"<strong>married</strong>\", \"<strong>single</strong>\", \"<strong>divorced</strong>\", \"<strong>widowed</strong>\" ou \"<strong>not informed</strong>\"</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.profession</td>\n<td>string</td>\n<td>Profissão</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson</td>\n<td>object</td>\n<td>Objeto com os dados referentes a um cliente <strong>Pessoa Jurídica</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>legalPerson.cnpj</td>\n<td>string</td>\n<td>CNPJ</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.foundationDate</td>\n<td>date</td>\n<td>Data de fundação. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.stateInscription</td>\n<td>string</td>\n<td>Inscrição estadual</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.municipalInscription</td>\n<td>string</td>\n<td>Inscrição municipal</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign</td>\n<td>object</td>\n<td>Objeto com os dados de estrangeiro</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreign.document</td>\n<td>string</td>\n<td>Número do documento de identificação estrangeiro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign.birthDate</td>\n<td>date</td>\n<td>Data de aniversário. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign.profession</td>\n<td>string</td>\n<td>Profissão</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto com o endereço do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>CEP</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.country</td>\n<td>string</td>\n<td>País de origem (apenas se for <strong>estrangeiro</strong>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>object</td>\n<td>Informações do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state.id</td>\n<td>integer</td>\n<td>ID do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state.name</td>\n<td>string</td>\n<td>Nome do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state.abbreviation</td>\n<td>string</td>\n<td>UF do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Cidade</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Logradouro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string</td>\n<td>Número</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>string[]</td>\n<td>Array com os telefones de contato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emailsMessage</td>\n<td>string[]</td>\n<td>Array com os e-mails para envio de recados</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emailsFinancialMessages</td>\n<td>string[]</td>\n<td>Array com os e-mails para envio de avisos financeiros</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>tagsId</td>\n<td>integer[]</td>\n<td>Array com os IDs das Tags associadas</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isBlocked</td>\n<td>boolean</td>\n<td>Está bloqueado ou não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Está ativa ou não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>extraFields</td>\n<td>array of objects</td>\n<td>Array de objetos com os campos extras do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>extraFields.id</td>\n<td>integer</td>\n<td>ID do campo extra</td>\n<td>-</td>\n</tr>\n<tr>\n<td>extraFields.name</td>\n<td>string</td>\n<td>Nome do campo extra</td>\n<td>-</td>\n</tr>\n<tr>\n<td>extraFields.value</td>\n<td>string</td>\n<td>Valor do campo extra</td>\n<td>-</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de cadastro. Formato W3C: (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isNetworkingProfileVisible</td>\n<td>boolean</td>\n<td>Exibe perfil do cliente na área de Networking da área do cliente?</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isBlockedBookingCustomerArea</td>\n<td>boolean</td>\n<td>Não permite que o cliente cadastre novas reservas pela área do cliente, caso hasLoginAccess seja true?</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isAllowedBookingOutsideBusinessHours</td>\n<td>boolean</td>\n<td>Permite reservar fora do horário de funcionamento padrão, caso hasLoginAccess seja true?</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>internetPlan</td>\n<td>string</td>\n<td>Nome do plano de internet (Disponível apenas com o módulo Mikrotik ativo)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>businessPresentation</td>\n<td>string</td>\n<td>Breve apresentação sobre o cliente</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>offeredServicesProducts</td>\n<td>string</td>\n<td>Serviços e produtos oferecidos</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>receptionOrientations</td>\n<td>string</td>\n<td>Orientações para atendimento</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingOrientations</td>\n<td>string</td>\n<td>Orientações para correspondência</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingAddress</td>\n<td>object</td>\n<td>Objeto com o endereço para correspondências</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingAddress.zipCode</td>\n<td>string</td>\n<td>CEP</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.state</td>\n<td>object</td>\n<td>Informações do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.state.id</td>\n<td>integer</td>\n<td>ID do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.state.name</td>\n<td>string</td>\n<td>Nome do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.state.abbreviation</td>\n<td>string</td>\n<td>UF do estado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.city</td>\n<td>string</td>\n<td>Cidade</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.street</td>\n<td>string</td>\n<td>Logradouro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.number</td>\n<td>string</td>\n<td>Número</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.neighborhood</td>\n<td>string</td>\n<td>Bairro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.additionalDetails</td>\n<td>string</td>\n<td>Complemento</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.landmark</td>\n<td>string</td>\n<td>Ponto de referência</td>\n<td>-</td>\n</tr>\n<tr>\n<td>extensionNumbers</td>\n<td>string[]</td>\n<td>Array com os ramais (depende de configuração)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>dedicatedPhones</td>\n<td>array of objects</td>\n<td>Array de objetos com os telefones exclusivos (depende de configuração)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>dedicatedPhones.id</td>\n<td>integer</td>\n<td>ID do telefone exclusivo vinculado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dedicatedPhones.phone</td>\n<td>string</td>\n<td>Telefone exclusivo vinculado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailboxes</td>\n<td>string[]</td>\n<td>Array com as caixas postais (depende de configuração)</td>\n<td>Conexa Coworking</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["customer",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"type":"any","value":"541","key":"id"}]}},"response":[{"id":"5d1a62d7-9695-4ac9-861c-88b5f32bc012","name":"(200) Success - PJ - Conexa Recorrências","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"127"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 May 2023 17:33:34 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1110"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo\",\n        \"city\": \"Campinas\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"number\": \"443\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Alziro Arten\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"automaticallyIssueNfse\": null,\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2023-05-29T17:33:22-03:00\",\n    \"customerId\": 127,\n    \"emails\": null,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \" financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"admin@fakeabc.com\",\n        \"crm@fakeabc.com\"\n    ],\n    \"extraFields\": [\n        {\n            \"id\": 1,\n            \"name\": \"UTM\",\n            \"value\": \"Instagram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"External ID\",\n            \"value\": \"1001\"\n        }\n    ],\n    \"fieldOfActivity\": \"Indústria\",\n    \"firstName\": \"Fake\",\n    \"hasLoginAccess\": null,\n    \"isActive\": true,\n    \"isBlocked\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": true,\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"municipalInscription\": \"145263\",\n        \"stateInscription\": \"4569\"\n    },\n    \"login\": null,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"notesNfse\": null,\n    \"phones\": [\n        \"7522225455\",\n        \"7538853344\"\n    ],\n    \"pronunciation\": null,\n    \"tagsId\": [\n        3\n    ],\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"tradeName\": \"Fake ABC\",\n    \"website\": \"fakeabc.app\"\n}"},{"id":"e7202779-31f0-4949-ba06-a28a3fde5699","name":"(200) Success - PF - Conexa Recorrências","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"128"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 May 2023 17:47:35 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1015"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": null,\n        \"city\": \"Salvador\",\n        \"neighborhood\": \"Praia do Flamengo\",\n        \"number\": \"469\",\n        \"state\": {\n            \"id\": 5,\n            \"name\": \"Bahia\",\n            \"abbreviation\": \"BA\"\n        },\n        \"street\": \"Rua Engenheira Magnólia Teixeira\",\n        \"zipCode\": \"41603-470\"\n    },\n    \"automaticallyIssueNfse\": null,\n    \"cellNumber\": \"71987487386\",\n    \"companyId\": 3,\n    \"createdAt\": \"2023-05-29T17:43:10-03:00\",\n    \"customerId\": 128,\n    \"emails\": null,\n    \"emailsFinancialMessages\": [\n        \"nathanzinho@medico.com\",\n        \" nathanzinho@medico.com\"\n    ],\n    \"emailsMessage\": [\n        \"nathanzinho@medico.com\"\n    ],\n    \"extraFields\": [\n        {\n            \"id\": 1,\n            \"name\": \"UTM\",\n            \"value\": \"Instagram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"External ID\",\n            \"value\": \"1001\"\n        }\n    ],\n    \"fieldOfActivity\": \"Medicina\",\n    \"firstName\": \"Dr\",\n    \"hasLoginAccess\": null,\n    \"isActive\": true,\n    \"isBlocked\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": false,\n    \"login\": \"nathanzinho\",\n    \"name\": \"Nathan Otávio Santos\",\n    \"naturalPerson\": {\n        \"birthDate\": \"1977-05-01\",\n        \"cpf\": \"516.079.209-05\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"maritalStatus\": \"single\",\n        \"profession\": \"Developer\",\n        \"rg\": \"303407797\"\n    },\n    \"notes\": \"Ortopedista\",\n    \"notesNfse\": null,\n    \"phones\": [\n        \"7139268956\"\n    ],\n    \"pronunciation\": null,\n    \"tagsId\": [\n        3\n    ],\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"tradeName\": \"Dr Nathanzinho\",\n    \"website\": \"nathanmedico.com\"\n}"},{"id":"eaf7ed9f-4203-47f7-a83b-ca0e850d2bd4","name":"(200) Success - Estrangeiro - Conexa Recorrências","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"129"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 May 2023 17:48:08 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"840"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"3rd floor\",\n        \"city\": \"Burbank\",\n        \"country\": \"United States\",\n        \"neighborhood\": \"Downtown\",\n        \"number\": \"1967\",\n        \"state\": \"California\",\n        \"street\": \"Liberty Avenue\",\n        \"zipCode\": null\n    },\n    \"automaticallyIssueNfse\": null,\n    \"cellNumber\": \"8184304849\",\n    \"companyId\": 3,\n    \"createdAt\": \"2023-05-29T17:44:33-03:00\",\n    \"customerId\": 129,\n    \"emails\": null,\n    \"emailsFinancialMessages\": [\n        \"michael@mike.com\"\n    ],\n    \"emailsMessage\": [\n        \"michael@mike.com\"\n    ],\n    \"extraFields\": [\n        {\n            \"id\": 1,\n            \"name\": \"UTM\",\n            \"value\": \"Instagram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"External ID\",\n            \"value\": \"1001\"\n        }\n    ],\n    \"fieldOfActivity\": null,\n    \"firstName\": \"Michael\",\n    \"foreign\": {\n        \"birthDate\": \"1977-05-01\",\n        \"document\": \"7700225VH (Passaporte)\",\n        \"profession\": \"Developer\"\n    },\n    \"hasLoginAccess\": null,\n    \"isActive\": true,\n    \"isBlocked\": false,\n    \"isForeign\": true,\n    \"isJuridicalPerson\": null,\n    \"login\": null,\n    \"name\": \"Michael M Kingston\",\n    \"notes\": null,\n    \"notesNfse\": null,\n    \"phones\": [\n        \"7522225455\",\n        \"7538853344\"\n    ],\n    \"pronunciation\": null,\n    \"tagsId\": [\n        3\n    ],\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"tradeName\": \"Michael\",\n    \"website\": null\n}"},{"id":"e8fe2850-512d-4b4d-90ea-90279815a1cb","name":"(200) Success - PJ - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"723"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 May 2023 17:49:25 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1888"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo\",\n        \"city\": \"Campinas\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"number\": \"443\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Alziro Arten\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"automaticallyIssueNfse\": null,\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 6,\n    \"createdAt\": \"2023-05-29T17:49:18-03:00\",\n    \"customerId\": 723,\n    \"dedicatedPhones\": [\n        {\n            \"id\": 9,\n            \"phone\": \"(75) 92011-8042\"\n        }\n    ],\n    \"emails\": null,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \" financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"admin@fakeabc.com\",\n        \"crm@fakeabc.com\"\n    ],\n    \"extraFields\": [\n        {\n            \"id\": 1,\n            \"name\": \"UTM\",\n            \"value\": \"Instagram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"External ID\",\n            \"value\": \"1001\"\n        }\n    ],\n    \"extensionNumbers\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"firstName\": \"Fake\",\n    \"hasLoginAccess\": null,\n    \"internetPlan\": null,\n    \"isActive\": true,\n    \"isAllowedBookingOutsideBusinessHours\": null,\n    \"isBlocked\": false,\n    \"isBlockedBookingCustomerArea\": null,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": true,\n    \"isNetworkingProfileVisible\": null,\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"municipalInscription\": \"145263\",\n        \"stateInscription\": \"4569\"\n    },\n    \"login\": null,\n    \"mailboxes\": null,\n    \"mailingAddress\": {\n        \"additionalDetails\": \"Bloco A1. Ponto de referência: Em frente a Praça da Ciências\",\n        \"city\": \"Campinas\",\n        \"landmark\": null,\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"number\": \"264\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Antônio Menito\",\n        \"zipCode\": \"13060-008\"\n    },\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"notesNfse\": null,\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"phones\": [\n        \"7522225455\",\n        \"7538853344\"\n    ],\n    \"pronunciation\": null,\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"tagsId\": [\n        3\n    ],\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"tradeName\": \"Fake ABC\",\n    \"website\": \"fakeabc.app\"\n}"},{"id":"60e411e9-b55d-4214-b8ad-f497b8c830f3","name":"(200) Success - PJ - Conexa Coworking - Retém Impostos Federais","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"622"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 12:17:05 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1983"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo\",\n        \"city\": \"Campinas\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"number\": \"443\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Alziro Arten\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2024-10-01T08:52:43-03:00\",\n    \"customerId\": 622,\n    \"dedicatedPhones\": null,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \" financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"admin@fakeabc.com\",\n        \"crm@fakeabc.com\"\n    ],\n    \"extraFields\": [\n        {\n            \"id\": 1,\n            \"name\": \"UTM\",\n            \"value\": \"Instagram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"External ID\",\n            \"value\": \"1001\"\n        }\n    ],\n    \"extensionNumbers\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"firstName\": \"Fake\",\n    \"hasIssRetention\": false,\n    \"hasLoginAccess\": false,\n    \"internetPlan\": \"default\",\n    \"isActive\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"isBlocked\": false,\n    \"isBlockedBookingCustomerArea\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": true,\n    \"isNetworkingProfileVisible\": true,\n    \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"2020-06-12\",\n        \"municipalInscription\": \"145263\",\n        \"stateInscription\": \"4569\"\n    },\n    \"login\": null,\n    \"mailboxes\": null,\n    \"mailingAddress\": {\n        \"additionalDetails\": \"Bloco A1\",\n        \"city\": \"Campinas\",\n        \"landmark\": \"Em frente a Praça da Ciências\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"number\": \"264\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Antônio Menito\",\n        \"zipCode\": \"13060-008\"\n    },\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"phones\": [\n        \"7522225455\",\n        \"7538853344\"\n    ],\n    \"pronunciation\": null,\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"tagsId\": [\n        3\n    ],\n    \"taxDeductions\": {\n        \"cofins\": true,\n        \"csll\": false,\n        \"inss\": false,\n        \"ir\": true,\n        \"iss\": false,\n        \"pis\": true\n    },\n    \"tradeName\": \"Fake ABC\",\n    \"website\": \"fakeabc.app\"\n}"},{"id":"8d7c1f1e-8802-4d3d-84e8-d8ee8f746065","name":"(403) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"type":"text","disabled":true}],"variable":[{"key":"id","value":"546"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Apr 2023 16:21:39 GMT"},{"key":"Server","value":"Apache/2.4.54 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"87b685f2-9916-42b5-950f-509bbff36ba7","name":"(403) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"type":"text","disabled":true}],"variable":[{"key":"id","value":"546"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Apr 2023 16:19:40 GMT"},{"key":"Server","value":"Apache/2.4.54 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"63"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You don't have permission to access this Customer\"\n}"},{"id":"93211c33-7289-4c0b-9bf6-ac08cc8cf823","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"type":"text","disabled":true}],"variable":[{"id":"ae31d0cc-9911-4d98-8c56-0552fbe8e4c5","key":"id","value":"546"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 May 2023 19:58:31 GMT"},{"key":"Server","value":"Apache/2.4.48 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.30"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Customer does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"8ccf00c9-767b-4517-b085-a3e5a784431e"},{"name":"/customer/:id","id":"fc78b0c5-4b6a-4c11-a708-3b823d951e51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\"],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"clienteteste\",\n    \"password\": \"abc123456#$\",\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n        // \"ir\": true,\n        // \"pis\": true,\n        // \"inss\": false,\n        // \"csll\": true,\n        // \"cofins\": true\n    },\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"single\"\n    },\n   /*\"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },*/\n    /*\"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Full Stack Developer\"\n    },*/\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        //\"country\": \"United States\",\n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\"\n    },\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"tagsId\": [1],\n    \"extraFields\": [\n        {\n            \"id\": 101,\n            \"value\": \"1234\"\n        },\n        {\n            \"id\": 1,\n            \"value\": \"Salvador\"\n        }\n    ],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua xyz 5\",\n        \"number\": \"24\",\n        \"neighborhood\": \"Jardim Anchieta 2\",\n        \"additionalDetails\": \"Bloco A1 3\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": [\"7598698525\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","description":"<p>Edição de uma ou n informações de um cliente no sistema Conexa.</p>\n<h3 id=\"body\">Body:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>Id da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>tradeName</td>\n<td>string</td>\n<td>Nome fantasia</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>pronunciation</td>\n<td>string</td>\n<td>Pronúncia</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fieldOfActivity</td>\n<td>string</td>\n<td>Ramo de atividade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string</td>\n<td>Celular</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>string[]</td>\n<td>Array com os telefones de contato. Os telefones devem ter 10 ou 11 números.</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td>Site</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>hasLoginAccess</td>\n<td>boolean</td>\n<td>Tem acesso a área do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string</td>\n<td>Login da área do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>Senha da área do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>automaticallyIssueNfse</td>\n<td>string</td>\n<td>Emitir NFS-e automaticamente (depende de configuração). A opção deve ser uma das seguintes: <strong>whenGeneratingBilling</strong>, <strong>afterPaymentBilling</strong>, <strong>notIssue</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notesNfse</td>\n<td>string</td>\n<td>Observações da NFS-e (depende de configuração)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxDeductions</td>\n<td>object</td>\n<td>Retenção de Imposto Municipal e Federal</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxDeductions.iss</td>\n<td>boolean</td>\n<td>Retém ISS (Imposto Municipal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.ir</td>\n<td>boolean</td>\n<td>Retém IR (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.pis</td>\n<td>boolean</td>\n<td>Retém PIS (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.inss</td>\n<td>boolean</td>\n<td>Retém INSS (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.csll</td>\n<td>boolean</td>\n<td>Retém CSLL (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxDeductions.cofins</td>\n<td>boolean</td>\n<td>Retém COFINS (Imposto Federal)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson</td>\n<td>object</td>\n<td>Objeto com os dados referentes a um cliente <strong>Pessoa Física</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>naturalPerson.cpf</td>\n<td>string</td>\n<td>CPF</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.rg</td>\n<td>string</td>\n<td>RG</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.birthDate</td>\n<td>date</td>\n<td>Data de aniversário. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.issuingAuthority</td>\n<td>string</td>\n<td>Órgão expedidor</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.profession</td>\n<td>string</td>\n<td>Profissão</td>\n<td>-</td>\n</tr>\n<tr>\n<td>naturalPerson.maritalStatus</td>\n<td>string</td>\n<td>O estado civil do cliente, sendo: \"<strong>married</strong>\", \"<strong>single</strong>\", \"<strong>divorced</strong>\", \"<strong>widowed</strong>\" ou \"<strong>not informed</strong>\"</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson</td>\n<td>object</td>\n<td>Objeto com os dados referentes a um cliente <strong>Pessoa Jurídica</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>legalPerson.cnpj</td>\n<td>string</td>\n<td>CNPJ</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.foundationDate</td>\n<td>date</td>\n<td>Data de fundação. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.stateInscription</td>\n<td>string</td>\n<td>Inscrição estadual</td>\n<td>-</td>\n</tr>\n<tr>\n<td>legalPerson.municipalInscription</td>\n<td>string</td>\n<td>Inscrição municipal</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign</td>\n<td>object</td>\n<td>Objeto com os dados de estrangeiro</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreign.document</td>\n<td>string</td>\n<td>Número do documento de identificação estrangeiro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign.birthDate</td>\n<td>date</td>\n<td>Data de aniversário. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreign.profession</td>\n<td>string</td>\n<td>Profissão</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto com o endereço do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>CEP</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.country</td>\n<td>string</td>\n<td>País de origem (apenas se for <strong>estrangeiro</strong>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>string</td>\n<td>Sigla do estado (UF)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Cidade</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Logradouro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string</td>\n<td>Número</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento</td>\n<td>-</td>\n</tr>\n<tr>\n<td>emailsMessage</td>\n<td>string[]</td>\n<td>Array com os e-mails para envio de recados</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emailsFinancialMessages</td>\n<td>string[]</td>\n<td>Array com os e-mails para envio de avisos financeiros</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>tagsId</td>\n<td>integer[]</td>\n<td>Array com os IDs das Tags para associar ao cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>extraFields</td>\n<td>array of objects</td>\n<td>Array de objetos de Campos Extras</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>extraFields[].id</td>\n<td>integer</td>\n<td>ID do Campo Extra</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>extraFields[].value</td>\n<td>string</td>\n<td>Valor para o Campo Extra</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>isNetworkingProfileVisible</td>\n<td>boolean</td>\n<td>Exibir perfil do cliente na área de Networking da área do cliente</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isBlockedBookingCustomerArea</td>\n<td>boolean</td>\n<td>Não permite que o cliente cadastre novas reservas pela área do cliente, caso hasLoginAccess seja true</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isAllowedBookingOutsideBusinessHours</td>\n<td>boolean</td>\n<td>Permite reservar fora do horário de funcionamento padrão, caso hasLoginAccess seja true</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>internetPlan</td>\n<td>string</td>\n<td>Nome do plano de internet (Disponível apenas com o módulo Mikrotik ativo)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>businessPresentation</td>\n<td>string</td>\n<td>Breve apresentação sobre o cliente</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>offeredServicesProducts</td>\n<td>string</td>\n<td>Serviços e produtos oferecidos</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>receptionOrientations</td>\n<td>string</td>\n<td>Orientações para atendimento</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingOrientations</td>\n<td>string</td>\n<td>Orientações para correspondência</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingAddress</td>\n<td>object</td>\n<td>Objeto com o endereço para correspondências</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>mailingAddress.zipCode</td>\n<td>string</td>\n<td>CEP</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.state</td>\n<td>string</td>\n<td>Sigla do estado (UF)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.city</td>\n<td>string</td>\n<td>Cidade</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.street</td>\n<td>string</td>\n<td>Logradouro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.number</td>\n<td>string</td>\n<td>Número</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.neighborhood</td>\n<td>string</td>\n<td>Bairro</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.additionalDetails</td>\n<td>string</td>\n<td>Complemento</td>\n<td>-</td>\n</tr>\n<tr>\n<td>mailingAddress.landmark</td>\n<td>string</td>\n<td>Ponto de referência</td>\n<td>-</td>\n</tr>\n<tr>\n<td>extensionNumbers</td>\n<td>string[]</td>\n<td>Array com os ramais</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>defaultDueDay</td>\n<td>integer</td>\n<td>Dia de vencimento padrão do cliente</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response:</h3>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#8ccf00c9-767b-4517-b085-a3e5a784431e\">GET /customer/:id</a></p>\n","urlObject":{"path":["customer",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"661","key":"id"}]}},"response":[{"id":"1f65ac9b-a584-4b42-abbf-e8fdfd7759ac","name":"(200) Success - Conexa Recorrência com todos os campos","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\"],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"clienteteste\",\n    \"password\": \"abc123456#$\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"single\"\n    }, \n   /*\"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },*/\n    /*\"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Full Stack Developer\"\n    },*/\n    \"address\": {\n        \"zipCode\":\"13058-111\",\n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\"\n    },\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"32"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 11:49:11 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1040"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo 1\",\n        \"city\": \"Sao Paulo\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"number\": \"432\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua ABC\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2024-04-22T08:48:36-03:00\",\n    \"customerId\": 32,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \"financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"testfghje@gmail.com\",\n        \"testoiuygfe5@gmail.com\"\n    ],\n    \"fieldOfActivity\": \"Indústria\",\n    \"firstName\": \"Fake\",\n    \"hasLoginAccess\": true,\n    \"isActive\": true,\n    \"isBlocked\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": false,\n    \"login\": \"clienteteste\",\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"naturalPerson\": {\n        \"birthDate\": \"1977-05-01\",\n        \"cpf\": \"51607920905\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"maritalStatus\": \"single\",\n        \"profession\": \"Full Stack Developer\",\n        \"rg\": \"303407797\"\n    },\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"phones\": [\n        \"1122222222\",\n        \"7544445555\"\n    ],\n    \"pronunciation\": null,\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"tradeName\": \"Fake ABC\",\n    \"website\": \"fakeabc.app\"\n}"},{"id":"712a9158-aaa8-4803-ac54-be204b25cfb4","name":"(200) Success - Conexa Recorrência alterando CNPJ","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n   \"legalPerson\": {\n        \"cnpj\": \"76.851.604/0001-03\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"32"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 12:04:40 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1036"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo 1\",\n        \"city\": \"Sao Paulo\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"number\": \"432\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua ABC\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2024-04-22T08:48:36-03:00\",\n    \"customerId\": 32,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \"  financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"testfghje@gmail.com\",\n        \"testoiuygfe5@gmail.com\"\n    ],\n    \"fieldOfActivity\": \"Indústria\",\n    \"firstName\": \"Fake\",\n    \"hasLoginAccess\": true,\n    \"isActive\": true,\n    \"isBlocked\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": true,\n    \"legalPerson\": {\n        \"cnpj\": \"76851604000103\",\n        \"foundationDate\": \"1980-01-02\",\n        \"municipalInscription\": \"145263\",\n        \"stateInscription\": \"4569\"\n    },\n    \"login\": \"clienteteste\",\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"phones\": [\n        \"1122222222\",\n        \"7544445555\"\n    ],\n    \"pronunciation\": null,\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"tradeName\": \"Fake ABC\",\n    \"website\": \"fakeabc.app\"\n}"},{"id":"af2d9407-d833-4a78-8283-a0964d4397d4","name":"(200) Success - Conexa Coworking com todos os campos","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC UP Ltda\",\n    \"tradeName\": \"Fake ABC UP\",\n    \"pronunciation\": \"Feiqui abêcê ãmpi\",\n    \"fieldOfActivity\": \"Varejo\",\n    \"notes\": \"Uma empresa que vende droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"venda.fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"vendafakeup\",\n    \"password\": \"abc123456#$\",\n    \"automaticallyIssueNfse\": \"whenGeneratingBilling\",\n    \"notesNfse\": \"Novo Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"isNetworkingProfileVisible\": false,\n    \"isBlockedBookingCustomerArea\": false,\n    \"isAllowedBookingOutsideBusinessHours\": true,\n    \"internetPlan\": \"Plano 200MB\",\n    \"businessPresentation\": \"Lorem Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Ipsum Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Dolor Orientações de atendimento\",\n    \"mailingOrientations\": \"Enviar apenas para os respresentantes legais da empresa\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1978-06-01\",\n        \"issuingAuthority\": \"Serasa BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"married\"\n    }, \n   /*  \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Full Stack Developer\"\n    }, */\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\",\n        //\"country\": \"United States\"\n    },\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua XYZ 5\",\n        \"number\": \"24\",\n        \"neighborhood\": \"Jardim Anchieta 2\",\n        \"additionalDetails\": \"Bloco A1 3\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\", \"75988136412\"],\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"extensionNumbers\": [\"2030\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"614"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 10:36:15 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"2002"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo 1\",\n        \"city\": \"Sao Paulo\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"number\": \"432\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua ABC\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"automaticallyIssueNfse\": \"whenGeneratingBilling\",\n    \"businessPresentation\": \"Lorem Breve apresentação da empresa\",\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2024-02-21T19:45:21-03:00\",\n    \"customerId\": 614,\n    \"dedicatedPhones\": [\n        {\n            \"id\": 14,\n            \"phone\": \"(75) 93921-4422\"\n        }\n    ],\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \"financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"testfghje@gmail.com\",\n        \"testoiuygfe5@gmail.com\"\n    ],\n    \"extensionNumbers\": [\n        \"2030\"\n    ],\n    \"fieldOfActivity\": \"Varejo\",\n    \"firstName\": \"Fake\",\n    \"hasLoginAccess\": true,\n    \"internetPlan\": \"default\",\n    \"isActive\": true,\n    \"isAllowedBookingOutsideBusinessHours\": true,\n    \"isBlocked\": false,\n    \"isBlockedBookingCustomerArea\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": false,\n    \"isNetworkingProfileVisible\": false,\n    \"login\": \"vendafakeup\",\n    \"mailboxes\": null,\n    \"mailingAddress\": {\n        \"additionalDetails\": \"Bloco A1 3\",\n        \"city\": \"Sao Paulo\",\n        \"landmark\": \"Em frente a Praça da Ciências\",\n        \"neighborhood\": \"Jardim Anchieta 2\",\n        \"number\": \"24\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua XYZ 5\",\n        \"zipCode\": \"13060-008\"\n    },\n    \"mailingOrientations\": \"Enviar apenas para os respresentantes legais da empresa\",\n    \"name\": \"Empresa Fake ABC UP Ltda\",\n    \"naturalPerson\": {\n        \"birthDate\": \"1978-06-01\",\n        \"cpf\": \"51607920905\",\n        \"issuingAuthority\": \"Serasa BA\",\n        \"maritalStatus\": \"married\",\n        \"profession\": \"Full Stack Developer\",\n        \"rg\": \"303407797\"\n    },\n    \"notes\": \"Uma empresa que vende droides de batalha, incluindo os Droidekas\",\n    \"notesNfse\": \"Novo Teste observações na NFSe\",\n    \"offeredServicesProducts\": \"Ipsum Serviços e produtos oferecidos\",\n    \"phones\": [\n        \"1122222222\",\n        \"7544445555\",\n        \"75988136412\"\n    ],\n    \"pronunciation\": \"Feiqui abêcê ãmpi\",\n    \"receptionOrientations\": \"Dolor Orientações de atendimento\",\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"tradeName\": \"Fake ABC UP\",\n    \"website\": \"venda.fakeabc.app\"\n}"},{"id":"33729151-0dda-4921-9ffb-5b1c2f81f949","name":"(200) Success - Conexa Coworking alterando apenas o e-mail de avisos financeiros","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"614"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 11:38:39 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1971"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo 1\",\n        \"city\": \"Sao Paulo\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"number\": \"432\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua ABC\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"automaticallyIssueNfse\": \"whenGeneratingBilling\",\n    \"businessPresentation\": \"Lorem Breve apresentação da empresa\",\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2024-02-21T19:45:21-03:00\",\n    \"customerId\": 614,\n    \"dedicatedPhones\": null,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\"\n    ],\n    \"emailsMessage\": [\n        \"testfghje@gmail.com\",\n        \"testoiuygfe5@gmail.com\"\n    ],\n    \"extensionNumbers\": [\n        \"2030\"\n    ],\n    \"fieldOfActivity\": \"Varejo\",\n    \"firstName\": \"Fake\",\n    \"hasLoginAccess\": true,\n    \"internetPlan\": \"default\",\n    \"isActive\": true,\n    \"isAllowedBookingOutsideBusinessHours\": true,\n    \"isBlocked\": false,\n    \"isBlockedBookingCustomerArea\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": false,\n    \"isNetworkingProfileVisible\": false,\n    \"login\": \"vendafakeup\",\n    \"mailboxes\": null,\n    \"mailingAddress\": {\n        \"additionalDetails\": \"Bloco A1 3\",\n        \"city\": \"Sao Paulo\",\n        \"landmark\": \"Em frente a Praça da Ciências\",\n        \"neighborhood\": \"Jardim Anchieta 2\",\n        \"number\": \"24\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua XYZ 5\",\n        \"zipCode\": \"13060-008\"\n    },\n    \"mailingOrientations\": \"Enviar apenas para os respresentantes legais da empresa\",\n    \"name\": \"Empresa Fake ABC UP Ltda\",\n    \"naturalPerson\": {\n        \"birthDate\": \"1978-06-01\",\n        \"cpf\": \"51607920905\",\n        \"issuingAuthority\": \"Serasa BA\",\n        \"maritalStatus\": \"married\",\n        \"profession\": \"Full Stack Developer\",\n        \"rg\": \"303407797\"\n    },\n    \"notes\": \"Uma empresa que vende droides de batalha, incluindo os Droidekas\",\n    \"notesNfse\": \"Novo Teste observações na NFSe\",\n    \"offeredServicesProducts\": \"Ipsum Serviços e produtos oferecidos\",\n    \"phones\": [\n        \"1122222222\",\n        \"7544445555\",\n        \"75988136412\"\n    ],\n    \"pronunciation\": \"Feiqui abêcê ãmpi\",\n    \"receptionOrientations\": \"Dolor Orientações de atendimento\",\n    \"taxDeductions\": {\n        \"iss\": false\n    },\n    \"tradeName\": \"Fake ABC UP\",\n    \"website\": \"venda.fakeabc.app\"\n}"},{"id":"32174f04-3e92-4c42-b67e-cd195a9bef62","name":"(200) Success - Conexa Coworking - Retém Impostos Federais","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"taxDeductions\": {\n        \"iss\": false,\n        \"ir\": true,\n        \"pis\": true,\n        \"inss\": false,\n        \"csll\": true,\n        \"cofins\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"622"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 12:27:34 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1978"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"additionalDetails\": \"Sala 4, Térreo\",\n        \"city\": \"Campinas\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"number\": \"443\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Alziro Arten\",\n        \"zipCode\": \"13058-111\"\n    },\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"cellNumber\": \"11988997766\",\n    \"companyId\": 3,\n    \"createdAt\": \"2024-10-01T08:52:43-03:00\",\n    \"customerId\": 622,\n    \"dedicatedPhones\": null,\n    \"emailsFinancialMessages\": [\n        \"financeiro@fakeabc.com\",\n        \"  financeiro.fakeabc@gmail.com\"\n    ],\n    \"emailsMessage\": [\n        \"admin@fakeabc.com\",\n        \"crm@fakeabc.com\"\n    ],\n    \"extensionNumbers\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"firstName\": \"Fake\",\n    \"hasIssRetention\": false,\n    \"hasLoginAccess\": false,\n    \"internetPlan\": \"default\",\n    \"isActive\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"isBlocked\": false,\n    \"isBlockedBookingCustomerArea\": false,\n    \"isForeign\": false,\n    \"isJuridicalPerson\": true,\n    \"isNetworkingProfileVisible\": true,\n    \"legalPerson\": {\n        \"cnpj\": \"99557155000190\",\n        \"foundationDate\": \"2020-06-12\",\n        \"municipalInscription\": \"145263\",\n        \"stateInscription\": \"4569\"\n    },\n    \"login\": null,\n    \"mailboxes\": null,\n    \"mailingAddress\": {\n        \"additionalDetails\": \"Bloco A1\",\n        \"city\": \"Campinas\",\n        \"landmark\": \"Em frente a Praça da Ciências\",\n        \"neighborhood\": \"Jardim Anchieta\",\n        \"number\": \"264\",\n        \"state\": {\n            \"id\": 26,\n            \"name\": \"São Paulo\",\n            \"abbreviation\": \"SP\"\n        },\n        \"street\": \"Rua Antônio Menito\",\n        \"zipCode\": \"13060-008\"\n    },\n    \"mailingOrientations\": \"Orientações de correspondência\",\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"phones\": [\n        \"7522225455\",\n        \"7538853344\"\n    ],\n    \"pronunciation\": null,\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"taxDeductions\": {\n        \"cofins\": true,\n        \"csll\": true,\n        \"inss\": false,\n        \"ir\": true,\n        \"iss\": false,\n        \"pis\": true\n    },\n    \"tradeName\": \"Fake ABC\",\n    \"website\": \"fakeabc.app\"\n}"},{"id":"0fcc0813-ac3d-433f-a54c-bd66085793c2","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\"],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"clienteteste\",\n    \"password\": \"abc123456#$\",\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"single\"\n    }, \n   /*\"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },*/\n    /*\"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Full Stack Developer\"\n    },*/\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        //\"country\": \"United States\",\n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\"\n    },\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"],\n    \"isNetworkingProfileVisible\": true,\n    \"isBlockedBookingCustomerArea\": true,\n    \"isAllowedBookingOutsideBusinessHours\": false,\n    \"internetPlan\": \"Plano 20MB\",\n    \"businessPresentation\": \"Breve apresentação da empresa\",\n    \"offeredServicesProducts\": \"Serviços e produtos oferecidos\",\n    \"receptionOrientations\": \"Orientações de atendimento\",\n    \"mailingOrientations\": \"\",\n    \"mailingAddress\": {\n        \"zipCode\":\"13060-008\", \n        \"state\": \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua xyz 5\",\n        \"number\": \"24\",\n        \"neighborhood\": \"Jardim Anchieta 2\",\n        \"additionalDetails\": \"Bloco A1 3\",\n        \"landmark\" : \"Em frente a Praça da Ciências\"\n    },\n    \"extensionNumbers\": [\"7598698525\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"31"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 11:47:24 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1921"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"automaticallyIssueNfse\",\n            \"messages\": [\n                \"Failed to set, \\\"automaticallyIssueNfse\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"notesNfse\",\n            \"messages\": [\n                \"Failed to set, \\\"notesNfse\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"taxDeductions\",\n            \"messages\": [\n                \"Failed to set, \\\"taxDeductions\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"isNetworkingProfileVisible\",\n            \"messages\": [\n                \"Failed to set, \\\"isNetworkingProfileVisible\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"isBlockedBookingCustomerArea\",\n            \"messages\": [\n                \"Failed to set, \\\"isBlockedBookingCustomerArea\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"isAllowedBookingOutsideBusinessHours\",\n            \"messages\": [\n                \"Failed to set, \\\"isAllowedBookingOutsideBusinessHours\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"internetPlan\",\n            \"messages\": [\n                \"Failed to set, \\\"internetPlan\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"businessPresentation\",\n            \"messages\": [\n                \"Failed to set, \\\"businessPresentation\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"offeredServicesProducts\",\n            \"messages\": [\n                \"Failed to set, \\\"offeredServicesProducts\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"receptionOrientations\",\n            \"messages\": [\n                \"Failed to set, \\\"receptionOrientations\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"mailingOrientations\",\n            \"messages\": [\n                \"Failed to set, \\\"mailingOrientations\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"mailingAddress\",\n            \"messages\": [\n                \"Failed to set, \\\"mailingAddress\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"extensionNumbers\",\n            \"messages\": [\n                \"Failed to set, \\\"extensionNumbers\\\" field does not exist or is not available in the company\"\n            ]\n        }\n    ]\n}"},{"id":"dc934b69-a53b-4595-b113-4f5780c916b5","name":"(400) Optional feature unavailable error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\"],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"clienteteste\",\n    \"password\": \"abc123456#$\",\n    \"automaticallyIssueNfse\": \"notIssue\",\n    \"notesNfse\": \"Teste observações na NFSe\",\n    \"taxDeductions\": {\n        \"iss\": true\n    },\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"single\"\n    }, \n   /*\"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },*/\n    /*\"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Full Stack Developer\"\n    },*/\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        //\"country\": \"United States\",\n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\"\n    },\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"32"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 12:09:06 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"451"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"automaticallyIssueNfse\",\n            \"messages\": [\n                \"Failed to set, \\\"automaticallyIssueNfse\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"notesNfse\",\n            \"messages\": [\n                \"Failed to set, \\\"notesNfse\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"taxDeductions\",\n            \"messages\": [\n                \"Failed to set, \\\"taxDeductions\\\" field does not exist or is not available in the company\"\n            ]\n        }\n    ]\n}"},{"id":"e46e3616-9a3e-4316-b0ef-482884daf564","name":"(404) Not found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\"],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"clienteteste\",\n    \"password\": \"abc123456#$\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"single\"\n    }, \n   /*\"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },*/\n    /*\"foreign\": {\n        \"document\": \"7700225VH (Passaporte)\",\n        \"birthDate\": \"1977-05-01\",\n        \"profession\": \"Full Stack Developer\"\n    },*/\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        //\"country\": \"United States\",\n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\"\n    },\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"33"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 12:11:24 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Customer does not exist or you have no permission to access it.\"\n}"},{"id":"71ac1cf0-7f77-45d9-9c60-e3ead31a49f2","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Empresa Fake ABC Ltda\",\n    \"tradeName\": \"Fake ABC\",\n    \"pronunciation\": null,\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"phones\": [\"(11) 2222-2222\", \"(75) 4444-5555\"],\n    \"website\": \"fakeabc.app\",\n    \"hasLoginAccess\": true,\n    \"login\": \"clienteteste\",\n    \"password\": \"abc123456#$\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"birthDate\": \"1977-05-01\",\n        \"issuingAuthority\": \"SSP BA\",\n        \"profession\": \"Full Stack Developer\",\n        \"maritalStatus\": \"single\"\n    }, \n   \"legalPerson\": {\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"foundationDate\": \"1980-01-02\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\",\n        \"state\":  \"SP\",\n        \"city\": \"São Paulo\",\n        \"street\": \"Rua ABC\",\n        \"number\": \"432\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n        \"additionalDetails\": \"Sala 4, Térreo 1\"\n    },\n    \"emailsMessage\" : [\"testfghje@gmail.com\", \"testoiuygfe5@gmail.com\"],\n    \"emailsFinancialMessages\": [\"financeiro@fakeabc.com\", \"financeiro.fakeabc@gmail.com\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"variable":[{"key":"id","value":"32"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 12:10:49 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"212"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CUSTOMER_01\",\n            \"message\": \"The Customer cannot belong to more than one group, they can only be an natural or legal person or foreigner.\"\n        }\n    ]\n}"}],"_postman_id":"fc78b0c5-4b6a-4c11-a708-3b823d951e51"},{"name":"/customer/:id","id":"34c31ba0-583a-4fd7-bc1b-e6b8709c7ceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","description":"<p>Exclusão de um cliente no Conexa, quando não há registros (vendas, cobranças e etc) vinculada ao cliente.</p>\n","urlObject":{"path":["customer",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"type":"any","value":"615","key":"id"}]}},"response":[{"id":"f53bbb0f-245c-4b2b-b00c-60785a5bb571","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"type":"text","disabled":true}],"variable":[{"key":"id","value":"616"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 04 Mar 2024 22:32:22 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"83878b43-fd21-47a3-941b-726401094361","name":"(404) Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"type":"text","disabled":true}],"variable":[{"key":"id","value":"616"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 22:34:14 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Customer does not exist or you have no permission to access it.\"\n}"},{"id":"b4356d7f-6124-443b-abe2-0d3f76569f46","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customer/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customer",":id"],"query":[{"key":"","value":null,"type":"text","disabled":true}],"variable":[{"key":"id","value":"450"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 22:33:09 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"284"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CUSTOMER_04\",\n            \"message\": \"The Customer could not be deleted because there are Sales linked to it.\"\n        },\n        {\n            \"code\": \"CUSTOMER_05\",\n            \"message\": \"The Customer could not be deleted because there are Charges linked to it.\"\n        }\n    ]\n}"}],"_postman_id":"34c31ba0-583a-4fd7-bc1b-e6b8709c7ceb"},{"name":"/customers","id":"8c44d03d-037d-476d-82a9-b78f272b5db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customers?limit=10","description":"<p>Listagem paginada de clientes.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula. Consultar exemplo: <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#8c44d03d-037d-476d-82a9-b78f272b5db5\">(200) Success - Conexa Recorrência</a>.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de clientes contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#8ccf00c9-767b-4517-b085-a3e5a784431e\">GET /customer/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["customers"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs de clientes</p>\n","type":"text/plain"},"key":"id[]","value":"102,103"},{"disabled":true,"description":{"content":"<p>IDs de unidade</p>\n","type":"text/plain"},"key":"companyId[]","value":"5"},{"disabled":true,"description":{"content":"<p>Razão social ou nome do cliente (pode ser uma pesquisa parcial do nome)</p>\n","type":"text/plain"},"key":"name","value":"Theo"},{"disabled":true,"description":{"content":"<p>Nome fantasia (pode ser uma pesquisa parcial da fantasia)</p>\n","type":"text/plain"},"key":"tradeName","value":"Neto"},{"disabled":true,"description":{"content":"<p>CPF (pode ser formatado ou apenas números)</p>\n","type":"text/plain"},"key":"cpf","value":"111.111.111-11"},{"disabled":true,"description":{"content":"<p>CNPJ (pode ser formatado ou apenas números)</p>\n","type":"text/plain"},"key":"cnpj","value":"11.111.111/0001-11"},{"disabled":true,"description":{"content":"<p>Filtra por usuários ativos ou não ( 1 para ativos e 0 para inativos)</p>\n","type":"text/plain"},"key":"isActive","value":"0"},{"disabled":true,"description":{"content":"<p>IDs de tags</p>\n","type":"text/plain"},"key":"tagId[]","value":"3"},{"disabled":true,"description":{"content":"<p>Data de criação: define a data a partir de quando os clientes serão buscados. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtFrom","value":"2024-04-01T12:00:00-03:00"},{"disabled":true,"description":{"content":"<p>Data de criação: define a data até quando os clientes serão buscados. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtTo","value":"2024-05-01T12:00:00-03:00"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca\nRecomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"0ff7393a-0865-4c68-b400-234e41467845","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customers?id[]=102,103&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customers"],"query":[{"key":"id[]","value":"102,103","description":"IDs de clientes"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Mar 2024 22:49:15 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"2169"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"address\": {\n                \"additionalDetails\": \"Sala 4, Térreo -1\",\n                \"city\": \"Sao Paulo\",\n                \"neighborhood\": \"Conjunto Habitacional Parque da Floresta 4\",\n                \"number\": \"432A\",\n                \"state\": {\n                    \"id\": 26,\n                    \"name\": \"São Paulo\",\n                    \"abbreviation\": \"SP\"\n                },\n                \"street\": \"Rua ABCDEF\",\n                \"zipCode\": \"13058-112\"\n            },\n            \"automaticallyIssueNfse\": \"notIssue\",\n            \"cellNumber\": \"75999999999\",\n            \"companyId\": 3,\n            \"createdAt\": \"2023-11-24T18:21:54-03:00\",\n            \"customerId\": 102,\n            \"emailsFinancialMessages\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"emailsMessage\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"extraFields\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"UTM\",\n                    \"value\": \"Instagram\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"External ID\",\n                    \"value\": \"1001\"\n                }\n            ],\n            \"fieldOfActivity\": \"Indústria de Software\",\n            \"firstName\": \"Caleb\",\n            \"hasIssRetention\": true,\n            \"hasLoginAccess\": false,\n            \"isActive\": true,\n            \"isBlocked\": false,\n            \"isForeign\": false,\n            \"isJuridicalPerson\": false,\n            \"login\": null,\n            \"name\": \"Thiago Miguel Calebe Carvalho Sertanejo\",\n            \"naturalPerson\": {\n                \"birthDate\": \"1977-05-01\",\n                \"cpf\": \"111.111.111-11\",\n                \"issuingAuthority\": \"SSP BA\",\n                \"maritalStatus\": \"single\",\n                \"profession\": \"Developer\",\n                \"rg\": \"789456123\"\n            },\n            \"notes\": \"Stack: Node.js, Go, Ruby, Java, PHP e Python\",\n            \"notesNfse\": \"Serviço Intelectual\",\n            \"phones\": [\n                \"11987654321\",\n                \"75999999999\"\n            ],\n            \"pronunciation\": null,\n            \"tradeName\": \"Caleb\",\n            \"website\": \"caleb.app\"\n        },\n        {\n            \"address\": {\n                \"additionalDetails\": null,\n                \"city\": \"Cangucu\",\n                \"neighborhood\": \"Prado Redondo\",\n                \"number\": \"424\",\n                \"state\": {\n                    \"id\": 23,\n                    \"name\": \"Rio Grande do Sul\",\n                    \"abbreviation\": \"RS\"\n                },\n                \"street\": \"Rua Machado Brasil\",\n                \"zipCode\": \"96700-001\"\n            },\n            \"automaticallyIssueNfse\": \"notIssue\",\n            \"cellNumber\": \"75999999999\",\n            \"companyId\": 3,\n            \"createdAt\": \"2023-11-30T14:29:26-03:00\",\n            \"customerId\": 103,\n            \"emailsFinancialMessages\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"emailsMessage\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"extraFields\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"UTM\",\n                    \"value\": \"Instagram\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"External ID\",\n                    \"value\": \"1002\"\n                }\n            ],\n            \"fieldOfActivity\": \"Comércio atacadista de solda\",\n            \"firstName\": \"DISTRIBUIDORA\",\n            \"hasIssRetention\": false,\n            \"hasLoginAccess\": false,\n            \"isActive\": true,\n            \"isBlocked\": false,\n            \"isForeign\": false,\n            \"isJuridicalPerson\": true,\n            \"legalPerson\": {\n                \"cnpj\": \"11.111.111/0001-11\",\n                \"foundationDate\": \"2011-11-10\",\n                \"municipalInscription\": null,\n                \"stateInscription\": null\n            },\n            \"login\": null,\n            \"name\": \"RENBERG XOTE LUNAR LTDA - TEF\",\n            \"notes\": null,\n            \"notesNfse\": null,\n            \"phones\": null,\n            \"pronunciation\": null,\n            \"tradeName\": \"DISTRIBUIDORA AVANTI\",\n            \"website\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"56c6f14e-72b9-4889-ab87-59de2786d53a","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customers?name=Theo&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customers"],"query":[{"key":"name","value":"Theo","description":"Razão social ou nome do cliente (pode ser uma pesquisa parcial do nome)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Mar 2024 22:34:55 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"2784"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"address\": {\n                \"additionalDetails\": null,\n                \"city\": null,\n                \"neighborhood\": null,\n                \"number\": null,\n                \"state\": null,\n                \"street\": null,\n                \"zipCode\": null\n            },\n            \"automaticallyIssueNfse\": \"notIssue\",\n            \"businessPresentation\": null,\n            \"cellNumber\": \"75999999999\",\n            \"companyId\": 3,\n            \"createdAt\": \"2020-04-01T17:23:23-03:00\",\n            \"customerId\": 357,\n            \"dedicatedPhones\": [\n                {\n                    \"id\": 9,\n                    \"phone\": \"(75) 92011-8042\"\n                }\n            ],\n            \"emailsFinancialMessages\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"emailsMessage\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"extraFields\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"UTM\",\n                    \"value\": \"Instagram\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"External ID\",\n                    \"value\": \"1001\"\n                }\n            ],\n            \"extensionNumbers\": null,\n            \"fieldOfActivity\": null,\n            \"firstName\": \"Theo\",\n            \"hasIssRetention\": false,\n            \"hasLoginAccess\": false,\n            \"internetPlan\": \"default\",\n            \"isActive\": true,\n            \"isAllowedBookingOutsideBusinessHours\": false,\n            \"isBlocked\": false,\n            \"isBlockedBookingCustomerArea\": false,\n            \"isForeign\": false,\n            \"isJuridicalPerson\": false,\n            \"isNetworkingProfileVisible\": true,\n            \"login\": null,\n            \"mailboxes\": null,\n            \"mailingAddress\": {\n                \"additionalDetails\": null,\n                \"city\": null,\n                \"landmark\": null,\n                \"neighborhood\": null,\n                \"number\": null,\n                \"state\": null,\n                \"street\": null,\n                \"zipCode\": null\n            },\n            \"mailingOrientations\": null,\n            \"name\": \"Theo Henrique Cochilar\",\n            \"naturalPerson\": {\n                \"birthDate\": null,\n                \"cpf\": \"111.111.111-11\",\n                \"issuingAuthority\": null,\n                \"maritalStatus\": \"not informed\",\n                \"profession\": \"Developer\",\n                \"rg\": null\n            },\n            \"notes\": null,\n            \"notesNfse\": null,\n            \"offeredServicesProducts\": null,\n            \"phones\": null,\n            \"pronunciation\": null,\n            \"receptionOrientations\": null,\n            \"tradeName\": null,\n            \"website\": null\n        },\n        {\n            \"address\": {\n                \"additionalDetails\": \"Sala 901\",\n                \"city\": \"Salvador\",\n                \"neighborhood\": \"Pituaçu\",\n                \"number\": \"726\",\n                \"state\": {\n                    \"id\": 5,\n                    \"name\": \"Bahia\",\n                    \"abbreviation\": \"BA\"\n                },\n                \"street\": \"Rua Belo Horizonte\",\n                \"zipCode\": \"41741-040\"\n            },\n            \"automaticallyIssueNfse\": \"notIssue\",\n            \"businessPresentation\": null,\n            \"cellNumber\": \"75999999999\",\n            \"companyId\": 3,\n            \"createdAt\": \"2021-03-23T17:17:10-03:00\",\n            \"customerId\": 450,\n            \"dedicatedPhones\": null,\n            \"emailsFinancialMessages\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"emailsMessage\": [\n                \"lorem.ipsum@mauris.com\"\n            ],\n            \"extraFields\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"UTM\",\n                    \"value\": \"Instagram\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"External ID\",\n                    \"value\": \"1002\"\n                }\n            ],\n            \"extensionNumbers\": null,\n            \"fieldOfActivity\": \"Tecnologia\",\n            \"firstName\": \"Theo\",\n            \"hasIssRetention\": false,\n            \"hasLoginAccess\": true,\n            \"internetPlan\": \"default\",\n            \"isActive\": true,\n            \"isAllowedBookingOutsideBusinessHours\": true,\n            \"isBlocked\": false,\n            \"isBlockedBookingCustomerArea\": false,\n            \"isForeign\": false,\n            \"isJuridicalPerson\": true,\n            \"isNetworkingProfileVisible\": true,\n            \"legalPerson\": {\n                \"cnpj\": \"11.111.111/0001-11\",\n                \"foundationDate\": \"2016-04-08\",\n                \"municipalInscription\": null,\n                \"stateInscription\": \"570161-19\"\n            },\n            \"login\": \"theo\",\n            \"mailboxes\": null,\n            \"mailingAddress\": {\n                \"additionalDetails\": null,\n                \"city\": null,\n                \"landmark\": null,\n                \"neighborhood\": null,\n                \"number\": null,\n                \"state\": null,\n                \"street\": null,\n                \"zipCode\": null\n            },\n            \"mailingOrientations\": null,\n            \"name\": \"Senhor dos Pastéis ME\",\n            \"notes\": null,\n            \"notesNfse\": null,\n            \"offeredServicesProducts\": null,\n            \"phones\": [\n                \"11987654321\"\n            ],\n            \"pronunciation\": null,\n            \"receptionOrientations\": null,\n            \"tradeName\": \"Senhor dos Pastéis ME\",\n            \"website\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"d1fd6c71-59f5-4642-9aab-8e8d913d893a","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/customers?companyId[]=5","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["customers"],"query":[{"key":"companyId[]","value":"5","description":"IDs de unidade"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Mar 2024 22:43:25 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"239"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"hiagoww doesn't have permissions to access this company: 5. The access to this company is required to perform this action. Verify the access and try again\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"8c44d03d-037d-476d-82a9-b78f272b5db5"}],"id":"a40a3d1f-956d-466f-82b5-ec24ec27fa9e","description":"<p>Endpoints que correspondem a Cliente no sistema Conexa.</p>\n<h2 id=\"códigos-de-erro-422---unable-to-process\">Códigos de Erro (422 - Unable to process)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CUSTOMER_01</td>\n<td>O cliente não pode pertencer a mais de um grupo, ele só pode ser pessoa física, juridica ou estrangeira.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a40a3d1f-956d-466f-82b5-ec24ec27fa9e","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Person","item":[{"name":"/person","id":"2d99f557-b807-4001-890f-273e5078e5cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 31,\n    \"name\": \"John Doe Sete\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"married\",\n    \"isForeign\": false,\n    /*\"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },*/\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"cpf\": \"245.679.031-61\",\n    \"rg\": \"33.892.656-2\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"birthDate\": \"1994-05-01\",\n    \"cellNumber\": \"(95) 98126-1744\",\n    \"phones\": [\n        \"(61) 3746-3590\",\n        \"(61) 3746-3590\"\n    ],\n    \"emails\": [\n        \"teste@gmail.com\",\n        \"teste2@gmail.com\"\n    ],\n    \"sex\": \"M\",\n    \"jobTitle\": \"\",\n    \"profession\": \"\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"address\": {\n        \"zipCode\": \"44380000\",\n        \"state\": \"BA\",\n        \"city\": \"Cruz das Almas\",\n        \"street\": \"Rua Silvestre Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"hasLoginAccess\": true,\n    \"login\": \"johndoesete\",\n    \"password\": \"!5CqTBdeM[&x91zb2\",\n    \"permissions\": [\n        \"finance\",\n        \"orders\",\n        \"rooms\",\n        \"sharedSpaces\",\n        \"assistance\",\n        \"correspondences\",\n        \"printing\"\n    ],\n    \"accessId\": \"\",\n    \"canReceiveMail\": true,\n    \"color\": \"\",\n    \"printFeeId\": \"\",\n    \"extensionNumbers\": [],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"devices\": [\n        {\n            \"nickname\": \"primeiro dispositivo\",\n            \"macAddress\": \"E2-4A-01-94-EA-9C\"\n        },\n        {\n            \"nickname\": \"segundo dispositivo\",\n            \"macAddress\": \"FB-80-D0-DA-AE-42\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person","description":"<p>Criação de uma pessoa, associada a um cliente, no sistema Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não são necessários! </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente ao qual a pessoa será associada</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da pessoa</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nationality</td>\n<td>string</td>\n<td>Define a nacionalidade da pessoa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>placeOfBirth</td>\n<td>string</td>\n<td>Define a naturalidade da pessoa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>string</td>\n<td>Define o estado civil da pessoa. Seu valor deve estar entre os seguintes: '<strong>married', 'single', 'divorced', 'widowed', 'not informed'</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isForeign</td>\n<td>boolean</td>\n<td>Define se a pessoa é estrangeira</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreignData</td>\n<td>object</td>\n<td>Objeto contendo os dados estrangeiros da pessoa, serão considerados se <strong>isForeign</strong> for <strong>true</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreignData.zipCode</td>\n<td>string</td>\n<td>Código postal estrangeiro da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.contry</td>\n<td>string</td>\n<td>País da pessoa estrangeira</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.city</td>\n<td>string</td>\n<td>Cidade da pessoa estrangeira</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.state</td>\n<td>string</td>\n<td>Estado ou Unidade Administrativa da pessoa estrangeira</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.street</td>\n<td>string</td>\n<td>Rua da pessoa estrangeira</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.number</td>\n<td>string</td>\n<td>Número da residência estrangeira da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.neighborhood</td>\n<td>string</td>\n<td>Bairro da pessoa estrangeira</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.additionalDetails</td>\n<td>string</td>\n<td>Complementos para o endereço estrangeiro da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.document</td>\n<td>string</td>\n<td>Número de documento estrangeiro de identificação da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>isCompanyPartner</td>\n<td>boolean</td>\n<td>Sinaliza se a pessoa pode assinar documentos em nome do cliente a qual é associada</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isGuarantor</td>\n<td>boolean</td>\n<td>Sinaliza se a pessoa é fiadora do cliente a qual está associada</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cpf</td>\n<td>string</td>\n<td>Número de CPF da pessoa, será considerado se <strong>isForeign</strong> for <strong>false</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>rg</td>\n<td>string</td>\n<td>Número de RG da pessoa, será considerado se <strong>isForeign</strong> for <strong>false</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>issuinAutohrity</td>\n<td>string</td>\n<td>Órgão expedidor do documento de RG da pessoa, será considerado se <strong>isForeign</strong> for <strong>false</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>string</td>\n<td>Data de nascimento da pessoa. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string</td>\n<td>Número de celular da pessoa, deve possuir 10 ou 11 dígitos</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>string[]</td>\n<td>Array contendo os números de telefone da pessoa. Deve possuir 11 dígitos e números estrangeiros deve inicia com o símbolo +.</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emails</td>\n<td>string[]</td>\n<td>Array contendo os emails da pessoa.</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sex</td>\n<td>string</td>\n<td>Indica o sexo da pessoa, deve ser uma das seguintes iniciais: <strong>'M'</strong> =&gt; <strong>'Masculine'</strong>, <strong>'F'</strong> =&gt; <strong>'Feminine'</strong>, <strong>'U'</strong> =&gt; <strong>'Not informed'</strong>, um valor diferente dos informados será identificado como <strong>Not</strong> <strong>informed</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>string</td>\n<td>Nome do cargo da pessoa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>profession</td>\n<td>string</td>\n<td>Profissão da pessoa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>resume</td>\n<td>string</td>\n<td>Breve currículo da pessoa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações da pessoa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto contendo os dados de endereço da pessoa. Válido para pessoas não estrangeiras</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>CEP da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>string</td>\n<td>Sigla do estado em que a pessoa reside</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Nome da cidade em que a pessoa reside</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Nome da rua em que a pessoa reside</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>integer</td>\n<td>Número da residênica da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro em que a pessoa reside</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento do endereço da pessoa</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hasLoginAccess</td>\n<td>boolean</td>\n<td>Indica se a pessoa terá acesso à <strong>Área do Clliente</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string</td>\n<td>Define o login da pessoa caso esta tenha acesso à <strong>Área do Cliente.</strong> O login deve conter: Somente <strong>letras</strong>, <strong>números</strong>, <strong>@ . - +</strong> ou <strong>_</strong></td>\n<td>Sim, se <strong>hasLoginAccess</strong> for <strong>true</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>Define a senha da pessoa caso esta tenha acesso. Deve conter pelo menos 6 caracteres, compostos por letras e números</td>\n<td>Sim, se <strong>hasLoginAccess</strong> for <strong>true</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td>string[]</td>\n<td>Array contendo as permissões que a pessoa terá no sistema. Os valores válidos são: <strong>'finance'</strong>, <strong>'orders'</strong>, <strong>'rooms'</strong>, <strong>'sharedSpaces'</strong>, <strong>'assistance'</strong>, <strong>'correspondences'</strong> e <strong>'printing'</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>accessId</td>\n<td>string</td>\n<td>Identificador da pessoa (id, nº do cartão e etc) no dispositivo de controle de acesso (catracas, biometria, etc)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>canReceiveMail</td>\n<td>boolean</td>\n<td>Sinaliza se a pessoa pode receber correspondências para o cliente ao qual é associada</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>color</td>\n<td>string</td>\n<td>Código de cor hexadecimal que será associado ao perfil da pessoa</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>printFeeId</td>\n<td>string</td>\n<td>Valor utilizado unicamente para identificar o cliente durante a importação do arquivo com as tarifações de impressão. Só pode ser cadastrado por usuários do tipo <strong>admin</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>extensionNumbers</td>\n<td>string[]</td>\n<td>Array contendo os números de ramal ou extensões da pessoa</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlLinkedin</td>\n<td>string</td>\n<td>Endereço perfil da pessoa no <strong>LinkedIn</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlInstagram</td>\n<td>string</td>\n<td>Endereço do perfil da pessoa no <strong>Instagram</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlFacebook</td>\n<td>string</td>\n<td>Endereço do perfil da pessoa no <strong>Facebook</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlTwitter</td>\n<td>string</td>\n<td>Endereço do perfil da pessoa no <strong>Twitter</strong></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>devices</td>\n<td>array of objects</td>\n<td>Array contendo os objetos que representam os dispositivos da pessoa que serão cadastrados</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>devices[].nickname</td>\n<td>string</td>\n<td>Apelido do dispositivo</td>\n<td>Sim. Cada dispositivo deve possuir um apelido para ser cadastrado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>devices[].macAddress</td>\n<td>string</td>\n<td>Endereço de mac do dispositivo</td>\n<td>Sim. Cada dispositivo precisa fornecer seu endereço de mac para ser cadastrado</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da pessoa criada</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["person"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"8f97c9f8-9c29-4fa9-99e2-2a05572e0fd6","name":"(201) Success - Conexa Recorrência","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 101,\n    \"name\": \"John Doe Sete\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"married\",\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"cpf\": \"245.679.031-61\",\n    \"rg\": \"33.892.656-2\",\n    \"birthDate\": \"1994-05-01\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"sex\": \"M\",\n    \"cellNumber\": \"(95) 98126-1744\",\n    \"jobTitle\": \"\",\n    \"profession\": \"\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"accessId\": \"\",\n    \"isForeign\": false,\n    /*\"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },*/\n    \"emails\": [\n        \"teste@gmail.com\",\n        \"teste2@gmail.com\"\n    ],\n    \"address\": {\n        \"zipCode\": \"44380000\",\n        \"state\": \"BA\",\n        \"city\": \"Cruz das Almas\",\n        \"street\": \"Rua Silvestre Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"phones\": [\n        \"(61) 3746-3590\",\n        \"(61) 3746-3590\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Mar 2024 00:00:02 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2\n}"},{"id":"0f3dc74c-0469-4fbd-b1ee-32208503e15a","name":"(201) Success - Conexa Coworking","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"name\": \"John Doe Sete\",\n    \"hasLoginAccess\": true,\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"married\",\n    \"login\": \"johndoesa\",\n    \"password\": \"!5CqTBdeM[&x91zb\",\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"canReceiveMail\": true,\n    \"cpf\": \"245.679.031-61\",\n    \"rg\": \"33.892.656-2\",\n    \"birthDate\": \"1994-05-01\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"sex\": \"M\",\n    \"color\": \"\",\n    \"printFeeId\": \"\",\n    \"cellNumber\": \"(95) 98126-1744\",\n    \"extensionNumbers\": [\n    ],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"permissions\": [\n        \"finance\",\n        \"rooms\",\n        \"sharedSpaces\",\n        \"assistance\",\n        \"correspondences\",\n        \"orders\",\n        \"printing\"\n    ],\n    \"jobTitle\": \"\",\n    \"profession\": \"\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"accessId\": \"\",\n    \"isForeign\": false,\n    /*\"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },*/\n    \"emails\": [\n        \"teste@gmail.com\",\n        \"teste2@gmail.com\"\n    ],\n    \"address\": {\n        \"zipCode\": \"44380000\",\n        \"state\": \"BA\",\n        \"city\": \"Cruz das Almas\",\n        \"street\": \"Rua Silvestre Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"phones\": [\n        \"(61) 3746-3590\",\n        \"(61) 3746-3590\"\n    ],\n    \"devices\": [\n        {\n            \"nickname\": \"primeiro dispositivo\",\n            \"macAddress\": \"E2-4A-01-94-EA-9C\"\n        },\n        {\n            \"nickname\": \"segundo dispositivo\",\n            \"macAddress\": \"FB-80-D0-DA-AE-42\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jan 2024 01:46:40 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 502\n}"},{"id":"7c5b3ae3-b02c-4ed9-9a4f-02d12fd37726","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"name\": \"John Doe Sete\",\n    \"hasLoginAccess\": true,\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"married\",\n    \"login\": \"johndoesa\",\n    \"password\": \"5CqTBdeM\",\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"canReceiveMail\": true,\n    \"cpf\": \"245.679.031-61\",\n    \"rg\": \"33.892.656-2\",\n    \"birthDate\": \"1994-05-01\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"sex\": \"M\",\n    \"color\": \"\",\n    \"printFeeId\": \"\",\n    \"cellNumber\": \"(95) 98126-1744\",\n    \"extensionNumbers\": [\n    ],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"permissions\": [\n        \"finance\",\n        \"rooms\",\n        \"sharedSpaces\",\n        \"assistance\",\n        \"correspondences\",\n        \"orders\",\n        \"printing\"\n    ],\n    \"jobTitle\": \"\",\n    \"profession\": \"\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"accessId\": \"\",\n    \"isForeign\": false,\n    /*\"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },*/\n    \"emails\": [\n        \"teste@gmail.com\",\n        \"teste2@gmail.com\"\n    ],\n    \"address\": {\n        \"zipCode\": \"44380000\",\n        \"state\": \"BA\",\n        \"city\": \"Cruz das Almas\",\n        \"street\": \"Rua Silvestre Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"phones\": [\n        \"(61) 3746-3590\",\n        \"(61) 3746-3590\"\n    ],\n    \"devices\": [\n        {\n            \"nickname\": \"primeiro dispositivo\",\n            \"macAddress\": \"E2-4A-01-94-EA-9C\"\n        },\n        {\n            \"nickname\": \"segundo dispositivo\",\n            \"macAddress\": \"FB-80-D0-DA-AE-42\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jan 2024 01:47:18 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"248"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"login\",\n            \"messages\": [\n                \"The login entered is already in use . Please change\"\n            ]\n        },\n        {\n            \"field\": \"password\",\n            \"messages\": [\n                \"The password must have at least 8 characters, with letters, symbols and numbers\"\n            ]\n        }\n    ]\n}"},{"id":"79283345-6891-4251-8d4c-9d025e459100","name":"(404) Not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 31154,\n    \"name\": \"John Doe Sete\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"married\",\n    \"hasLoginAccess\": true,\n    \"login\": \"johndoesete\",\n    \"password\": \"!5CqTBdeM[&x91zb2\",\n    \"permissions\": [\n        \"finance\",\n        \"orders\",\n        \"rooms\",\n        \"sharedSpaces\",\n        \"assistance\",\n        \"correspondences\",\n        \"printing\"\n    ],\n    \"isForeign\": false,\n    /*\"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },*/\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"cpf\": \"245.679.031-61\",\n    \"rg\": \"33.892.656-2\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"birthDate\": \"1994-05-01\",\n    \"cellNumber\": \"(95) 98126-1744\",\n    \"phones\": [\n        \"(61) 3746-3590\",\n        \"(61) 3746-3590\"\n    ],\n    \"emails\": [\n        \"teste@gmail.com\",\n        \"teste2@gmail.com\"\n    ],\n    \"sex\": \"M\",\n    \"jobTitle\": \"\",\n    \"profession\": \"\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"address\": {\n        \"zipCode\": \"44380000\",\n        \"state\": \"BA\",\n        \"city\": \"Cruz das Almas\",\n        \"street\": \"Rua Silvestre Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"accessId\": \"\",\n    \"canReceiveMail\": true,\n    \"color\": \"\",\n    \"printFeeId\": \"\",\n    \"extensionNumbers\": [],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"devices\": [\n        {\n            \"nickname\": \"primeiro dispositivo\",\n            \"macAddress\": \"E2-4A-01-94-EA-9C\"\n        },\n        {\n            \"nickname\": \"segundo dispositivo\",\n            \"macAddress\": \"FB-80-D0-DA-AE-42\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 19:03:46 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Customer does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"2d99f557-b807-4001-890f-273e5078e5cf"},{"name":"/person/:id","id":"73281413-c592-4a38-8b3a-90d11adebe6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","description":"<p>Recuperação dos dados de uma pessoa.</p>\n<blockquote>\n<p>⚠ Alguns campos podem não estar presentes a depender de módulos opcionais ou tipo de sistema contratado. </p>\n</blockquote>\n<h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personId</td>\n<td>integer</td>\n<td>ID da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto contendo os dados de endereço da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>Código postal da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Cidade da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>object</td>\n<td>Objeto contendo os dados da UF da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state.id</td>\n<td>integer</td>\n<td>Id do estado da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state.name</td>\n<td>string</td>\n<td>Nome do estado da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state.abbreviation</td>\n<td>string</td>\n<td>Sigla do estado da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Rua da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string</td>\n<td>Número residencial da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento adicionado ao endereço da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>isForeign</td>\n<td>boolean</td>\n<td>Indica se a pessoal é estrangeira ou não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>rg</td>\n<td>string</td>\n<td>Número de RG da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>issuingAutority</td>\n<td>string</td>\n<td>Órgão responsável pela emissão do RG (Ex.: SSP)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cpf</td>\n<td>string</td>\n<td>Número de CPF da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>string</td>\n<td>Data de nascimento da pessoa no formato: <strong>yyyy-mm-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>string</td>\n<td>Estado civil da pessoa. O estado civil pode ser representado por: <strong>\"single\"</strong>, <strong>\"married\"</strong>, <strong>\"divorced\"</strong>, <strong>\"widowed\"</strong> e <strong>\"not informed\"</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sex</td>\n<td>string</td>\n<td>Sexo da pessoa. O sexo pode ser representado por: I =&gt; <strong>Não Informado</strong>, M =&gt; <strong>Masculino</strong> e F =&gt; <strong>Feminino</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nationality</td>\n<td>string</td>\n<td>Nacionalidade da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>placeOfBirth</td>\n<td>string</td>\n<td>Naturalidade da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações relacionadas à pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isCompanyPertner</td>\n<td>boolean</td>\n<td>Indica se a pessoa assina ou não pela empresa que está associada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isGuarantor</td>\n<td>boolean</td>\n<td>Indica se a pessoa é fiadora da empresa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>profession</td>\n<td>string</td>\n<td>Profissão da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string</td>\n<td>Número de celular da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>Array</td>\n<td>Contém os números de telefone da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emails</td>\n<td>Array</td>\n<td>Contém os endereços de email da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>string</td>\n<td>Cargo da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>photo</td>\n<td>string</td>\n<td>URL para a foto da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>resume</td>\n<td>string</td>\n<td>Breve descrição curricular da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isIndividualCustomer</td>\n<td>boolean</td>\n<td>Indica se o cliente é pessoa física</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>hasLoginAccess</td>\n<td>boolean</td>\n<td>Indica se a pessoa tem acesso à área do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Indica se a pessoa está ativa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente ao qual a pessoa está associada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade a qual a pessoa está associada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>canReceiveMail</td>\n<td>boolean</td>\n<td>Indica se a pessoa pode receber correspondências em nome da empresa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlLinkedin</td>\n<td>string</td>\n<td>URL para o perfil do LinkedIn da pessoa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlInstagram</td>\n<td>string</td>\n<td>URL para o perfil do Instagram da pessoa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlFacebook</td>\n<td>string</td>\n<td>URL para o perfil do Facebook da pessoa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlTwitter</td>\n<td>string</td>\n<td>URL para o perfil do Twitter da pessoa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>printFeeId</td>\n<td>string</td>\n<td>Valor utilizado para identificar o cliente durante a importação de arquivos de tarifação de impressão (depende te configuração do sistema)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>accessId</td>\n<td>string</td>\n<td>Valor utilizado para verificar o acesso da pessoa em dispositivos de controle de acesso (depende te configuração do sistema)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>useFacialRecognitionPhoto</td>\n<td>boolean</td>\n<td>Se a foto da pessoa deve ser utilizada em dispositivos de reconhecimento facial (depende te configuração do sistema)</td>\n<td>Conexa Coworking</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["person",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"508","key":"id"}]}},"response":[{"id":"e7338c9d-b710-49c6-afb4-2ca5b4ddf1b7","name":"(201) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Apr 2024 18:41:48 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"personId\": 1,\n    \"address\": {\n        \"zipCode\": \"44380000\",\n        \"city\": \"Cruz das Almas\",\n        \"state\": {\n            \"id\": 5,\n            \"name\": \"Bahia\",\n            \"abbreviation\": \"BA\"\n        },\n        \"street\": \"Rua Silvestre Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"isForeign\": false,\n    \"name\": \"John Doe Sete\",\n    \"rg\": \"338926562\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"cpf\": \"24567903161\",\n    \"birthDate\": \"1994-05-01\",\n    \"maritalStatus\": \"married\",\n    \"sex\": \"M\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"notes\": null,\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"profession\": null,\n    \"cellNumber\": \"95981261744\",\n    \"phones\": [\n        \"6137463590\"\n    ],\n    \"emails\": [\n        \"teste@gmail.com\",\n        \"teste2@gmail.com\"\n    ],\n    \"jobTitle\": \"\",\n    \"photo\": null,\n    \"resume\": null,\n    \"isIndividualCustomer\": false,\n    \"hasLoginAccess\": false,\n    \"isActive\": true,\n    \"customerId\": 31,\n    \"companyId\": 3\n}"},{"id":"78c3aed5-1eb4-4a80-8a85-7832907d8d34","name":"(201) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"458"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Apr 2024 18:13:56 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"2802"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"personId\": 458,\n    \"address\": {\n        \"zipCode\": \"45655-242\",\n        \"city\": \"Ilheus\",\n        \"state\": {\n            \"id\": 5,\n            \"name\": \"Bahia\",\n            \"abbreviation\": \"BA\"\n        },\n        \"street\": \"Rua F\",\n        \"number\": \"147\",\n        \"neighborhood\": \"São Miguel\",\n        \"additionalDetails\": null\n    },\n    \"isForeign\": false,\n    \"name\": \"Benício Tomás Miguel Castro\",\n    \"rg\": \"789456123\",\n    \"issuingAuthority\": \"SSP BA\",\n    \"cpf\": \"76553651051\",\n    \"birthDate\": \"1993-02-09\",\n    \"maritalStatus\": \"single\",\n    \"sex\": \"M\",\n    \"nationality\": \"Brasileiro(a)\",\n    \"placeOfBirth\": \"Ilhéus\",\n    \"notes\": \"Trabalha com Node.js, Vue.js e MongoDB\",\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": false,\n    \"profession\": \"Analista de Sistemas\",\n    \"cellNumber\": \"75999999999\",\n    \"phones\": null,\n    \"emails\": [\n        \"lorem@ipsun.dolor\"\n    ],\n    \"jobTitle\": \"Dev Full Stack\",\n    \"canReceiveMail\": true,\n    \"photo\": null,\n    \"urlLinkedin\": \"\",\n    \"urlInstagram\": \"\",\n    \"urlFacebook\": \"\",\n    \"urlTwitter\": \"\",\n    \"resume\": \"Sou um desenvolvedor full stack apaixonado por tecnologia, com experiência sólida em Node.js, Vue.js e MongoDB. Ao longo da minha carreira, venho trabalhando na criação e manutenção de aplicações web robustas e escaláveis, tanto no lado do servidor quanto no lado do cliente.\\r\\n\\r\\nNo backend, sou especializado em Node.js, utilizando-o para desenvolver APIs RESTful eficientes e sistemas escaláveis. Tenho ampla experiência na integração de diferentes sistemas e serviços de terceiros, garantindo a interoperabilidade e o bom funcionamento das aplicações.\\r\\n\\r\\nNo frontend, sou um entusiasta do Vue.js, criando interfaces de usuário modernas e responsivas que oferecem uma experiência excepcional aos usuários. Minha paixão pela interface do usuário se reflete na minha capacidade de traduzir requisitos de design em interfaces interativas e visualmente atraentes.\\r\\n\\r\\nAlém disso, possuo um sólido conhecimento em MongoDB, utilizando-o para modelar dados de forma eficiente e realizar operações complexas no banco de dados. Minha experiência em trabalhar com bancos de dados NoSQL me permite lidar com grandes volumes de dados de forma eficaz, garantindo o desempenho e a escalabilidade das aplicações.\\r\\n\\r\\nEstou sempre em busca de novos desafios e oportunidades para aprimorar minhas habilidades técnicas. Sou um colaborador proativo e comprometido, capaz de trabalhar em equipe para alcançar os objetivos do projeto. Se você está procurando um desenvolvedor full stack versátil e experiente para impulsionar o seu projeto, estou pronto para contribuir com o meu conhecimento e experiência. Vamos construir algo incrível juntos!\",\n    \"isIndividualCustomer\": false,\n    \"hasLoginAccess\": true,\n    \"isActive\": true,\n    \"printFeeIdentifier\": null,\n    \"accessIdentifier\": \"\",\n    \"useFacialRecognitionPhoto\": false,\n    \"customerId\": 450,\n    \"companyId\": 3\n}"},{"id":"2b1e8fc9-fa38-4d53-bd99-32ed9b4ccd10","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"458"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 23:51:19 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"198e85ae-153f-4c2e-bbd0-73b4f00429c1","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Apr 2024 18:50:18 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Person does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"73281413-c592-4a38-8b3a-90d11adebe6f"},{"name":"/person/:id","id":"d5db5a90-42c9-410b-8683-d7616cc5bf15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Kevin Enrico Doe Sete\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"single\",\n    \"isForeign\": false,\n    /*\"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },*/\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"cpf\": \"519.058.165-96\",\n    \"rg\": \"42.453.520-8\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"birthDate\": \"1967-03-17\",\n    \"cellNumber\": \"(95) 98111-1111\",\n    \"phones\": [\n        \"(69) 3772-4710\"\n    ],\n    \"emails\": [\n        \"kevin@gmail.google.com\"\n    ],\n    \"sex\": \"M\",\n    \"jobTitle\": \"Funcionário\",\n    \"profession\": \"Vendedor\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"address\": {\n        \"zipCode\": \"76873186\",\n        \"state\": \"RO\",\n        \"city\": \"Ariquemes\",\n        \"street\": \"Rua Jandaias Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Setor 02\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"hasLoginAccess\": true,\n    \"login\": \"kevindoesete\",\n    \"password\": \"!5CqTBdeM[&x91zb2\",\n    \"permissions\": [\n        \"finance\",\n        \"orders\",\n        \"rooms\",\n        \"sharedSpaces\",\n        \"assistance\",\n        \"correspondences\",\n        \"printing\"\n    ],\n    \"accessId\": \"\",\n    \"canReceiveMail\": true,\n    \"color\": \"\",\n    \"printFeeId\": \"\",\n    \"extensionNumbers\": [],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"useFacialRecognitionPhoto\": false,\n    \"devices\": [\n        {\n            \"nickname\": \"iPhone Pro Max\",\n            \"macAddress\": \"E2-4A-01-94-EA-9C\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","description":"<p>Edição de uma ou n informações de uma pessoa no sistema Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não são necessários! </p>\n</blockquote>\n<h3 id=\"body\">Body:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nationality</td>\n<td>string</td>\n<td>Define a nacionalidade da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>placeOfBirth</td>\n<td>string</td>\n<td>Define a naturalidade da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>string</td>\n<td>Define o estado civil da pessoa. Seu valor deve estar entre os seguintes: '<strong>married', 'single', 'divorced', 'widowed', 'not informed'</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isForeign</td>\n<td>boolean</td>\n<td>Define se a pessoa é estrangeira</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreignData</td>\n<td>object</td>\n<td>Objeto contendo os dados estrangeiros da pessoa, serão considerados se <strong>isForeign</strong> for <strong>true</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>foreignData.zipCode</td>\n<td>string</td>\n<td>Código postal estrangeiro da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.contry</td>\n<td>string</td>\n<td>País da pessoa estrangeira</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.city</td>\n<td>string</td>\n<td>Cidade da pessoa estrangeira</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.state</td>\n<td>string</td>\n<td>Estado ou Unidade Administrativa da pessoa estrangeira</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.street</td>\n<td>string</td>\n<td>Rua da pessoa estrangeira</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.number</td>\n<td>string</td>\n<td>Número da residência estrangeira da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.neighborhood</td>\n<td>string</td>\n<td>Bairro da pessoa estrangeira</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.additionalDetails</td>\n<td>string</td>\n<td>Complementos para o endereço estrangeiro da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>foreignData.document</td>\n<td>string</td>\n<td>Número de documento estrangeiro de identificação da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>isCompanyPartner</td>\n<td>boolean</td>\n<td>Sinaliza se a pessoa pode assinar documentos em nome do cliente a qual é associada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isGuarantor</td>\n<td>boolean</td>\n<td>Sinaliza se a pessoa é fiadora do cliente a qual está associada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cpf</td>\n<td>string</td>\n<td>Número de CPF da pessoa, será considerado se <strong>isForeign</strong> for <strong>false</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>rg</td>\n<td>string</td>\n<td>Número de RG da pessoa, será considerado se <strong>isForeign</strong> for <strong>false</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>issuinAutohrity</td>\n<td>string</td>\n<td>Órgão expedidor do documento de RG da pessoa, será considerado se <strong>isForeign</strong> for <strong>false</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>string</td>\n<td>Data de nascimento da pessoa. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string</td>\n<td>Número de celular da pessoa, deve possuir 10 ou 11 dígitos</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>string[]</td>\n<td>Array contendo os números de telefone da pessoa. Deve possuir 11 dígitos e números estrangeiros deve inicia com o símbolo +.</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>emails</td>\n<td>string[]</td>\n<td>Array contendo os emails da pessoa.</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sex</td>\n<td>string</td>\n<td>Indica o sexo da pessoa, deve ser uma das seguintes iniciais: <strong>'M'</strong> =&gt; <strong>'Masculine'</strong>, <strong>'F'</strong> =&gt; <strong>'Feminine'</strong>, <strong>'U'</strong> =&gt; <strong>'Not informed'</strong>, um valor diferente dos informados será identificado como <strong>Not</strong> <strong>informed</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>string</td>\n<td>Nome do cargo da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>profession</td>\n<td>string</td>\n<td>Profissão da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>resume</td>\n<td>string</td>\n<td>Breve currículo da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações da pessoa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto contendo os dados de endereço da pessoa. Válido para pessoas não estrangeiras</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>CEP da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>string</td>\n<td>Sigla do estado em que a pessoa reside</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Nome da cidade em que a pessoa reside</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Nome da rua em que a pessoa reside</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>integer</td>\n<td>Número da residênica da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro em que a pessoa reside</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento do endereço da pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hasLoginAccess</td>\n<td>boolean</td>\n<td>Indica se a pessoa terá acesso à <strong>Área do Clliente</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string</td>\n<td>Define o login da pessoa caso esta tenha acesso à <strong>Área do Cliente.</strong> O login deve conter: Somente <strong>letras</strong>, <strong>números</strong>, <strong>@ . - +</strong> ou <strong>_</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>Define a senha da pessoa caso esta tenha acesso. Deve conter pelo menos 6 caracteres, compostos por letras e números</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td>string[]</td>\n<td>Array contendo as permissões que a pessoa terá no sistema. Os valores válidos são: <strong>'finance'</strong>, <strong>'orders'</strong>, <strong>'rooms'</strong>, <strong>'sharedSpaces'</strong>, <strong>'assistance'</strong>, <strong>'correspondences'</strong> e <strong>'printing'</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>accessId</td>\n<td>string</td>\n<td>Identificador da pessoa (id, nº do cartão e etc) no dispositivo de controle de acesso (catracas, biometria, etc)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>canReceiveMail</td>\n<td>boolean</td>\n<td>Sinaliza se a pessoa pode receber correspondências para o cliente ao qual é associada</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>color</td>\n<td>string</td>\n<td>Código de cor hexadecimal que será associado ao perfil da pessoa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>printFeeId</td>\n<td>string</td>\n<td>Valor utilizado unicamente para identificar o cliente durante a importação do arquivo com as tarifações de impressão. Só pode ser cadastrado por usuários do tipo <strong>admin</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>extensionNumbers</td>\n<td>string[]</td>\n<td>Array contendo os números de ramal ou extensões da pessoa</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlLinkedin</td>\n<td>string</td>\n<td>Endereço perfil da pessoa no <strong>LinkedIn</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlInstagram</td>\n<td>string</td>\n<td>Endereço do perfil da pessoa no <strong>Instagram</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlFacebook</td>\n<td>string</td>\n<td>Endereço do perfil da pessoa no <strong>Facebook</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>urlTwitter</td>\n<td>string</td>\n<td>Endereço do perfil da pessoa no <strong>Twitter</strong></td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>useFacialRecognitionPhoto</td>\n<td>boolean</td>\n<td>Define se a imagem da pessoa deve ser utilizada para o reconhecimento facial. Depende de configurações e equipamento específico</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>devices</td>\n<td>array of objects</td>\n<td>Array contendo os objetos que representam os dispositivos da pessoa que serão cadastrados</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>devices[].nickname</td>\n<td>string</td>\n<td>Apelido do dispositivo</td>\n<td>-</td>\n</tr>\n<tr>\n<td>devices[].macAddress</td>\n<td>string</td>\n<td>Endereço de mac do dispositivo</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#73281413-c592-4a38-8b3a-90d11adebe6f\">GET /person/:id</a></p>\n","urlObject":{"path":["person",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"2","key":"id"}]}},"response":[{"id":"1fa02cc5-c33f-4111-817d-0d83e27fd3b0","name":"(200) Success - Conexa Recorrência pessoa estrangeira","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Elizabeth E Elias\",\n    \"nationality\": \"American\",\n    \"placeOfBirth\": \"Georgia\",\n    \"maritalStatus\": \"single\",\n    \"isForeign\": true,\n    \"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"birthDate\": \"1992-11-09\",\n    \"cellNumber\": \"404-436-0587\",\n    \"phones\": [\n        \"770-593-8031\"\n    ],\n    \"emails\": [\n        \"angela.gutma@yahoo.com\"\n    ],\n    \"sex\": \"F\",\n    \"jobTitle\": \"Transportation Planner\",\n    \"profession\": \"\",\n    \"resume\": \"Company Service Merchandise\",\n    \"notes\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 19:40:09 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"742"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"personId\": 2,\n    \"foreignData\": {\n        \"document\": \"22225555522\",\n        \"country\": \"United States\",\n        \"zipCode\": \"30058\",\n        \"state\": \"Georgia\",\n        \"city\": \"Panola\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": null\n    },\n    \"isForeign\": true,\n    \"name\": \"Elizabeth E Elias\",\n    \"birthDate\": \"1992-11-09\",\n    \"maritalStatus\": \"single\",\n    \"sex\": \"F\",\n    \"nationality\": \"American\",\n    \"placeOfBirth\": \"Georgia\",\n    \"notes\": null,\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"profession\": null,\n    \"cellNumber\": \"4044360587\",\n    \"phones\": [\n        \"7705938031\"\n    ],\n    \"emails\": [\n        \"angela.gutma@yahoo.com\"\n    ],\n    \"jobTitle\": \"Transportation Planner\",\n    \"canReceiveMail\": null,\n    \"photo\": \"\",\n    \"resume\": \"Company Service Merchandise\",\n    \"isIndividualCustomer\": false,\n    \"hasLoginAccess\": false,\n    \"isActive\": true,\n    \"customerId\": 31,\n    \"companyId\": 3\n}"},{"id":"f30a60fd-fd6f-4ede-835b-0ca38697a7a9","name":"(200) Success - Conexa Recorrência alterando informações de fiador e representante legal da empresa","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 20:00:45 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"820"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"personId\": 2,\n    \"foreignData\": {\n        \"document\": \"22225555522\",\n        \"country\": \"United States\",\n        \"zipCode\": \"30058\",\n        \"state\": \"Georgia\",\n        \"city\": \"Panola\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": null\n    },\n    \"isForeign\": true,\n    \"name\": \"Elizabeth E Elias\",\n    \"birthDate\": \"1992-11-09\",\n    \"maritalStatus\": \"single\",\n    \"sex\": \"F\",\n    \"nationality\": \"American\",\n    \"placeOfBirth\": \"Georgia\",\n    \"notes\": null,\n    \"isCompanyPartner\": true,\n    \"isGuarantor\": true,\n    \"profession\": null,\n    \"cellNumber\": \"4044360587\",\n    \"phones\": [\n        \"7705938031\"\n    ],\n    \"emails\": [\n        \"angela.gutma@yahoo.com\"\n    ],\n    \"jobTitle\": \"Transportation Planner\",\n    \"canReceiveMail\": null,\n    \"photo\": \"\",\n    \"resume\": \"Company Service Merchandise\",\n    \"isIndividualCustomer\": false,\n    \"hasLoginAccess\": false,\n    \"isActive\": true,\n    \"customerId\": 31,\n    \"companyId\": 3\n}"},{"id":"f570195d-65fe-40ac-b382-30009d47c14f","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Kevin Enrico Doe Sete\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"single\",\n    \"hasLoginAccess\": true,\n    \"login\": \"kevindoesete\",\n    \"password\": \"!5CqTBdeM[&x91zb2\",\n    \"permissions\": [\n        \"finance\",\n        \"orders\",\n        \"rooms\",\n        \"sharedSpaces\"\n    ],\n    \"isForeign\": false,\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"cpf\": \"519.058.165-96\",\n    \"rg\": \"42.453.520-8\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"birthDate\": \"1967-03-17\",\n    \"cellNumber\": \"(95) 98111-1111\",\n    \"phones\": [\n        \"(69) 3772-4710\"\n    ],\n    \"emails\": [\n        \"kevin@gmail.google.com\"\n    ],\n    \"sex\": \"M\",\n    \"jobTitle\": \"Funcionário\",\n    \"profession\": \"Vendedor\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"address\": {\n        \"zipCode\": \"76873186\",\n        \"state\": \"RO\",\n        \"city\": \"Ariquemes\",\n        \"street\": \"Rua Jandaias Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Setor 02\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    // \"accessId\": \"\",\n    \"canReceiveMail\": true,\n    \"color\": \"#62b5ed\",\n    \"printFeeId\": \"\",\n    \"extensionNumbers\": [],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"508"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 19:19:21 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"986"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"personId\": 508,\n    \"address\": {\n        \"zipCode\": \"76873186\",\n        \"city\": \"Ariquemes\",\n        \"state\": {\n            \"id\": 21,\n            \"name\": \"Rondônia\",\n            \"abbreviation\": \"RO\"\n        },\n        \"street\": \"Rua Jandaias Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Setor 02\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"isForeign\": false,\n    \"name\": \"Kevin Enrico Doe Sete\",\n    \"rg\": \"424535208\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"cpf\": \"51905816596\",\n    \"birthDate\": \"1967-03-17\",\n    \"maritalStatus\": \"single\",\n    \"sex\": \"M\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"notes\": null,\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"profession\": \"Vendedor\",\n    \"cellNumber\": \"95981111111\",\n    \"phones\": [\n        \"6937724710\"\n    ],\n    \"emails\": [\n        \"kevin@gmail.google.com\"\n    ],\n    \"jobTitle\": \"Funcionário\",\n    \"canReceiveMail\": true,\n    \"photo\": \"\",\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"resume\": null,\n    \"isIndividualCustomer\": false,\n    \"hasLoginAccess\": true,\n    \"isActive\": true,\n    \"printFeeId\": null,\n    \"accessId\": \"\",\n    \"customerId\": 450,\n    \"companyId\": 3\n}"},{"id":"171a9819-5dff-42b7-8f72-8a5b439f4727","name":"(200) Success - Conexa Coworking alterando permissões","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"permissions\": [\n        \"rooms\",\n        \"sharedSpaces\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"508"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 19:24:07 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"986"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"personId\": 508,\n    \"address\": {\n        \"zipCode\": \"76873186\",\n        \"city\": \"Ariquemes\",\n        \"state\": {\n            \"id\": 21,\n            \"name\": \"Rondônia\",\n            \"abbreviation\": \"RO\"\n        },\n        \"street\": \"Rua Jandaias Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Setor 02\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    \"isForeign\": false,\n    \"name\": \"Kevin Enrico Doe Sete\",\n    \"rg\": \"424535208\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"cpf\": \"51905816596\",\n    \"birthDate\": \"1967-03-17\",\n    \"maritalStatus\": \"single\",\n    \"sex\": \"M\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"notes\": null,\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"profession\": \"Vendedor\",\n    \"cellNumber\": \"95981111111\",\n    \"phones\": [\n        \"6937724710\"\n    ],\n    \"emails\": [\n        \"kevin@gmail.google.com\"\n    ],\n    \"jobTitle\": \"Funcionário\",\n    \"canReceiveMail\": true,\n    \"photo\": \"\",\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"resume\": null,\n    \"isIndividualCustomer\": false,\n    \"hasLoginAccess\": true,\n    \"isActive\": true,\n    \"printFeeId\": null,\n    \"accessId\": \"\",\n    \"customerId\": 450,\n    \"companyId\": 3\n}"},{"id":"c2a596d5-ecd0-4235-af59-6d1f9c5ebd10","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"citizenship\": \"brasileiro\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"3"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 20:05:48 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"173"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"citizenship\",\n            \"messages\": [\n                \"Failed to set, \\\"citizenship\\\" field does not exist or is not available in the company\"\n            ]\n        }\n    ]\n}"},{"id":"754bc63a-cf3e-4ad2-bc6f-15a042e17576","name":"(404) Not found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Elizabeth E Elias\",\n    \"nationality\": \"american\",\n    \"placeOfBirth\": \"Georgia\",\n    \"maritalStatus\": \"single\",\n    \"hasLoginAccess\": true,\n    \"login\": \"ellza\",\n    \"password\": \"!5CqTBdeM[&x91zb2\",\n    \"permissions\": [\n        \"finance\",\n        \"orders\"\n    ],\n    \"isForeign\": true,\n    \"foreignData\": {\n        \"zipCode\": \"30058\",\n        \"country\": \"United States\",\n        \"city\": \"Panola\",\n        \"state\": \"Georgia\",\n        \"street\": \"Lakeland\",\n        \"number\": \"93\",\n        \"neighborhood\": \"Park Drive\",\n        \"additionalDetails\": \"\",\n        \"document\": \"22225555522\"\n    },\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"birthDate\": \"1992-11-09\",\n    \"cellNumber\": \"404-436-0587\",\n    \"phones\": [\n        \"770-593-8031\"\n    ],\n    \"emails\": [\n        \"angela.gutma@yahoo.com\"\n    ],\n    \"sex\": \"F\",\n    \"jobTitle\": \"Transportation Planner\",\n    \"profession\": \"\",\n    \"resume\": \"Company Service Merchandise\",\n    \"notes\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"508"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 19:37:31 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"38"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Person \\\"508\\\" not found\"\n}"},{"id":"3c60c5d4-0a74-4b6b-8216-94f0b19d097d","name":"(422) Unable to process - Conexa Coworking","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Kevin Enrico Doe Sete\",\n    \"nationality\": \"brasileiro\",\n    \"placeOfBirth\": \"Feira de Santana\",\n    \"maritalStatus\": \"single\",\n    \"hasLoginAccess\": true,\n    \"login\": \"kevindoesete\",\n    \"password\": \"!5CqTBdeM[&x91zb2\",\n    \"permissions\": [\n        \"finance\",\n        \"orders\",\n        \"rooms\",\n        \"sharedSpaces\"\n    ],\n    \"isForeign\": false,\n    \"isCompanyPartner\": false,\n    \"isGuarantor\": false,\n    \"cpf\": \"519.058.165-96\",\n    \"rg\": \"42.453.520-8\",\n    \"issuingAuthority\": \"SSP-BA\",\n    \"birthDate\": \"1967-03-17\",\n    \"cellNumber\": \"(95) 98111-1111\",\n    \"phones\": [\n        \"(69) 3772-4710\"\n    ],\n    \"emails\": [\n        \"kevin@gmail.google.com\"\n    ],\n    \"sex\": \"M\",\n    \"jobTitle\": \"Funcionário\",\n    \"profession\": \"Vendedor\",\n    \"resume\": \"\",\n    \"notes\": \"\",\n    \"address\": {\n        \"zipCode\": \"76873186\",\n        \"state\": \"RO\",\n        \"city\": \"Ariquemes\",\n        \"street\": \"Rua Jandaias Mendes\",\n        \"number\": \"935\",\n        \"neighborhood\": \"Setor 02\",\n        \"additionalDetails\": \"Apt. 02\"\n    },\n    // \"accessId\": \"\",\n    \"canReceiveMail\": true,\n    \"color\": \"\",\n    \"printFeeId\": \"\",\n    \"extensionNumbers\": [],\n    \"urlLinkedin\": \"www.linkedin.com.br\",\n    \"urlInstagram\": \"www.instagram.com.br\",\n    \"urlFacebook\": \"www.facebook.com.br\",\n    \"urlTwitter\": \"www.twitter.com.br\",\n    \"devices\": [\n        {\n            \"nickname\": \"iPhone pro Max\",\n            \"macAddress\": \"E2-4A-01-94-EA-9C\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"508"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2024 19:12:33 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"168"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PERSON_04\",\n            \"message\": \"There is no active Mikrotik on the company the customer belongs to\"\n        }\n    ]\n}"}],"_postman_id":"d5db5a90-42c9-410b-8683-d7616cc5bf15"},{"name":"/person/:id","id":"6164ed3a-105d-4168-a685-50a9681c68dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","description":"<p>Exclusão de uma pessoa (associada a um cliente) no sistema Conexa.</p>\n<p>É necessário que a pessoa não tenha vínculo com vendas, impressões e/ou correspondências para que a exclusão seja realizada!</p>\n","urlObject":{"path":["person",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"62","key":"id"}]}},"response":[{"id":"501aadbb-542d-44dd-b05a-39be9c3971f9","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"502"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 23 Jan 2024 01:52:16 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"cc3d1f4f-85d0-44a1-90d3-49ee9fb07389","name":"(401) Unauthorized","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"502"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jan 2024 01:50:49 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"453caef5-54a8-44cc-8972-fcc1c34e71de","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/person/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["person",":id"],"variable":[{"key":"id","value":"62"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sat, 19 Jul 2025 22:40:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PERSON_01\",\n            \"message\": \"Cannot delete this person as there are sales, prints or mail related to it\"\n        }\n    ]\n}"}],"_postman_id":"6164ed3a-105d-4168-a685-50a9681c68dd"},{"name":"/persons","id":"d108b2b9-2efa-4264-9e56-1ac65acb627c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"lorem.ipsun0\"\n}"},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/persons?limit=20","description":"<p>Listagem paginada de pessoas.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula. Consultar exemplo: <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#d108b2b9-2efa-4264-9e56-1ac65acb627c\">(200) Success - Conexa Recorrência/Contabilidade</a>.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de pessoas contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#73281413-c592-4a38-8b3a-90d11adebe6f\">GET /person/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["persons"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs de pessoas</p>\n","type":"text/plain"},"key":"id[]","value":"512,508,347"},{"disabled":true,"description":{"content":"<p>IDs de unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"8"},{"disabled":true,"description":{"content":"<p>IDs de clientes</p>\n","type":"text/plain"},"key":"customerId[]","value":"450,216"},{"disabled":true,"description":{"content":"<p>Nome da pessoa</p>\n","type":"text/plain"},"key":"name","value":"Tomás Miguel"},{"disabled":true,"description":{"content":"<p>Situação da pessoa, sendo: 0 = inativo e 1 = ativo</p>\n","type":"text/plain"},"key":"active","value":"1"},{"disabled":true,"description":{"content":"<p>RG da pessoa</p>\n","type":"text/plain"},"key":"rg","value":"439535864"},{"disabled":true,"description":{"content":"<p>CPF da pessoa</p>\n","type":"text/plain"},"key":"cpf","value":"93726775315"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca\nRecomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"b48dc898-3791-4222-b8ee-26d682b9caf9","name":"(200) Success - Conexa Recorrência/Contabilidade","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"lorem.ipsun0\"\n}"},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/persons?id[]=10,15&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["persons"],"query":[{"key":"id[]","value":"10,15","description":"IDs de pessoas"},{"key":"companyId[]","value":"8","description":"IDs de unidades","type":"text","disabled":true},{"key":"customerId[]","value":"450,216","description":"IDs de clientes","type":"text","disabled":true},{"key":"name","value":"Tomás Miguel","description":"Nome da pessoa","type":"text","disabled":true},{"key":"active","value":"1","description":"Situação da pessoa, sendo: 0 = inativo e 1 = ativo)","type":"text","disabled":true},{"key":"rg","value":"439535864","description":"RG da pessoa","type":"text","disabled":true},{"key":"cpf","value":"61573942855","description":"CPF da pessoa","disabled":true},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 14:15:14 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"personId\": 10,\n            \"address\": {\n                \"zipCode\": \"11674771\",\n                \"city\": \"Ribeirão Preto\",\n                \"state\": {\n                    \"id\": 26,\n                    \"name\": \"São Paulo\",\n                    \"abbreviation\": \"SP\"\n                },\n                \"street\": \"Trecho Ana Júlia Rocha\",\n                \"number\": \"63\",\n                \"neighborhood\": \"Engenho Nogueira\",\n                \"additionalDetails\": \"Bloco B\"\n            },\n            \"isForeign\": false,\n            \"name\": \"Sophie Peixoto\",\n            \"rg\": \"602458316\",\n            \"issuingAuthority\": \"IFP\",\n            \"cpf\": \"61573942855\",\n            \"birthDate\": \"1984-01-14\",\n            \"maritalStatus\": \"not informed\",\n            \"sex\": \"I\",\n            \"nationality\": null,\n            \"placeOfBirth\": null,\n            \"notes\": null,\n            \"isCompanyPartner\": false,\n            \"isGuarantor\": false,\n            \"profession\": \"Mensageiro\",\n            \"cellNumber\": \"4199493167\",\n            \"phones\": null,\n            \"emails\": [\n                \"lorem@ipsum.dolor\"\n            ],\n            \"jobTitle\": \"Administrador de banco de dados DBA\",\n            \"canReceiveMail\": null,\n            \"photo\": \"\",\n            \"resume\": null,\n            \"isIndividualCustomer\": false,\n            \"hasLoginAccess\": false,\n            \"isActive\": true,\n            \"customerId\": 13,\n            \"companyId\": 3\n        },\n        {\n            \"personId\": 15,\n            \"address\": {\n                \"zipCode\": \"11674771\",\n                \"city\": \"Ribeirão Preto\",\n                \"state\": {\n                    \"id\": 26,\n                    \"name\": \"São Paulo\",\n                    \"abbreviation\": \"SP\"\n                },\n                \"street\": \"Avenida Souza\",\n                \"number\": \"69\",\n                \"neighborhood\": \"Jardim América\",\n                \"additionalDetails\": \"Loja 3\"\n            },\n            \"isForeign\": false,\n            \"name\": \"Davi Lucca Cunha\",\n            \"rg\": \"753864216\",\n            \"issuingAuthority\": \"DETRAN\",\n            \"cpf\": \"42809753105\",\n            \"birthDate\": \"1995-05-19\",\n            \"maritalStatus\": \"not informed\",\n            \"sex\": \"I\",\n            \"nationality\": null,\n            \"placeOfBirth\": null,\n            \"notes\": null,\n            \"isCompanyPartner\": false,\n            \"isGuarantor\": false,\n            \"profession\": \"Timoneiro\",\n            \"cellNumber\": \"8599127762\",\n            \"phones\": null,\n            \"emails\": [\n                \"lorem@ipsum.dolor\"\n            ],\n            \"jobTitle\": \"Professor\",\n            \"canReceiveMail\": null,\n            \"photo\": \"\",\n            \"resume\": null,\n            \"isIndividualCustomer\": false,\n            \"hasLoginAccess\": false,\n            \"isActive\": true,\n            \"customerId\": 8,\n            \"companyId\": 3\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"814412b4-bc76-49e9-ac38-005a004e3b90","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"lorem.ipsun0\"\n}"},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/persons?cpf=93726775315&limit=20&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["persons"],"query":[{"key":"cpf","value":"93726775315","description":"CPF da pessoa"},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 11:14:53 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"personId\": 408,\n            \"address\": {\n                \"zipCode\": null,\n                \"city\": null,\n                \"state\": null,\n                \"street\": null,\n                \"number\": null,\n                \"neighborhood\": null,\n                \"additionalDetails\": null\n            },\n            \"isForeign\": false,\n            \"name\": \"Theo Diego Igor Nascimento\",\n            \"rg\": \"789456123\",\n            \"issuingAuthority\": \"SSP BA\",\n            \"cpf\": \"93726775315\",\n            \"birthDate\": \"1994-01-16\",\n            \"maritalStatus\": \"not informed\",\n            \"sex\": \"M\",\n            \"nationality\": \"Brasileiro(a)\",\n            \"placeOfBirth\": null,\n            \"notes\": null,\n            \"isCompanyPartner\": false,\n            \"isGuarantor\": false,\n            \"profession\": null,\n            \"cellNumber\": \"75999999999\",\n            \"phones\": null,\n            \"emails\": null,\n            \"jobTitle\": \"Técnico em informática\",\n            \"canReceiveMail\": true,\n            \"photo\": \"\",\n            \"resume\": null,\n            \"isIndividualCustomer\": false,\n            \"hasLoginAccess\": false,\n            \"isActive\": true,\n            \"printFeeId\": null,\n            \"accessId\": \"\",\n            \"urlLinkedin\": \"\",\n            \"urlInstagram\": \"\",\n            \"urlFacebook\": \"\",\n            \"urlTwitter\": \"\",\n            \"customerId\": 450,\n            \"companyId\": 3\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"713ea59e-c92d-4c91-8d8a-69ab3977b42a","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"password\": \"lorem.ipsun0\"\n}"},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/persons?companyId[]=8&cpf=93726775315","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["persons"],"query":[{"key":"companyId[]","value":"8","description":"IDs de unidades"},{"key":"cpf","value":"93726775315","description":"CPF da pessoa"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 11:20:00 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"This company is disabled, or admin doesn't have permission to access it. The company must be enabled, or admin must have access to perform this action. Verify the company's status and access, then try again\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"d108b2b9-2efa-4264-9e56-1ac65acb627c"}],"id":"401025e7-0a4d-4f59-ae8e-3abe426c64af","description":"<p>Endpoints que correspondem a Pessoa, vinculada a um cliente, no sistema Conexa.</p>\n","_postman_id":"401025e7-0a4d-4f59-ae8e-3abe426c64af","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Plan","item":[{"name":"/plan","id":"84e94c1b-84e8-4ab4-9468-3ae414b939c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Gold Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>Gold Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2521\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n     \"privateSpaceIds\": [\n        2128\n    ],\n    \"hourQuotas\": [\n        {\n            \"hours\": 4,\n            \"periodicity\": \"monthly\",\n            \"groupId\": 8\n        },\n        {\n            \"hours\": 2,\n            \"periodicity\": \"monthly\",\n            \"spaceId\": \t4145\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan","description":"<p>Criação de um plano, utilizado no cadastro de contrato, no sistema Conexa.</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do plano (<strong>deve ser único</strong>)</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>serviceCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de serviço</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro custo</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição do plano</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentPeriodicities</td>\n<td>array of objects</td>\n<td>Opções de periodicidade de pagamento</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentPeriodicities[].periodicity</td>\n<td>string</td>\n<td>Periodicidade de pagamento, podendo ser: <strong>monthly</strong>, <strong>bimonthly</strong>, <strong>quarterly</strong>, <strong>semester</strong> ou <strong>yearly</strong></td>\n<td>Sim, se existir um objeto de paymentPeriodicities</td>\n<td>-</td>\n</tr>\n<tr>\n<td>paymentPeriodicities[].amount</td>\n<td>decimal</td>\n<td>Valor do plano em determinada periodicidade</td>\n<td>Sim, se existir um objeto de paymentPeriodicities</td>\n<td>-</td>\n</tr>\n<tr>\n<td>membershipFee</td>\n<td>decimal</td>\n<td>Taxa de adesão</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>refundValue</td>\n<td>decimal</td>\n<td>Valor de deposito retornavel</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fidelityMonths</td>\n<td>integer</td>\n<td>Meses de fidelidade</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas</td>\n<td>array of objects</td>\n<td>Cotas de serviços/itens (produtos) que vão estar associadas ao plano</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas[].productId</td>\n<td>integer</td>\n<td>ID do serviço/item</td>\n<td>Sim, se um objeto dentro de productQuotas for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas[].quantity</td>\n<td>integer</td>\n<td>Quantidade de cotas</td>\n<td>Sim, se um objeto dentro de productQuotas for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>nfseDescription</td>\n<td>string</td>\n<td>Descrição da nota fiscal</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>descriptionReceipt</td>\n<td>string</td>\n<td>Descrição do recibo (depende de configuração)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnRooms</td>\n<td>decimal</td>\n<td>Valor em percentual de desconto em salas</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnWorkstation</td>\n<td>decimal</td>\n<td>Valor em percentual de desconto em ambientes compartilhados</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isSmsEnabled</td>\n<td>boolean</td>\n<td>Flag para verificar se envia SMS. Padrão: <code>false</code></td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas</td>\n<td>object</td>\n<td>Configura as cotas de atendimentos e correspondências (depende de configuração)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.limited</td>\n<td>boolean</td>\n<td>Define se a quantidade de atendimentos e correspondências é ou não limitada</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.messagesLimit</td>\n<td>integer</td>\n<td>Define o limite de atendimentos e correspondências. Definir como 0 para não adicionar cotas ao contrato</td>\n<td>Sim, se serviceCorrespondenceQuotas.limited for <code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.priceAdditionalMessage</td>\n<td>decimal</td>\n<td>Define o valor a ser pago caso o limite de atendimentos e correspondências seja ultrapassado</td>\n<td>Sim, se serviceCorrespondenceQuotas.limited for <code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels</td>\n<td>array of objects</td>\n<td>Lista de Modelos de Reserva (Estações de Trabalho do Ambiente Compartilhado)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>bookingModels[].id</td>\n<td>integer</td>\n<td>ID do Modelo de reserva</td>\n<td>Sim, se um objeto dentro de bookingModels for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].stations</td>\n<td>integer</td>\n<td>Quantidade de estações</td>\n<td>Sim, se um objeto dentro de bookingModels for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>privateSpaceIds</td>\n<td>array</td>\n<td>IDs de espaços privativos que o plano contempla</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>hourQuotas</td>\n<td>array of objects</td>\n<td>Pacotes de horas</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>hourQuotas[].hours</td>\n<td>integer</td>\n<td>Quantidade de horas da cota</td>\n<td>Sim, se existir um objeto de hourQuotas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].periodicity</td>\n<td>string</td>\n<td>Frequência de disponibilidade de cota, podendo ser: <strong>daily</strong>, <strong>weekly</strong> ou <strong>monthly</strong></td>\n<td>Sim, se existir um objeto de hourQuotas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].spaceId</td>\n<td>integer</td>\n<td>ID do espaço</td>\n<td>Sim, se existir um objeto de hourQuotas e groupId for vazio</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].groupId</td>\n<td>integer</td>\n<td>ID do grupo</td>\n<td>Sim, se existir um objeto de hourQuotas e spaceId for vazio</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do plano criado</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["plan"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"38388f1b-bcf4-4702-8187-00cb145e7792","name":"(201) Success - Conexa Recorrência todos os campos","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Plus Horizon\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>Plano Horizon para 2 pessoas.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2119\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 20:43:32 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"9"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 15\n}"},{"id":"f4e13629-3c17-42d4-bc34-a296a1a97df4","name":"(201) Success - Conexa Coworking","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Gold Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>Gold Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2521\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n     \"privateSpaceIds\": [\n        2128\n    ],\n    \"hourQuotas\": [\n        {\n            \"groupId\": 8,\n            \"hours\": 4,\n            \"periodicity\": \"monthly\"\n        },\n        {\n            \"spaceId\": \t4145,\n            \"hours\": 2,\n            \"periodicity\": \"monthly\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 21:02:16 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"9"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 494\n}"},{"id":"399f7564-a432-47fd-ba51-eed5ed84954b","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Plus Horizon\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>Plano Horizon para 2 pessoas.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": \"$ 9.99\",\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2119\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    // \"receiptDescription\": \"Descrição recibo\",\n    // \"discountOnRooms\": 100,\n    // \"discountOnWorkstation\": 20,\n    // \"isSmsEnabled\": true,\n    // Disponível caso o serviço de Correspodência ou atendimento esteja ativo\n    // \"serviceCorrespondenceQuotas\": {\n    //     \"limited\": true,\n    //     \"messagesLimit\": 10,\n    //     \"priceAdditionalMessage\": 1.50\n    // },\n    // Disponível caso Ambiente Compartilhado esteja ativo\n    // \"bookingModels\": [\n    //     {\n    //         \"stations\": 1,\n    //         \"id\": 1\n    //     }\n    // ],\n    // Disponível caso Agenda de Salas esteja ativo\n    //  \"privateSpaceIds\": [\n    //     2116\n    // ],\n    // Se Agenda de Salas ou Ambiente Compartilhado estiveram ativos\n    // \"hourQuotas\": [\n    //     {\n    //         \"hours\": 4,\n    //         \"periodicity\": \"monthly\",\n    //         \"groupId\": 1\n    //     },\n    //     {\n    //         \"hours\": 4,\n    //         \"periodicity\": \"monthly\",\n    //         \"spaceId\": \t2109\n    //     }\n    // ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 20:49:46 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"117"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"membershipFee\",\n            \"messages\": [\n                \"Membership Fee must be float\"\n            ]\n        }\n    ]\n}"},{"id":"0f49ce06-89cf-44de-b0ac-c728212846c0","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Gold Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>Gold Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2119\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    // \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    // Disponível caso o serviço de Correspodência ou atendimento esteja ativo\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    // Disponível caso Ambiente Compartilhado esteja ativo\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n    // Disponível caso Agenda de Salas esteja ativo\n     \"privateSpaceIds\": [\n        2128\n    ],\n    // Se Agenda de Salas ou Ambiente Compartilhado estiveram ativos\n    \"hourQuotas\": [\n        {\n            \"groupId\": 8,\n            \"hours\": 4,\n            \"periodicity\": \"monthly\"\n        },\n        {\n            \"spaceId\": \t4145,\n            \"hours\": 2,\n            \"periodicity\": \"monthly\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 21:01:25 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"140"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"QUOTA_01\",\n            \"message\": \"The product 2119 is not valid for quota\"\n        }\n    ]\n}"}],"_postman_id":"84e94c1b-84e8-4ab4-9468-3ae414b939c7"},{"name":"/plan/:id","id":"4580c54b-81ec-4a20-9d46-16584fd3f0a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","description":"<p>Recuperação dos dados de um Plano no Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não serão retornados! </p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>planId</td>\n<td>integer</td>\n<td>ID do plano</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Status de ativo</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isCustom</td>\n<td>boolean</td>\n<td>Flag se o plano foi criado de forma personalizada (através do cadastro de um contrato)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do plano</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição do plano</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>serviceCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de serviço</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>refundValue</td>\n<td>decimal</td>\n<td>Valor do depósito retornável</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>membershipFee</td>\n<td>decimal</td>\n<td>Taxa de adesão</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fidelityMonths</td>\n<td>integer</td>\n<td>Quantidade de meses da fidelidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nfseDescription</td>\n<td>string</td>\n<td>Descrição da NFS-e (depende de configuração)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentPeriodicities</td>\n<td>object</td>\n<td>Objeto com os valores de periodicidade. O objeto só terá as periodicidades presente no plano</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentPeriodicities.monthly</td>\n<td>decimal</td>\n<td>Valor mensal</td>\n<td>-</td>\n</tr>\n<tr>\n<td>paymentPeriodicities.bimonthly</td>\n<td>decimal</td>\n<td>Valor bimestral</td>\n<td>-</td>\n</tr>\n<tr>\n<td>paymentPeriodicities.quarterly</td>\n<td>decimal</td>\n<td>Valor trimestral</td>\n<td>-</td>\n</tr>\n<tr>\n<td>paymentPeriodicities.semester</td>\n<td>decimal</td>\n<td>Valor semestral</td>\n<td>-</td>\n</tr>\n<tr>\n<td>paymentPeriodicities.yearly</td>\n<td>decimal</td>\n<td>Valor anual</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas</td>\n<td>array of objects</td>\n<td>Lista de Cotas de Serviços/Itens</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas[].id</td>\n<td>integer</td>\n<td>ID da cota de serviços/itens</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas[].productId</td>\n<td>integer</td>\n<td>ID do serviço/item</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas[].quota</td>\n<td>integer</td>\n<td>Quantidade de cotas para o serviço/item</td>\n<td>-</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de criação. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data de atualização. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>receiptDescription</td>\n<td>string</td>\n<td>Descrição que aparecerá no recibo de locação (dependente de configuração)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isSmsEnabled</td>\n<td>boolean</td>\n<td>Flag de envio de SMS</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>privateSpaceIds</td>\n<td>array of integer</td>\n<td>Lista de IDs de espaços privativos</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnRooms</td>\n<td>decimal</td>\n<td>Percentual de desconto em sala de reunião</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnWorkstation</td>\n<td>decimal</td>\n<td>Percentual de desconto em ambiente compartilhado</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>receiptDescription</td>\n<td>string</td>\n<td>Descrição da Fatura/Recibo (depende de configuração)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas</td>\n<td>object</td>\n<td>Cotas de atendimento e correspondência (depende de configuração)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.limited</td>\n<td>boolean</td>\n<td>Flag se a quantidade de atendimentos e correspondências são limitadas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.messagesLimit</td>\n<td>integer</td>\n<td>Limite de atendimentos e correspondências</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.priceAdditionalMessage</td>\n<td>decimal</td>\n<td>Valor a ser pago caso o limite de atendimentos e correspondências seja ultrapassado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels</td>\n<td>array of objects</td>\n<td>Lista de Modelos de Reserva (Estações de Trabalho do Ambiente Compartilhado)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>bookingModels[].id</td>\n<td>integer</td>\n<td>ID do modelo de reserva</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].name</td>\n<td>string</td>\n<td>Nome do modelo de reserva</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].shareSpaceId</td>\n<td>integer</td>\n<td>ID do ambinete compartilhado da reserva</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].frequency</td>\n<td>string</td>\n<td>Frequência da reserva. Podendo ser: <strong>weekly</strong> ou <strong>monthly</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].isActive</td>\n<td>boolean</td>\n<td>Flag se o modelo de reserva está ativo</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].startHour</td>\n<td>string</td>\n<td>Horário de início da reserva. Formato: <strong>hh:mm</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].endHour</td>\n<td>string</td>\n<td>Horário de término da reserva. Formato: <strong>hh:mm</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].resume</td>\n<td>string</td>\n<td>Resumo, em linguagem natural, do modelo de reserva</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].daysOfWeek</td>\n<td>array of string</td>\n<td>Lista de dias da semana do modelo de reserva</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].monthlyType</td>\n<td>string</td>\n<td>Informação se a reserva é em um dia ou data específica caso a frequência seja <strong>monthly</strong>. Podendo ser: <strong>day</strong> ou <strong>date</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].createdAt</td>\n<td>string</td>\n<td>Data de criação do modelo de reserva. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].updatedAt</td>\n<td>string</td>\n<td>Data de atualização do modelo de reserva. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas</td>\n<td>array of objects</td>\n<td>Lista de Cotas de Horas em Salas de Reunião, Ambientes Compartilhados ou Grupos de Salas</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>hourQuotas[].id</td>\n<td>integer</td>\n<td>ID do pacote de horas definida na cota de horas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].name</td>\n<td>string</td>\n<td>Nome do pacote de horas definida na cota de horas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].spaceId</td>\n<td>integer</td>\n<td>Espaço de trabalho definido na cota de horas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].groupId</td>\n<td>integer</td>\n<td>Grupo de Salas definida na cota de horas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].quantity</td>\n<td>integer</td>\n<td>Quantidade de horas definida na cota de horas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].validityType</td>\n<td>string</td>\n<td>Período de validade da cota. Podendo ser: <strong>Daily</strong>, <strong>Weekly</strong> ou <strong>Monthly</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].createdAt</td>\n<td>string</td>\n<td>Data de criação. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].updatedAt</td>\n<td>string</td>\n<td>Data de atualização. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["plan",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"15","key":"id"}]}},"response":[{"id":"9c8ddf73-41e9-4322-9c7d-e3765afd36bd","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"555"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jun 2024 22:45:17 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1987"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"fidelityMonths\": 3,\n    \"refundValue\": 20,\n    \"membershipFee\": 200.02,\n    \"name\": \"Contrato com Horas\",\n    \"description\": null,\n    \"productQuotas\": [\n        {\n            \"id\": 41,\n            \"productId\": 2366,\n            \"quota\": 6\n        },\n        {\n            \"id\": 42,\n            \"productId\": 2154,\n            \"quota\": 1\n        },\n        {\n            \"id\": 43,\n            \"productId\": 2100,\n            \"quota\": 1\n        },\n        {\n            \"id\": 44,\n            \"productId\": 2521,\n            \"quota\": 1\n        },\n        {\n            \"id\": 45,\n            \"productId\": 2364,\n            \"quota\": 1\n        },\n        {\n            \"id\": 46,\n            \"productId\": 4182,\n            \"quota\": 1\n        },\n        {\n            \"id\": 47,\n            \"productId\": 2333,\n            \"quota\": 1\n        }\n    ],\n    \"paymentPeriodicities\": {\n        \"monthly\": 300,\n        \"bimonthly\": 550,\n        \"quarterly\": 800,\n        \"semester\": 1550,\n        \"yearly\": 3000\n    },\n    \"hourQuotas\": [\n        {\n            \"id\": 78,\n            \"name\": \"Horas do Plano Contratado (160h)\",\n            \"spaceId\": 2591,\n            \"groupId\": null,\n            \"quantity\": 160,\n            \"validityType\": \"Monthly\",\n            \"createdAt\": null,\n            \"updatedAt\": \"2024-03-13T18:00:42-03:00\"\n        },\n        {\n            \"id\": 79,\n            \"name\": \"Horas do Plano Contratado (150h)\",\n            \"spaceId\": 2106,\n            \"groupId\": null,\n            \"quantity\": 150,\n            \"validityType\": \"Monthly\",\n            \"createdAt\": null,\n            \"updatedAt\": \"2024-04-10T21:51:17-03:00\"\n        },\n        {\n            \"id\": 80,\n            \"name\": \"Horas do Plano Contratado (5h)\",\n            \"spaceId\": 2538,\n            \"groupId\": null,\n            \"quantity\": 5,\n            \"validityType\": \"Daily\",\n            \"createdAt\": null,\n            \"updatedAt\": \"2024-04-10T21:51:17-03:00\"\n        }\n    ],\n    \"discountOnRooms\": 50,\n    \"privateSpaceIds\": [\n        4119,\n        4123\n    ],\n    \"bookingModels\": [\n        {\n            \"id\": 1,\n            \"name\": \"Full Time (24 Horas x 7 dias da semana)\",\n            \"shareSpaceId\": 2104,\n            \"frequency\": \"Weekly\",\n            \"isActive\": true,\n            \"startHour\": \"00:00\",\n            \"endHour\": \"23:59\",\n            \"resume\": \"Toda semana, domingo, segunda-feira, terça-feira, quarta-feira, quinta-feira, sexta-feira, sábado, das 00:00 às 23:59\",\n            \"daysOfWeek\": [\n                \"Sunday\",\n                \"Monday\",\n                \"Tuesday\",\n                \"Wednesday\",\n                \"Thursday\",\n                \"Friday\",\n                \"Saturday\"\n            ],\n            \"monthlyType\": null,\n            \"createdAt\": \"2017-09-28T20:42:42-03:00\",\n            \"updatedAt\": \"2018-10-15T20:40:44-03:00\"\n        }\n    ],\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": false,\n    \"nfseDescription\": null,\n    \"receiptDescription\": null,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 30,\n        \"priceAdditionalMessage\": 20\n    },\n    \"planId\": 555,\n    \"isActive\": true,\n    \"createdAt\": \"2024-03-13T18:00:42-03:00\",\n    \"updatedAt\": \"2024-04-10T21:51:16-03:00\",\n    \"isCustom\": false,\n    \"isOnlineContractingEnabled\": false\n}"},{"id":"e5ec050d-6428-47a6-9c40-286ca653b6a7","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"146"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jun 2024 22:47:46 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"368"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"companyId\": 3,\n    \"serviceCategoryId\": 45,\n    \"costCenterId\": 1,\n    \"fidelityMonths\": 0,\n    \"refundValue\": 0,\n    \"membershipFee\": 0,\n    \"name\": \"Clube Fogo\",\n    \"description\": null,\n    \"productQuotas\": null,\n    \"paymentPeriodicities\": {\n        \"monthly\": 300\n    },\n    \"planId\": 146,\n    \"isActive\": true,\n    \"createdAt\": \"2024-06-05T14:25:04-03:00\",\n    \"updatedAt\": \"2024-06-05T14:25:04-03:00\",\n    \"isCustom\": false,\n    \"isOnlineContractingEnabled\": false\n}"},{"id":"e53dfdad-12eb-46de-967d-c03ec1862302","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"442"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 May 2024 00:55:52 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"78"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Plan does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"4580c54b-81ec-4a20-9d46-16584fd3f0a6"},{"name":"/plan/:id","id":"d14d1759-6164-4852-af20-7aa377b562f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"4AllDevs Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>4AllDevs Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2521\n        }\n    ],\n    // \"dueDay\": 5,\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": false,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n     \"privateSpaceIds\": [\n        2128\n    ],\n    \"hourQuotas\": [\n        {\n            \"hours\": 4,\n            \"periodicity\": \"monthly\",\n            \"groupId\": 8\n        },\n        {\n            \"hours\": 2,\n            \"periodicity\": \"monthly\",\n            \"spaceId\": \t4145\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","description":"<p>Atualiza um plano, utilizado no cadastro de contrato, no sistema Conexa.</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do plano (<strong>deve ser único</strong>)</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>serviceCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de serviço</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro custo</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição do plano</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentPeriodicities</td>\n<td>array of objects</td>\n<td>Opções de periodicidade de pagamento</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentPeriodicities[].periodicity</td>\n<td>string</td>\n<td>Periodicidade de pagamento, podendo ser: <strong>monthly</strong>, <strong>bimonthly</strong>, <strong>quarterly</strong>, <strong>semester</strong> ou <strong>yearly</strong></td>\n<td>Sim, se existir um objeto de paymentPeriodicities</td>\n<td>-</td>\n</tr>\n<tr>\n<td>paymentPeriodicities[].amount</td>\n<td>decimal</td>\n<td>Valor do plano para a periodicidade</td>\n<td>Sim, se existir um objeto de paymentPeriodicities</td>\n<td>-</td>\n</tr>\n<tr>\n<td>membershipFee</td>\n<td>decimal</td>\n<td>Taxa de adesão</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>refundValue</td>\n<td>decimal</td>\n<td>Valor de depósito retornável</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fidelityMonths</td>\n<td>integer</td>\n<td>Quantidade de meses de fidelidade</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas</td>\n<td>array of objects</td>\n<td>Lista de cotas de serviços/itens (produtos) vinculadas ao plano</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas[].productId</td>\n<td>integer</td>\n<td>ID do serviço/item</td>\n<td>Sim, se um objeto dentro de productQuotas for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas[].quantity</td>\n<td>integer</td>\n<td>Quantidade de cotas</td>\n<td>Sim, se um objeto dentro de productQuotas for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dueDay</td>\n<td>integer</td>\n<td>Dia do vencimento do plano \"Cliente Avulso\"</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nfseDescription</td>\n<td>string</td>\n<td>Descrição da nota fiscal</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>receiptDescription</td>\n<td>string</td>\n<td>Descrição do recibo (depende de configuração)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnRooms</td>\n<td>decimal</td>\n<td>Valor em percentual de desconto para reserva em salas</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnWorkstation</td>\n<td>decimal</td>\n<td>Valor em percentual de desconto para reserva em ambientes compartilhados</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isSmsEnabled</td>\n<td>boolean</td>\n<td>Flag de envio de SMS</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas</td>\n<td>object</td>\n<td>Configura as cotas de atendimentos e correspondências (depende de configuração)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.limited</td>\n<td>boolean</td>\n<td>Define se a quantidade de atendimentos e correspondências é ou não limitada</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.messagesLimit</td>\n<td>integer</td>\n<td>Define o limite de atendimentos e correspondências. Definir como 0 para não adicionar cotas ao contrato</td>\n<td>Sim, se serviceCorrespondenceQuotas.limited for <code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.priceAdditionalMessage</td>\n<td>decimal</td>\n<td>Define o valor adicional por atendimentos e correspondências, caso seja ultrapassado</td>\n<td>Sim, se serviceCorrespondenceQuotas.limited for <code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels</td>\n<td>array of objects</td>\n<td>Lista de modelos de reserva (Estações de Trabalho do Ambiente Compartilhado)</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>bookingModels[].id</td>\n<td>integer</td>\n<td>ID do modelo de reserva</td>\n<td>Sim, se um objeto dentro de bookingModels for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].stations</td>\n<td>integer</td>\n<td>Quantidade de estações</td>\n<td>Sim, se um objeto dentro de bookingModels for definido</td>\n<td>-</td>\n</tr>\n<tr>\n<td>privateSpaceIds</td>\n<td>array</td>\n<td>Lista de IDs de espaços privativos associados ao plano</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>hourQuotas</td>\n<td>array of objects</td>\n<td>Lista de cotas de horas para uso de salas ou ambientes compartilhados</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>hourQuotas[].hours</td>\n<td>integer</td>\n<td>Quantidade de horas inclusas</td>\n<td>Sim, se existir um objeto de hourQuotas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].periodicity</td>\n<td>string</td>\n<td>Frequência de disponibilidade de cota, podendo ser: <strong>daily</strong>, <strong>weekly</strong> ou <strong>monthly</strong></td>\n<td>Sim, se existir um objeto de hourQuotas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].spaceId</td>\n<td>integer</td>\n<td>ID do espaço</td>\n<td>Sim, se existir um objeto de hourQuotas e groupId for vazio</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourQuotas[].groupId</td>\n<td>integer</td>\n<td>ID do grupo</td>\n<td>Sim, se existir um objeto de hourQuotas e spaceId for vazio</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#4580c54b-81ec-4a20-9d46-16584fd3f0a6\">GET /plan/:id</a></p>\n","urlObject":{"path":["plan",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"500","key":"id"}]}},"response":[{"id":"e2a62ade-41cb-4abe-841d-3f386f0d03bf","name":"(200) Success - Change only payment periodicity","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 159.99\n        },\n        {\n            \"periodicity\": \"bimonthly\",\n            \"amount\": 299.99\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"23"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 23 Oct 2025 13:23:20 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"fidelityMonths\": 12,\n    \"refundValue\": 5.25,\n    \"membershipFee\": 9.99,\n    \"name\": \"[Prime] Gestão de Postagens\",\n    \"description\": \"Fazemos a gest&atilde;o de postagens nas plataformas:&nbsp;\\n\\n\\nWhatsApp Status\\nInstagram\\nFacebook\\nTiktok\\nYoutube Shorts\\nLinkedin\\n\",\n    \"productQuotas\": [\n        {\n            \"id\": 58,\n            \"productId\": 2153,\n            \"quota\": 2\n        }\n    ],\n    \"paymentPeriodicities\": {\n        \"monthly\": 159.99,\n        \"bimonthly\": 299.99\n    },\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"planId\": 23,\n    \"isActive\": true,\n    \"createdAt\": \"2025-08-09T12:12:29-03:00\",\n    \"updatedAt\": \"2025-10-23T10:21:29-03:00\",\n    \"isCustom\": false,\n    \"isOnlineContractingEnabled\": false\n}"},{"id":"1438788c-9608-4517-91be-87d957715769","name":"(200) Success - Conexa Recorrência/Contabilidade","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"[Prime] Gestão de Postagens\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>Fazemos a gest&atilde;o de postagens nas plataformas:&nbsp;</p>\\n\\n<ul>\\n<li>WhatsApp Status</li>\\n<li>Instagram</li>\\n<li>Facebook</li>\\n<li>Tiktok</li>\\n<li>Youtube Shorts</li>\\n<li>Linkedin</li>\\n</ul>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 159.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2153\n        }\n    ],\n    // \"dueDay\": 5,\n    \"nfseDescription\": \"Lorem ipsum dolor\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"23"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 23 Oct 2025 13:21:29 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"96"},{"key":"X-Rate-Limit-Reset","value":"21"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"fidelityMonths\": 12,\n    \"refundValue\": 5.25,\n    \"membershipFee\": 9.99,\n    \"name\": \"[Prime] Gestão de Postagens\",\n    \"description\": \"Fazemos a gest&atilde;o de postagens nas plataformas:&nbsp;\\n\\n\\nWhatsApp Status\\nInstagram\\nFacebook\\nTiktok\\nYoutube Shorts\\nLinkedin\\n\",\n    \"productQuotas\": [\n        {\n            \"id\": 58,\n            \"productId\": 2153,\n            \"quota\": 2\n        }\n    ],\n    \"paymentPeriodicities\": {\n        \"monthly\": 159.99\n    },\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"planId\": 23,\n    \"isActive\": true,\n    \"createdAt\": \"2025-08-09T12:12:29-03:00\",\n    \"updatedAt\": \"2025-08-09T12:28:09-03:00\",\n    \"isCustom\": false,\n    \"isOnlineContractingEnabled\": false\n}"},{"id":"276417e8-7a93-4f85-a423-cae62716731d","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"4AllDevs Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>4AllDevs Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2521\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n     \"privateSpaceIds\": [\n        2128\n    ],\n    \"hourQuotas\": [\n        {\n            \"hours\": 4,\n            \"periodicity\": \"monthly\",\n            \"groupId\": 8\n        },\n        {\n            \"hours\": 2,\n            \"periodicity\": \"monthly\",\n            \"spaceId\": \t4145\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"500"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 23 Oct 2025 12:15:55 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"25"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"fidelityMonths\": 12,\n    \"refundValue\": 5.25,\n    \"membershipFee\": 9.99,\n    \"name\": \"4AllDevs Global\",\n    \"description\": \"4AllDevs Global.\\nContrate j&aacute;!\",\n    \"productQuotas\": [\n        {\n            \"id\": 42,\n            \"productId\": 2521,\n            \"quota\": 2\n        }\n    ],\n    \"paymentPeriodicities\": {\n        \"monthly\": 99.99\n    },\n    \"hourQuotas\": [\n        {\n            \"id\": 80,\n            \"name\": \"Horas do Plano Contratado (4h)\",\n            \"spaceId\": null,\n            \"groupId\": 8,\n            \"quantity\": 4,\n            \"validityType\": \"Monthly\",\n            \"createdAt\": null,\n            \"updatedAt\": \"2025-10-23T09:15:54-03:00\"\n        },\n        {\n            \"id\": 81,\n            \"name\": \"Horas do Plano Contratado (2h)\",\n            \"spaceId\": 4145,\n            \"groupId\": null,\n            \"quantity\": 2,\n            \"validityType\": \"Monthly\",\n            \"createdAt\": null,\n            \"updatedAt\": \"2025-10-23T09:15:54-03:00\"\n        }\n    ],\n    \"discountOnRooms\": 25,\n    \"privateSpaceIds\": [\n        2128\n    ],\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"name\": \"DEV Full Time\",\n            \"shareSpaceId\": 2582,\n            \"frequency\": \"Weekly\",\n            \"isActive\": true,\n            \"startHour\": \"07:00\",\n            \"endHour\": \"19:00\",\n            \"resume\": \"Toda semana, segunda-feira, terça-feira, quarta-feira, quinta-feira, sexta-feira, sábado das 07:00 às 19:00\",\n            \"daysOfWeek\": [\n                \"Monday\",\n                \"Tuesday\",\n                \"Wednesday\",\n                \"Thursday\",\n                \"Friday\",\n                \"Saturday\"\n            ],\n            \"monthlyType\": null,\n            \"createdAt\": \"2020-03-03T11:14:53-03:00\",\n            \"updatedAt\": \"2020-03-03T11:14:53-03:00\"\n        }\n    ],\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.5\n    },\n    \"planId\": 500,\n    \"isActive\": true,\n    \"createdAt\": \"2025-07-03T09:20:07-03:00\",\n    \"updatedAt\": \"2025-09-18T11:51:58-03:00\",\n    \"isCustom\": false,\n    \"isOnlineContractingEnabled\": false\n}"},{"id":"45980dff-6138-4383-9431-001c24e5d610","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"4AllDevs Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"description\": \"<p>4AllDevs Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            // \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2521\n        }\n    ],\n    // \"dueDay\": 5,\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n     \"privateSpaceIds\": [\n        2128\n    ],\n    \"hourQuotas\": [\n        {\n            \"hours\": 4,\n            \"periodicity\": \"monthly\",\n            \"groupId\": 8\n        },\n        {\n            \"hours\": 2,\n            \"periodicity\": \"monthly\",\n            \"spaceId\": \t4145\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"500"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 23 Oct 2025 12:21:14 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"47"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"paymentPeriodicities.amount\",\n            \"messages\": [\n                \"Amount cannot be blank\"\n            ]\n        }\n    ]\n}"},{"id":"0e639c0b-3e4c-4162-955d-ccf1abf61279","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"name\": \"Gold Global\",\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 1,\n    \"dueDay\": 5, // verificar se é condicionado ao F.A.\n    \"description\": \"<p>Gold Global.</p>\\n<p>Contrate j&aacute;!</p>\",\n    \"paymentPeriodicities\": [\n        {\n            \"periodicity\": \"monthly\",\n            \"amount\": 99.99\n        }\n    ],\n    \"membershipFee\": 9.99,\n    \"refundValue\": 5.25,\n    \"fidelityMonths\": 12,\n    \"productQuotas\": [\n        {\n            \"quantity\": 2,\n            \"productId\": 2521\n        }\n    ],\n    \"nfseDescription\": \"Lorem ipsum dolor\",\n    \"receiptDescription\": \"Lorem ipsum dolor sit amet\",\n    \"discountOnRooms\": 25,\n    \"discountOnWorkstation\": 50,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 1.50\n    },\n    \"bookingModels\": [\n        {\n            \"id\": 9,\n            \"stations\": 1\n        }\n    ],\n     \"privateSpaceIds\": [\n        2128\n    ],\n    \"hourQuotas\": [\n        {\n            \"hours\": 4,\n            \"periodicity\": \"monthly\",\n            \"groupId\": 8\n        },\n        {\n            \"hours\": 2,\n            \"periodicity\": \"monthly\",\n            \"spaceId\": \t4145\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"500"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 23 Oct 2025 12:10:02 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PLAN_15\",\n            \"message\": \"The due day can only be updated for the \\\"Cliente Avulso\\\" plan.\"\n        }\n    ]\n}"}],"_postman_id":"d14d1759-6164-4852-af20-7aa377b562f1"},{"name":"/plan/:id","id":"2e94f059-b5c0-40cf-8d6b-bfe6c4cb8aaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","description":"<p>Exclusão de um plano no Conexa.</p>\n","urlObject":{"path":["plan",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"502","key":"id"}]}},"response":[{"id":"9a4e1ea7-d5c7-41fb-9487-676029611529","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"502"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sat, 19 Jul 2025 22:57:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"96"},{"key":"X-Rate-Limit-Reset","value":"28"}],"cookie":[],"responseTime":null,"body":null},{"id":"f456ed07-3ff3-4f3f-b88c-8ed5aa8204c4","name":"(404) Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"5021"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sat, 19 Jul 2025 22:59:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Plan does not exist or you have no permission to access it\"\n}"},{"id":"1fadf9a4-271c-4fd3-b900-3defde529b35","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plan/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plan",":id"],"variable":[{"key":"id","value":"500"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sat, 19 Jul 2025 22:29:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PLAN_08\",\n            \"message\": \"Unable to delete this plan. There are contracts linked to it, or it is the “Cliente Avulso” plan, which cannot be removed.\"\n        }\n    ]\n}"}],"_postman_id":"2e94f059-b5c0-40cf-8d6b-bfe6c4cb8aaf"},{"name":"/plans","id":"ada37224-092b-4da1-b88d-1fe6947ec526","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plans?limit=10","description":"<p>Listagem paginada de Planos.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Planos contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#4580c54b-81ec-4a20-9d46-16584fd3f0a6\">GET /plan/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["plans"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos planos que desejamos obter</p>\n","type":"text/plain"},"key":"id[]","value":"465"},{"disabled":true,"description":{"content":"<p>IDs das unidades as quais os planos estão associados</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>Nome do plano que estamos buscando</p>\n","type":"text/plain"},"key":"name","value":"Plano Alpha"},{"disabled":true,"description":{"content":"<p>Indica se os planos buscados estão ativos ou não</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"disabled":true,"description":{"content":"<p>Se os planos devem ter a contratação online ativa</p>\n","type":"text/plain"},"key":"isOnlineContractingEnabled","value":"1"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca\nRecomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"ac96dcd3-de7d-4965-a2f5-96411adb8e29","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plans?limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plans"],"query":[{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jun 2024 23:28:36 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"3113"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 1,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"bri\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 345.43\n            },\n            \"hourQuotas\": null,\n            \"discountOnRooms\": 0,\n            \"privateSpaceIds\": null,\n            \"bookingModels\": null,\n            \"discountOnWorkstation\": null,\n            \"isSmsEnabled\": false,\n            \"nfseDescription\": null,\n            \"receiptDescription\": null,\n            \"serviceCorrespondenceQuotas\": null,\n            \"planId\": 465,\n            \"isActive\": true,\n            \"createdAt\": \"2022-03-28T13:25:01-03:00\",\n            \"updatedAt\": \"2022-03-28T13:25:01-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": true\n        },\n        {\n            \"companyId\": 5,\n            \"serviceCategoryId\": 9,\n            \"costCenterId\": 4,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 100,\n            \"membershipFee\": 0,\n            \"name\": \"c1\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"hourQuotas\": null,\n            \"discountOnRooms\": 0,\n            \"privateSpaceIds\": null,\n            \"bookingModels\": null,\n            \"discountOnWorkstation\": 0,\n            \"isSmsEnabled\": false,\n            \"receiptDescription\": null,\n            \"serviceCorrespondenceQuotas\": null,\n            \"planId\": 385,\n            \"isActive\": true,\n            \"createdAt\": \"2019-10-08T17:39:46-03:00\",\n            \"updatedAt\": \"2019-10-08T17:39:46-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        },\n        {\n            \"companyId\": 5,\n            \"serviceCategoryId\": 9,\n            \"costCenterId\": 4,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 100,\n            \"membershipFee\": 0,\n            \"name\": \"c2\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"hourQuotas\": null,\n            \"discountOnRooms\": 0,\n            \"privateSpaceIds\": null,\n            \"bookingModels\": null,\n            \"discountOnWorkstation\": 0,\n            \"isSmsEnabled\": false,\n            \"receiptDescription\": null,\n            \"serviceCorrespondenceQuotas\": null,\n            \"planId\": 386,\n            \"isActive\": true,\n            \"createdAt\": \"2019-10-08T17:40:10-03:00\",\n            \"updatedAt\": \"2019-10-08T17:40:10-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        },\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 1,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"Cliente Avulso\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"hourQuotas\": [\n                {\n                    \"id\": 25,\n                    \"name\": \"Horas do Plano Contratado (10h)\",\n                    \"spaceId\": null,\n                    \"groupId\": 1,\n                    \"quantity\": 10,\n                    \"validityType\": \"Monthly\",\n                    \"createdAt\": \"2018-12-05T20:16:40-02:00\",\n                    \"updatedAt\": \"2018-12-05T20:16:40-02:00\"\n                }\n            ],\n            \"discountOnRooms\": 10,\n            \"privateSpaceIds\": null,\n            \"bookingModels\": null,\n            \"discountOnWorkstation\": 100,\n            \"isSmsEnabled\": false,\n            \"nfseDescription\": null,\n            \"receiptDescription\": null,\n            \"serviceCorrespondenceQuotas\": null,\n            \"planId\": 10,\n            \"isActive\": true,\n            \"createdAt\": \"2015-08-22T14:34:51-03:00\",\n            \"updatedAt\": \"2022-02-10T18:54:33-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        },\n        {\n            \"companyId\": 5,\n            \"serviceCategoryId\": 1,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"Cliente Avulso\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"hourQuotas\": null,\n            \"discountOnRooms\": 100,\n            \"privateSpaceIds\": null,\n            \"bookingModels\": null,\n            \"discountOnWorkstation\": null,\n            \"isSmsEnabled\": false,\n            \"receiptDescription\": null,\n            \"serviceCorrespondenceQuotas\": null,\n            \"planId\": 258,\n            \"isActive\": true,\n            \"createdAt\": \"2015-08-22T14:34:51-03:00\",\n            \"updatedAt\": \"2022-05-23T12:50:10-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"6e20bc11-deb6-419c-ad13-979c9116ce72","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plans?limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plans"],"query":[{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jun 2024 23:19:59 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"2786"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 1,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 24,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"Aluguel Residencial - Apartamento/ Casa/Sobrado\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"planId\": 44,\n            \"isActive\": true,\n            \"createdAt\": \"2022-07-14T18:30:34-03:00\",\n            \"updatedAt\": \"2023-08-15T16:26:04-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        },\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 40,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"App paraControle de Visita e Vendas WEBGR\",\n            \"description\": \"Com o Aplicativo de Controle de Visita Técnica e Comercial você acompanha Online as visitas de seus promotores, técnicos, consultores e representantes. Registre as ocorrências no relatório de visita, adicionando fotos dos produtos, gôndolas, expositores e equipamentos, coletando assinatura do cliente ou emitindo pedido de vendas.\",\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 350\n            },\n            \"planId\": 108,\n            \"isActive\": true,\n            \"createdAt\": \"2024-01-25T11:48:06-03:00\",\n            \"updatedAt\": \"2024-01-25T11:48:06-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": true\n        },\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 40,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 600,\n            \"name\": \"App paraControle de Visita e Vendas WEBGR (Com taxa de adesão)\",\n            \"description\": \"Com o Aplicativo de Controle de Visita Técnica e Comercial você acompanha Online as visitas de seus promotores, técnicos, consultores e representantes. Registre as ocorrências no relatório de visita, adicionando fotos dos produtos, gôndolas, expositores e equipamentos, coletando assinatura do cliente ou emitindo pedido de vendas.\",\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 350\n            },\n            \"planId\": 107,\n            \"isActive\": true,\n            \"createdAt\": \"2024-01-25T11:47:45-03:00\",\n            \"updatedAt\": \"2024-01-25T11:48:24-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": true\n        },\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 11,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"Assessoria Contábil\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"planId\": 87,\n            \"isActive\": true,\n            \"createdAt\": \"2023-08-15T16:19:18-03:00\",\n            \"updatedAt\": \"2023-08-15T16:19:18-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        },\n        {\n            \"companyId\": 3,\n            \"serviceCategoryId\": 1,\n            \"costCenterId\": 1,\n            \"fidelityMonths\": 0,\n            \"refundValue\": 0,\n            \"membershipFee\": 0,\n            \"name\": \"Cliente Avulso\",\n            \"description\": null,\n            \"productQuotas\": null,\n            \"paymentPeriodicities\": {\n                \"monthly\": 0\n            },\n            \"planId\": 10,\n            \"isActive\": true,\n            \"createdAt\": \"2015-08-22T14:34:51-03:00\",\n            \"updatedAt\": \"2017-11-16T17:06:23-03:00\",\n            \"isCustom\": false,\n            \"isOnlineContractingEnabled\": false\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"4d4a01f1-8a8e-447a-892b-2c1bc0f39aae","name":"(400) - Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/plans?companyId[]=6","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["plans"],"query":[{"key":"companyId[]","value":"6","description":"IDs das unidades as quais os planos estão associados"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 08 Jun 2024 20:25:39 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"47"},{"key":"Content-Length","value":"293"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"This company is disabled, or taison doesn't have permission to access it. The company must be enabled, or taison must have access to perform this action. Verify the company's status and access, then try again\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"ada37224-092b-4da1-b88d-1fe6947ec526"}],"id":"3caa1a64-77e7-4e58-985a-152b45c81f4a","description":"<p>Endpoints que correspondem a Plano no sistema Conexa.</p>\n","_postman_id":"3caa1a64-77e7-4e58-985a-152b45c81f4a","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Contract","item":[{"name":"/contract","id":"7e89ac4d-27b6-4717-8c8d-43b2ce865bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 12,\n    \"customerId\": 42,\n    \"paymentFrequency\": \"monthly\",\n    \"startDate\": \"2024-10-01\",\n    \"endDate\": \"2025-09-30\",\n    \"dueDay\": 11,\n    \"fidelityDate\": \"2024-07-01\",\n    \"amount\": 1500,\n    \"discountValue\": 100,\n    \"sellerId\": 531,\n    \"contractSummary\": \"Contrato de locação de espaço\",\n    \"notes\": \"O cliente realizou o pagamento antecipadamente\",\n    \"membershipFee\": 59.99,\n    \"generateSales\": \"firstOccurrence\",\n    \"prorataType\": \"startOfMonth\",\n    \"nfseDescription\": \"Lorem ipsun dolor\",\n    \"refund\": {\n        \"amount\": 59.99,\n        \"dateLimit\": \"2024-04-30\",\n        \"isToGenerateRefundBillet\": false\n    },\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"quantity\":3,\n            \"amount\": 200,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        },\n        {\n            \"productOrServiceId\": 2521,\n            \"quantity\": 2,\n            \"amount\": 250,\n            \"notes\": \"Lorem ipsun dolor 2\"\n        }\n    ],\n    \"discountOnRooms\": 5,\n    \"discountOnWorkstation\": 10,\n    \"privateSpaceId\": 2590,\n    \"isSmsEnabled\": true,\n    \"calculateProrataHourPackage\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 61,\n        \"priceAdditionalMessage\": 101\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract","description":"<p>Cadastro de um contrato para um Cliente no sistema Conexa.</p>\n<h4 id=\"body\">Body:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>planId</td>\n<td>integer</td>\n<td>ID do plano</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentFrequency</td>\n<td>integer</td>\n<td>Periodicidade do pagamendo do contrato conforme o plano, podendo ser: <strong>monthly</strong>, <strong>bimonthly</strong>, <strong>quarterly</strong>, <strong>semester</strong> e <strong>yearly</strong></td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Data de início. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td>Data de encerramento. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>firstDueDate</td>\n<td>string</td>\n<td>Determina a data de vencimento da primeira parcela. Formato <strong>yyyy-mm-dd</strong></td>\n<td>Sim (caso o cliente utilize faturamento automático)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dueDay</td>\n<td>integer</td>\n<td>Dia de vencimento do contrato</td>\n<td>Sim (caso seja o primeiro contrato do cliente, ou caso o cliente utilize faturamento automático)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fidelityDate</td>\n<td>string</td>\n<td>Data de fidelidade. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor do contrato¹</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>discountValue</td>\n<td>decimal</td>\n<td>Valor do desconto aplicado ao valor do contrato (em reais)</td>\n<td>Não (0 por padrão)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário)</td>\n<td>Não (deve ser enviado em requisições que a autenticação é realizada pelo API Token)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>contractSummary</td>\n<td>string</td>\n<td>Descrição resumida do contrato</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>membershipFee</td>\n<td>decimal</td>\n<td>Taxa de adesão do contrato</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>generateSales</td>\n<td>string</td>\n<td>Define a partir de quando deve gerar as vendas, podendo ser: <strong>firstOccurrence</strong>, <strong>currentOccurrence, nextOccurrence</strong> ou <strong>firstOccurrenceSettleRetroactive</strong></td>\n<td>Não (<strong>firstOccurrence</strong> por padrão)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>expenseSettlement</td>\n<td>object</td>\n<td>Configura informações necessárias para quitar as cobranças retroativas, caso generateSales for <strong>firstOccurrenceSettleRetroactive</strong>.</td>\n<td>Somente se generateSales for <strong>firstOccurrenceSettleRetroactive</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>expenseSettlement.receivingMethodId</td>\n<td>integer</td>\n<td>ID do meio de recebimento a ser utilizado para quitar as vendas retroativas</td>\n<td>Somente se generateSales for <strong>firstOccurrenceSettleRetroactive</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>expenseSettlement.accountId</td>\n<td>integer</td>\n<td>ID da conta bancária a ser utilizada para quitar as vendas retroativas</td>\n<td>Somente se generateSales for <strong>firstOccurrenceSettleRetroactive</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>prorataType</td>\n<td>string</td>\n<td>Define a forma como a prorata dese ser cálculada. Podendo ser: <strong>startOfMonth</strong>, <strong>notCalculate</strong> ou <strong>perDueDate</strong> (está última depende da configuração do sistema)</td>\n<td>Não (configuração do sistema por padrão)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nfseDescription</td>\n<td>string</td>\n<td>Descrição utilizada na NFSe</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>refund</td>\n<td>object / null</td>\n<td>Configura os dados do depósito retornável. Informe <strong>null</strong> para não gerar, mesmo que esteja configurado no plano</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>refund.amount</td>\n<td>decimal</td>\n<td>Valor do depósito retornável</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>refund.dateLimit</td>\n<td>string</td>\n<td>Data de vencimento do depósito retornável</td>\n<td>Sim, se refund.amount for preenchido com um valor diferente de zero</td>\n<td>-</td>\n</tr>\n<tr>\n<td>refund.isToGenerateRefundBillet</td>\n<td>boolean</td>\n<td>Define se deve ser gerado um boleto do depósito retornável</td>\n<td>Sim, se refund.amount for preenchido com um valor diferente de zero</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices</td>\n<td>array of objects</td>\n<td>Define os serviços complementares que serão adicionados ao contrato</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>complementaryServices[].productOrServiceId</td>\n<td>integer</td>\n<td>Id do produto ou serviço</td>\n<td>Sim</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].quantity</td>\n<td>integer</td>\n<td>Quantidade do produto ou serviço</td>\n<td>Sim</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].amount</td>\n<td>decimal</td>\n<td>Valor final do serviço</td>\n<td>Não. Informe caso queira um valor personalizado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>discountOnRooms</td>\n<td>decimal</td>\n<td>Desconto (%) aplicado às reservas de salas realizadas pelo contratante</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnWorkstation</td>\n<td>decimal</td>\n<td>Desconto (%) aplicado às reservas de ambientes compartilhados realizadas pelo contratante</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>privateSpaceId</td>\n<td>integer</td>\n<td>ID do Escritório Privativo vinculado ao Contrato</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isSmsEnabled</td>\n<td>boolean</td>\n<td>Indica se o envio de recados via SMS está habilitado no contrato</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>calculateProrataHourPackage</td>\n<td>boolean</td>\n<td>Define se deve ser realizado o cálculo do prorata nos pacotes de horas</td>\n<td>Não (false por padrão)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondeceQuotas</td>\n<td>object</td>\n<td>Configura as cotas de Atendimento e Correpondência</td>\n<td>Não</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondeceQuotas.limited</td>\n<td>boolean</td>\n<td>Define se a quantidade de atendimentos ou correspondências é ou não limitada</td>\n<td>Não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondeceQuotas.messagesLimit</td>\n<td>integer</td>\n<td>Define o limite de atendimentos ou correspondências. Definir como 0 para não adicionar cotas ao contrato</td>\n<td>Sim, se serviceCorrespondeceQuotas.limited for <em>true</em></td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondeceQuotas.priceAdditionalMessage</td>\n<td>decimal</td>\n<td>Define o valor a ser pago por atendimentos ou correspondências caso o limite seja ultrapassado</td>\n<td>Sim, se serviceCorrespondeceQuotas.limited for <em>true</em></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Se o campo <code>complementaryServices</code> for utilizado, o valor final do contrato será a soma do campo <code>amount</code> com os campos <code>complementaryServices[].amount</code> de cada objeto. Na requisição de exemplo <strong>(201) Success - Cadastro de contrato com serviços complementares</strong> de <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#7e89ac4d-27b6-4717-8c8d-43b2ce865bbb\">POST /contract</a>, temos: R$ 1.500,00 (valor do contrato) + R$ 200,00 (produto/serviço complementar 1) + R$ 250,00 (produto/serviço complementar 2), totalizando: R$ 1.950,00 sendo este o valor final do contrato!</p>\n<h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do contrato criado</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["contract"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"c8be984e-f102-4962-85a3-d16dc8a4090b","name":"(201) Success - Conexa Recorrência: cadastro simples do primeiro contrato","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 13,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 22:52:16 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2\n}"},{"id":"c730b3a4-3b03-4ee1-ac34-9d1c7cab5c0c","name":"(201) Success - Conexa Recorrência: cadastro simples","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 11,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"paymentFrequency\": \"bimonthly\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 22:55:16 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4\n}"},{"id":"d67fb530-d86e-4849-87ea-f7f38f025089","name":"(201) Success - Conexa Recorrência","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 13,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"endDate\": \"2024-06-02\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5,\n    \"fidelityDate\": \"2024-01-01\",\n    \"amount\": 1500,\n    \"discountValue\": 100,\n    \"contractSummary\": \"Contrato de locação de espaço\",\n    \"notes\": \"O cliente realizou o pagamento antecipadamente\",\n    \"membershipFee\": 59.99,\n    \"generateSales\": \"nextOccurrence\",\n    \"prorataType\": \"notCalculate\",\n    \"nfseDescription\": \"Lorem ipsun dolor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 23:14:49 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5\n}"},{"id":"2147d80a-5d86-4f86-bad1-7e957df0da58","name":"(201) Success - Conexa Coworking","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 442,\n    \"customerId\": 609,\n    \"startDate\": \"2024-03-11\",\n    \"endDate\": \"2024-10-31\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5,\n    \"fidelityDate\": \"2024-07-01\",\n    \"amount\": 1500,\n    \"discountValue\": 100,\n    \"contractSummary\": \"Contrato de locação de espaço\",\n    \"notes\": \"O cliente realizou o pagamento antecipadamente\",\n    \"membershipFee\": 59.99,\n    \"generateSales\": \"firstOccurrence\",\n    \"prorataType\": \"startOfMonth\",\n    \"nfseDescription\": \"Lorem ipsun dolor\",\n    \"discountOnRooms\": 5,\n    \"discountOnWorkstation\": 10,\n    \"privateSpaceId\": 2590,\n    \"isSmsEnabled\": true,\n    \"calculateProrataHourPackage\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 61,\n        \"priceAdditionalMessage\": 101\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:08:30 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1271\n}"},{"id":"11710760-41f2-4b44-8148-3acb574c511d","name":"(201) Success - Cadastro de contrato informando um vendedor específico","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 248,\n    \"customerId\": 31,\n    \"sellerId\":531,\n    \"startDate\": \"2024-06-01\",\n    \"paymentFrequency\": \"monthly\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Sep 2024 01:45:56 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"2"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1326\n}"},{"id":"70519117-e8ec-43c0-ad63-a8592157d789","name":"(201) Success - Cadastro de contrato informando serviços/produtos complementares","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 12,\n    \"customerId\": 42,\n    \"startDate\": \"2024-10-01\",\n    \"endDate\": \"2025-09-30\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 11,\n    \"amount\": 1500,\n     \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"quantity\":3,\n            \"amount\": 200,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        },\n        {\n            \"productOrServiceId\": 2124,\n            \"quantity\": 2,\n            \"amount\": 250,\n            \"notes\": \"Lorem ipsun dolor 2\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 29 Oct 2024 18:47:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 29\n}"},{"id":"9dff2869-ae41-4a94-a0f0-0ea7ae1c9ef4","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 13,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"endDate\": \"2024-06-02\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5,\n    \"amount\": 1500,\n    \"discountValue\": 100,\n    \"contractSummary\": \"Contrato de locação de espaço\",\n    \"notes\": \"O cliente realizou o pagamento antecipadamente\",\n    \"membershipFee\": 59.99,\n    \"generateSales\": \"nextOccurrence\",\n    \"prorataType\": \"notCalculate\",\n    \"nfseDescription\": \"Lorem ipsun dolor\",\n    \"discountOnRooms\": 2,\n    \"discountOnWorkstation\": 1,\n    \"isSmsEnabled\": false,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 100,\n        \"priceAdditionalMessage\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 23:18:24 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"873"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"prorataType\",\n            \"messages\": [\n                \"Failed to set, \\\"prorataType\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"nfseDescription\",\n            \"messages\": [\n                \"Failed to set, \\\"nfseDescription\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"discountOnRooms\",\n            \"messages\": [\n                \"Failed to set, \\\"discountOnRooms\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"discountOnWorkstation\",\n            \"messages\": [\n                \"Failed to set, \\\"discountOnWorkstation\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"isSmsEnabled\",\n            \"messages\": [\n                \"Failed to set, \\\"isSmsEnabled\\\" field does not exist or is not available in the company\"\n            ]\n        },\n        {\n            \"field\": \"serviceCorrespondenceQuotas\",\n            \"messages\": [\n                \"Failed to set, \\\"serviceCorrespondenceQuotas\\\" field does not exist or is not available in the company\"\n            ]\n        }\n    ]\n}"},{"id":"10b193ec-dcd1-4481-bc81-3192e0b41c6f","name":"(400) Field validation error - ID do produto/serviço informado não é válido","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 12,\n    \"customerId\": 42,\n    \"startDate\": \"2024-10-01\",\n    \"endDate\": \"2025-09-30\",\n    \"paymentFrequency\": \"monthly\",\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"quantity\":3,\n            \"amount\": 200,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        },\n        {\n            \"productOrServiceId\": 21243,\n            \"quantity\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 29 Oct 2024 18:50:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"49"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"complementaryServices.productOrServiceId\",\n            \"messages\": [\n                \"The product or service 21243 is not valid for complementary service\"\n            ]\n        }\n    ]\n}"},{"id":"e301c007-08e4-49c3-a6b5-2daa82d98b7c","name":"(403) Not authorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 13,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"endDate\": \"2024-06-02\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5,\n    \"amount\": 1500,\n    \"discountValue\": 100,\n    \"contractSummary\": \"Contrato de locação de espaço\",\n    \"notes\": \"O cliente realizou o pagamento antecipadamente\",\n    \"membershipFee\": 59.99,\n    \"generateSales\": \"nextOccurrence\",\n    \"prorataType\": \"notCalculate\",\n    \"nfseDescription\": \"Lorem ipsun dolor\",\n    \"discountOnRooms\": 2,\n    \"discountOnWorkstation\": 1,\n    \"isSmsEnabled\": false,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 100,\n        \"priceAdditionalMessage\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Apr 2024 10:58:40 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"49ba0144-0f1f-4edf-93b3-bb4c8b1d38de","name":"(404) Not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 10,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"endDate\": \"2024-06-02\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5,\n    \"amount\": 1500,\n    \"discountValue\": 100,\n    \"contractSummary\": \"Contrato de locação de espaço\",\n    \"notes\": \"O cliente realizou o pagamento antecipadamente\",\n    \"membershipFee\": 59.99,\n    \"generateSales\": \"nextOccurrence\",\n    \"prorataType\": \"notCalculate\",\n    \"nfseDescription\": \"Lorem ipsun dolor\",\n    \"discountOnRooms\": 2,\n    \"discountOnWorkstation\": 1,\n    \"isSmsEnabled\": false,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 100,\n        \"priceAdditionalMessage\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Apr 2024 11:03:18 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"78"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Plan does not exist or you have no permission to access it.\"\n}"},{"id":"ef3e0023-a710-4306-b27f-c1b438621abf","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"planId\": 13,\n    \"customerId\": 31,\n    \"startDate\": \"2023-06-01\",\n    \"endDate\": \"2024-06-02\",\n    \"paymentFrequency\": \"monthly\",\n    \"dueDay\": 5\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 23:20:18 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"192"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CONTRACT_RECURRING_SALE_10\",\n            \"message\": \"The due day can not be informed for customers who already have a contract\"\n        }\n    ]\n}"}],"_postman_id":"7e89ac4d-27b6-4717-8c8d-43b2ce865bbb"},{"name":"/contract/end/:id","id":"8d3383fe-694b-43de-a5ed-502d35f4fbe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-05-01\",\n    \"reasonId\": 2,\n    \"unlinkCustomer\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/end/:id","description":"<p>Encerra um contrato ativo ou atualiza a data de encerramento de um contrato no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Data de encerramento do contrato. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>reasonId</td>\n<td>integer</td>\n<td>ID relacionado ao motivo do encerramento¹</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>unlinkCustomer</td>\n<td>boolean</td>\n<td>Desvincula o cliente de <strong>DDRs</strong>, <strong>Caixas Postais</strong>, <strong>Ramais</strong> e <strong>Vendas Recorrentes²</strong>. Para que o cliente possa ser desvinculado, a data informada deve ser anterior ou igual a atual e o cliente não deve possuir demais contratos ativos.</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Os IDs dos Motivos de Encerramento podem ser encontrados, dentro do sistema Conexa, em: <strong>Listagem de Contratos &gt; Outros Cadastros &gt; Motivo de Encerramento de Contrato</strong>.</p>\n<p><strong>² Todas as Vendas Recorrentes do cliente, mesmo sem vínculo com o contrato, serão encerradas para a data atual e suas vendas não faturadas serão canceladas.</strong></p>\n","urlObject":{"path":["contract","end",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"6","key":"id"}]}},"response":[{"id":"fe2e9593-5731-4e9c-a719-9b4900997f4a","name":"(204) Success","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-04-11\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract","end",":id"],"variable":[{"key":"id","value":"6"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 22 Apr 2024 19:18:50 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"31203067-d45a-493f-8603-881e1650633d","name":"(204) Success - Todos os campos","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-05-01\",\n    \"reasonId\": 1,\n    \"unlinkCustomer\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract","end",":id"],"variable":[{"key":"id","value":"1161"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 20 May 2024 17:18:51 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"35abb453-2cf8-4f57-9539-5009b6edc842","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"01/05/2024\",\n    \"reasonId\": 1,\n    \"unlinkCustomer\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract","end",":id"],"variable":[{"key":"id","value":"1161"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 May 2024 17:29:46 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"109"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"date\",\n            \"messages\": [\n                \"The format of Date is invalid\"\n            ]\n        }\n    ]\n}"},{"id":"43a62896-1d03-4630-988a-a0b8511c3c8c","name":"(404) Not found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2020-04-11\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract","end",":id"],"variable":[{"key":"id","value":"11660"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 19:33:15 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Contract does not exist or you have no permission to access it.\"\n}"},{"id":"d5f05953-5fc3-4c1b-99ef-cb97e2f0d6ce","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2020-04-11\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract","end",":id"],"variable":[{"key":"id","value":"1166"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Apr 2024 19:31:31 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"240"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CONTRACT_RECURRING_SALE_23\",\n            \"message\": \"It was not possible to set a closing date before 2020-04-11, as there are already one or more sales invoiced on that day.\"\n        }\n    ]\n}"}],"_postman_id":"8d3383fe-694b-43de-a5ed-502d35f4fbe8"},{"name":"/contract/:id","id":"2a34344a-69ac-4915-8046-cb6aef5de849","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2023-02-12\",\n    \"dueDay\" : 3,\n    \"fidelityDate\": \"2024-06-02\",\n    \"contractSummary\": \"Contrato de Plus Horizon AA\",\n    \"amount\": 5000.50,\n    \"discountValue\": 1000,\n    \"notes\": \"O cliente tem condição especial nas cotas\",\n    \"lastAdjustmentDate\": \"2024-01-04\",\n    \"sellerId\": 532,\n    \"productQuotas\": [\n        {\n            \"quantity\": 10,\n            \"productId\": 2521\n        },\n        {\n            \"quantity\": 2,\n            \"productId\": 2154\n        }\n    ],\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"quantity\":3,\n            \"amount\": 280,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        }\n    ],\n    /*\"plan\": {\n        \"serviceCategoryId\": 9,\n        \"costCenterId\": 1,\n        \"nfseDescription\": \"Descrição Nfse 3\"\n    },*/\n    \"discountOnRooms\": 10,\n    \"discountOnWorkstation\": 5,\n    \"privateSpaceId\": 2151,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 5.99\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","description":"<p>Edição de um contrato no sistema Conexa.</p>\n<h4 id=\"body\">Body:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>startDate</td>\n<td>date</td>\n<td>Data de início do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dueDay</td>\n<td>integer</td>\n<td>Dia de vencimento (caso só exista um contrato ativo no cliente)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fidelityDate</td>\n<td>date</td>\n<td>Data de fidelidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>contractSummary</td>\n<td>string</td>\n<td>Descrição resumida do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>discountValue</td>\n<td>decimal</td>\n<td>Desconto de contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>lastAdjustmentDate</td>\n<td>date</td>\n<td>Último reajuste do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário). Deve ser enviado em requisições que a autenticação é realizada pelo API Token</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas</td>\n<td>array of objects</td>\n<td>Lista de cotas de serviços/itens</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas[].quantity</td>\n<td>integer</td>\n<td>Quantidade de cotas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas[].productId</td>\n<td>integer</td>\n<td>ID do serviço/item</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices</td>\n<td>array of objects</td>\n<td>Define os serviços complementares que serão adicionados ao contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>complementaryServices[].productOrServiceId</td>\n<td>integer</td>\n<td>Id do produto ou serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].quantity</td>\n<td>integer</td>\n<td>Quantidade do produto ou serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].amount</td>\n<td>decimal</td>\n<td>Valor final do serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>-</td>\n</tr>\n<tr>\n<td>plan</td>\n<td>object</td>\n<td>Plano (apenas para planos personalizados)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>plan.serviceCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>plan.costCenterId</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n<td>-</td>\n</tr>\n<tr>\n<td>plan.nfseDescription</td>\n<td>string</td>\n<td>Descrição do serviço na NFS-e</td>\n<td>-</td>\n</tr>\n<tr>\n<td>discountOnRooms</td>\n<td>decimal</td>\n<td>Descontos em salas</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnWorkstation</td>\n<td>decimal</td>\n<td>Descontos em ambientes compartilhados</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>privateSpaceId</td>\n<td>integer</td>\n<td>ID de um espaço privativo que será vinculado ao contrato</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isSmsEnabled</td>\n<td>boolean</td>\n<td>Habilitar envios de atendimento e correspondência por SMS</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas</td>\n<td>object</td>\n<td>Cotas de atendimento e correspondência</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.limited</td>\n<td>boolean</td>\n<td>Define se a quantidade de atendimentos ou correspondências é ou não limitada</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.messagesLimit</td>\n<td>integer</td>\n<td>Define o limite de atendimentos ou correspondências. Definir como 0 para não adicionar cotas ao contrato</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.priceAdditionalMessage</td>\n<td>decimal</td>\n<td>Define o valor a ser pago por atendimentos ou correspondências caso o limite seja ultrapassado</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#9bcf8e00-e5e4-4d23-88db-6a15281e9bce\">GET /contract/:id</a></p>\n","urlObject":{"path":["contract",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"29","key":"id"}]}},"response":[{"id":"b716fec0-6cb7-4974-9022-27b28ed4e77e","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    // \"startDate\": \"2023-02-12\",\n    // \"dueDay\" : 3,\n    // \"fidelityDate\": \"2024-06-02\",\n    // \"contractSummary\": \"Contrato de Plus Horizon AA\",\n    \"amount\": 500.50\n    // \"discountValue\": 1000,\n    // \"notes\": \"O cliente tem condição especial nas cotas\",\n    // \"lastAdjustmentDate\": \"2024-01-04\",\n    // \"productQuotas\": [\n    //     {\n    //         \"quantity\": 10,\n    //         \"productId\": 2521\n    //     },\n    //     {\n    //         \"quantity\": 2,\n    //         \"productId\": 2154\n    //     }\n    // ],\n    // // \"plan\": {\n    // //     \"serviceCategoryId\": 9,\n    // //     \"costCenterId\": 1,\n    // //     \"nfseDescription\": \"Descrição Nfse 3\"\n    // // },\n    // \"discountOnRooms\": 10,\n    // \"discountOnWorkstation\": 5,\n    // \"privateSpaceId\": 2151,\n    // \"isSmsEnabled\": true,\n    // \"serviceCorrespondenceQuotas\": {\n    //     \"limited\": true,\n    //     \"messagesLimit\": 10,\n    //     \"priceAdditionalMessage\": 5.99\n    // }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"376"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jun 2024 11:59:29 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"540"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"contractId\": 376,\n    \"productQuotas\": null,\n    \"createdAt\": \"2024-03-26T14:40:25-03:00\",\n    \"updatedAt\": \"2024-06-01T08:23:07-03:00\",\n    \"customerId\": 109,\n    \"paymentFrequency\": \"Monthly\",\n    \"sellerId\": 34,\n    \"endDate\": null,\n    \"endReasonId\": null,\n    \"planId\": 44,\n    \"hadProrata\": false,\n    \"lastContractualReadjustment\": null,\n    \"salesQuantity\": 6,\n    \"refundAmount\": 0,\n    \"costCenterId\": 1,\n    \"dateSalesGeneration\": \"2024-03-26\",\n    \"startDate\": \"2024-03-26\",\n    \"dueDay\": 1,\n    \"contractSummary\": \"Aluguel Residencial - Apartamento/ Casa/Sobrado Mensal\",\n    \"notes\": null,\n    \"amount\": 500.5,\n    \"fidelityDate\": \"2026-03-25\"\n}"},{"id":"ad362e79-c67c-460d-8847-4bba68f8b990","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    // \"startDate\": \"2024-05-12\",\n    // \"dueDay\" : 3,\n    // \"fidelityDate\": \"2024-06-02\",\n    \"contractSummary\": \"Contrato principal do cliente\",\n    \"amount\": 500,\n    // \"discountValue\": 1000,\n    \"notes\": \"O cliente tem condição especial nas cotas\",\n    // \"lastAdjustmentDate\": \"2024-01-04\",\n    // \"productQuotas\": [\n    //     {\n    //         \"quantity\": 10,\n    //         \"productId\": 2521\n    //     },\n    //     {\n    //         \"quantity\": 2,\n    //         \"productId\": 2154\n    //     }\n    // ],\n    // // \"plan\": {\n    // //     \"serviceCategoryId\": 9,\n    // //     \"costCenterId\": 1,\n    // //     \"nfseDescription\": \"Descrição Nfse 3\"\n    // // },\n    // \"discountOnRooms\": 10,\n    // \"discountOnWorkstation\": 5,\n    // \"privateSpaceId\": 2151,\n    // \"isSmsEnabled\": true,\n    // \"serviceCorrespondenceQuotas\": {\n    //     \"limited\": true,\n    //     \"messagesLimit\": 10,\n    //     \"priceAdditionalMessage\": 5.99\n    // }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"10506"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jun 2024 12:08:07 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"800"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"contractId\": 10506,\n    \"productQuotas\": null,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": false,\n        \"messagesLimit\": null,\n        \"priceAdditionalMessage\": null\n    },\n    \"createdAt\": \"2024-05-02T12:41:12-03:00\",\n    \"updatedAt\": \"2024-05-02T12:41:12-03:00\",\n    \"customerId\": 15002,\n    \"paymentFrequency\": \"Monthly\",\n    \"sellerId\": 486,\n    \"endDate\": \"2024-10-31\",\n    \"endReasonId\": null,\n    \"planId\": 601,\n    \"hadProrata\": false,\n    \"lastContractualReadjustment\": null,\n    \"hourPlanQuota\": null,\n    \"bookingModels\": null,\n    \"salesQuantity\": 8,\n    \"refundAmount\": 0,\n    \"costCenterId\": 1,\n    \"dateSalesGeneration\": \"2024-05-02\",\n    \"startDate\": \"2024-03-01\",\n    \"dueDay\": 15,\n    \"contractSummary\": \"Contrato principal do cliente\",\n    \"notes\": \"O cliente tem condição especial nas cotas\",\n    \"amount\": 500,\n    \"fidelityDate\": null,\n    \"privateSpaceId\": null,\n    \"isSmsEnabled\": false,\n    \"discountOnWorkstation\": null,\n    \"discountOnRooms\": 0\n}"},{"id":"a57477ba-7a4b-4b53-aec3-93bb328be155","name":"(200) Success - Alterando vendedor de um contrato existente","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"sellerId\": 532\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"1326"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Sep 2024 01:50:01 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"836"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"contractId\": 1326,\n    \"productQuotas\": [\n        {\n            \"quantity\": 4,\n            \"productId\": 2521\n        }\n    ],\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": false,\n        \"messagesLimit\": null,\n        \"priceAdditionalMessage\": null\n    },\n    \"createdAt\": \"2024-09-27T01:45:56-03:00\",\n    \"updatedAt\": \"2024-09-26T22:45:56-03:00\",\n    \"customerId\": 31,\n    \"paymentFrequency\": \"Monthly\",\n    \"endDate\": null,\n    \"endReasonId\": null,\n    \"planId\": 248,\n    \"hadProrata\": false,\n    \"lastContractualReadjustment\": null,\n    \"hourPlanQuota\": [\n        {\n            \"quantity\": 2,\n            \"spaceId\": 2106,\n            \"groupId\": null\n        }\n    ],\n    \"bookingModels\": null,\n    \"salesQuantity\": 6,\n    \"refundAmount\": 0,\n    \"costCenterId\": 6,\n    \"dateSalesGeneration\": \"2024-09-27\",\n    \"isActive\": true,\n    \"startDate\": \"2024-06-01\",\n    \"dueDay\": 0,\n    \"contractSummary\": \"DEV Conexa Mensal\",\n    \"notes\": null,\n    \"amount\": 100,\n    \"fidelityDate\": \"2024-06-01\",\n    \"privateSpaceId\": null,\n    \"isSmsEnabled\": false,\n    \"sellerId\": 532,\n    \"discountOnWorkstation\": null,\n    \"discountOnRooms\": 0\n}"},{"id":"c0928b46-5cc2-4f7b-9a59-fcb958de30df","name":"(200) Success - Alterando serviços complementares vinculado ao contrato","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"quantity\":3,\n            \"amount\": 280,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"29"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 29 Oct 2024 19:05:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"contractId\": 29,\n    \"productQuotas\": [\n        {\n            \"quantity\": 3,\n            \"productId\": 2113\n        }\n    ],\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 2,\n        \"priceAdditionalMessage\": 5\n    },\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"quantity\": 3,\n            \"amount\": 280,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        }\n    ],\n    \"createdAt\": \"2024-10-29T15:47:43-03:00\",\n    \"updatedAt\": \"2024-10-29T15:47:44-03:00\",\n    \"customerId\": 42,\n    \"paymentFrequency\": \"Monthly\",\n    \"creatorUserId\": 34,\n    \"endDate\": \"2025-09-30\",\n    \"endReasonId\": null,\n    \"planId\": 12,\n    \"hadProrata\": false,\n    \"lastContractualReadjustment\": null,\n    \"hourPlanQuota\": [\n        {\n            \"quantity\": 2,\n            \"spaceId\": 2105,\n            \"groupId\": null\n        }\n    ],\n    \"bookingModels\": null,\n    \"salesQuantity\": 12,\n    \"refundAmount\": 0,\n    \"costCenterId\": 1,\n    \"dateSalesGeneration\": \"2024-10-29\",\n    \"isActive\": true,\n    \"startDate\": \"2024-10-01\",\n    \"dueDay\": 11,\n    \"contractSummary\": \"Ethereum Mensal\",\n    \"notes\": null,\n    \"amount\": 150,\n    \"fidelityDate\": \"2025-03-01\",\n    \"privateSpaceId\": null,\n    \"isSmsEnabled\": false,\n    \"sellerId\": 34,\n    \"discountOnWorkstation\": 5,\n    \"discountOnRooms\": 10,\n    \"firstDueDate\": null\n}"},{"id":"b0d59a2b-6024-400d-98fa-cc8d23662781","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2023-02-12\",\n    \"dueDay\" : 3,\n    \"fidelityDate\": \"2024-06-02\",\n    \"contractSummary\": \"Contrato de Plus Horizon AA\",\n    \"amount\": 5000.50,\n    \"discountValue\": 1000,\n    \"notes\": \"O cliente tem condição especial nas cotas\",\n    \"lastAdjustmentDate\": \"2024-01-04\",\n    \"productQuotas\": [\n        {\n            \"quantity\": 10,\n            \"productId\": 2521\n        },\n        {\n            \"quantity\": 2,\n            \"productId\": 2154\n        }\n    ],\n    \"discountOnRooms\": 10,\n    \"discountOnWorkstation\": 5,\n    \"privateSpaceId\": 2151,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 10,\n        \"priceAdditionalMessage\": 5.99\n    },\n    \"plan\": {\n        \"serviceCategoryId\": 9,\n        \"costCenterId\": 1,\n        \"nfseDescription\": \"Descrição Nfse 3\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"1272"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 May 2024 01:20:53 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"162"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CONTRACT_RECURRING_SALE_28\",\n            \"message\": \"The field Plan is exclusive to custom plans\"\n        }\n    ]\n}"},{"id":"97dfa65a-21d3-420c-a6fd-1d0475174301","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2023-02-12\",\n    \"dueDay\" : 3,\n    \"fidelityDate\": \"2024-06-02\",\n    \"contractSummary\": \"Contrato de Plus Horizon AA\",\n    \"amount\": 5000.50,\n    \"discountValue\": 1000,\n    \"notes\": \"O cliente tem condição especial nas cotas\",\n    \"lastAdjustmentDate\": \"2024-01-04\",\n    \"productQuotas\": [\n        {\n            \"quantity\": 10,\n            \"productId\": 2521\n        },\n        {\n            \"quantity\": 2,\n            \"productId\": 2154\n        }\n    ],\n    \"discountOnRooms\": 10,\n    \"discountOnWorkstation\": 5,\n    \"privateSpaceId\": 2151,\n    \"isSmsEnabled\": true,\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true\n    },\n    // \"plan\": {\n    //     \"serviceCategoryId\": 9,\n    //     \"costCenterId\": 1,\n    //     \"nfseDescription\": \"Descrição Nfse 3\"\n    // }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"1272"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 May 2024 01:24:35 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"20"},{"key":"Content-Length","value":"266"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"serviceCorrespondenceQuotas.messagesLimit\",\n            \"messages\": [\n                \"Messages limit cannot be blank\"\n            ]\n        },\n        {\n            \"field\": \"serviceCorrespondenceQuotas.priceAdditionalMessage\",\n            \"messages\": [\n                \"Price additional message cannot be blank\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"2a34344a-69ac-4915-8046-cb6aef5de849"},{"name":"/contract/:id","id":"9bcf8e00-e5e4-4d23-88db-6a15281e9bce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","description":"<p>Recupera as informações de um Contrato a partir do ID.</p>\n<h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do Contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do Cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>planId</td>\n<td>integer</td>\n<td>ID do Plano</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do Centro de Custo</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentFrequency</td>\n<td>integer</td>\n<td>Periodicidade do pagamendo do Contrato, podendo ser: <strong>Monthly</strong>, <strong>Bimonthly</strong>, <strong>Quarterly</strong>, <strong>Semester</strong>, <strong>Yearly</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>contractSummary</td>\n<td>string</td>\n<td>Descrição Resumida do Contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Data de Início</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td>Data de Encerramento</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>endReasonId</td>\n<td>integer</td>\n<td>ID do Motivo de Cancelamento</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>hadProrata</td>\n<td>boolean</td>\n<td>Indicador se houve ou não prorata</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Está ativo ou não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>salesQuantity</td>\n<td>string</td>\n<td>Quantidade de vendas geradas</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor final do Contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>refundAmount</td>\n<td>decimal</td>\n<td>Valor do depósito retornável</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dateSalesGeneration</td>\n<td>string</td>\n<td>Data de início de geração das vendas</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de criação do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data da última modificação do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dueDay</td>\n<td>integer</td>\n<td>Dia de vencimento do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fidelityDate</td>\n<td>string</td>\n<td>Data de fidelidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>lastContractualReadjustment</td>\n<td>object</td>\n<td>Objeto contendo informações do último reajust</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>lastContractualReadjustment.index</td>\n<td>string</td>\n<td>Ídice informado no momento do reajust</td>\n<td>-</td>\n</tr>\n<tr>\n<td>lastContractualReadjustment.date</td>\n<td>string</td>\n<td>Data no formato <strong>yyyy-mm-dd</strong> em que o reajuste foi realizado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>lastContractualReadjustment.percentage</td>\n<td>decimal</td>\n<td>Porcentagem de reajuste aplicado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices</td>\n<td>array of objects</td>\n<td>Serviços complementares do contrato</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>complementaryServices[].productOrServiceId</td>\n<td>integer</td>\n<td>Id do produto ou serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].startDate</td>\n<td>string</td>\n<td>Data de início do serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].endDate</td>\n<td>string</td>\n<td>Data de encerramento do serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].isActive</td>\n<td>boolean</td>\n<td>Serviço ativo ou não</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].quantity</td>\n<td>integer</td>\n<td>Quantidade do produto ou serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].amount</td>\n<td>decimal</td>\n<td>Valor final do serviço</td>\n<td>-</td>\n</tr>\n<tr>\n<td>complementaryServices[].notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas</td>\n<td>array of objects</td>\n<td>Cotas de produtos (<strong>Serviços/Itens</strong>) que não serão cobrados caso o cliente consuma</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productQuotas[].quantity</td>\n<td>integer</td>\n<td>Quantidade de Serviços/Itens</td>\n<td>-</td>\n</tr>\n<tr>\n<td>productQuotas[].productId</td>\n<td>integer</td>\n<td>ID do Serviço/Item</td>\n<td>-</td>\n</tr>\n<tr>\n<td>discountOnRooms</td>\n<td>decimal</td>\n<td>Desconto aplicado às reservas de Salas realizadas para o contratante (valor percentual)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>discountOnWorkstation</td>\n<td>decimal</td>\n<td>Desconto aplicado às reservas de Ambientes Compartilhados realizadas para o contratante (valor percentual)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isSmsEnabled</td>\n<td>boolean</td>\n<td>Indica se o envio de recados por SMS está ativado</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>privateSpaceId</td>\n<td>integer</td>\n<td>ID do Escritório Privativo ou Sala Privativa vinculada ao contrato</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>bookingModels</td>\n<td>array of objects</td>\n<td>Cotas em faixa de dias e horário pré-definidos (apenas para estações de trabalho) em um plano.</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>bookingModels[].personId</td>\n<td>integer</td>\n<td>ID da pessoa vinculada à cota em faixa de dias e horário pré-definido. Se ausente, a cota fica livre pra qualquer pessoa</td>\n<td>-</td>\n</tr>\n<tr>\n<td>bookingModels[].hourPlanId</td>\n<td>integer</td>\n<td>ID do plano de horas. se isCustom for false, apenas IDs de Planos de Horas vinculados ao Plano selecionado</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourPlanQuota</td>\n<td>array of objects</td>\n<td>Lista de pacotes de horas relacionados ao contrato</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>hourPlanQuota[].quantity</td>\n<td>integer</td>\n<td>Quantidade de horas contratadas</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourPlanQuota[].spaceId</td>\n<td>integer</td>\n<td>ID da Sala ou Ambiente Compartilhado ao qual está vinculada a cota (<code>null</code> se existir <code>groupId</code>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>hourPlanQuota[].groupId</td>\n<td>integer</td>\n<td>ID da grupo ao qual está vinculada a cota (<code>null</code> se existir <code>spaceId</code>)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas</td>\n<td>object</td>\n<td>Cotas de Atendimento e Correpondência</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.limited</td>\n<td>boolean</td>\n<td>Quantidade de atendimentos é ou não limitada</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.limit</td>\n<td>integer</td>\n<td>Limite de Correspondências ou Atendimentos</td>\n<td>-</td>\n</tr>\n<tr>\n<td>serviceCorrespondenceQuotas.aditionalValue</td>\n<td>decimal</td>\n<td>Valor a ser pago caso o limite de Correspondências e Atendimentos seja ultrapassado.</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["contract",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"1364","key":"id"}]}},"response":[{"id":"95e8dc06-e341-4be3-9ddb-99f252405125","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"234"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jun 2024 12:32:36 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"514"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"contractId\": 234,\n    \"productQuotas\": null,\n    \"createdAt\": \"2023-08-15T16:39:00-03:00\",\n    \"updatedAt\": \"2024-04-29T21:45:08-03:00\",\n    \"customerId\": 64,\n    \"paymentFrequency\": \"Monthly\",\n    \"sellerId\": 21,\n    \"endDate\": \"2024-04-08\",\n    \"endReasonId\": null,\n    \"planId\": 87,\n    \"hadProrata\": false,\n    \"lastContractualReadjustment\": null,\n    \"salesQuantity\": 18,\n    \"refundAmount\": 0,\n    \"costCenterId\": 1,\n    \"dateSalesGeneration\": \"2023-08-15\",\n    \"startDate\": \"2023-01-01\",\n    \"dueDay\": 15,\n    \"contractSummary\": \"Assessoria Contábil Mensal\",\n    \"notes\": null,\n    \"amount\": 550,\n    \"fidelityDate\": null,\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"startDate\": \"2023-01-01\",\n            \"endDate\": \"2024-04-08\",\n            \"isActive\": false,\n            \"quantity\": 3,\n            \"amount\": 280,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        }\n    ]\n}"},{"id":"54713936-890a-4f5d-946f-35fa056fb343","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"10631"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jun 2024 12:14:05 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"892"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"contractId\": 10631,\n    \"productQuotas\": [\n        {\n            \"quantity\": 10,\n            \"productId\": 2366\n        }\n    ],\n    \"complementaryServices\": [\n        {\n            \"productOrServiceId\": 2113,\n            \"startDate\": \"2024-05-28\",\n            \"endDate\": null,\n            \"isActive\": true,\n            \"quantity\": 3,\n            \"amount\": 280,\n            \"notes\": \"Lorem ipsun dolor 1\"\n        }\n    ],\n    \"serviceCorrespondenceQuotas\": {\n        \"limited\": true,\n        \"messagesLimit\": 2,\n        \"priceAdditionalMessage\": 2.05\n    },\n    \"createdAt\": \"2024-05-28T15:56:54-03:00\",\n    \"updatedAt\": \"2024-05-28T15:56:54-03:00\",\n    \"customerId\": 512,\n    \"paymentFrequency\": \"Monthly\",\n    \"sellerId\": 486,\n    \"endDate\": null,\n    \"endReasonId\": null,\n    \"planId\": 617,\n    \"hadProrata\": false,\n    \"lastContractualReadjustment\": null,\n    \"hourPlanQuota\": [\n        {\n            \"quantity\": 10,\n            \"spaceId\": 2106,\n            \"groupId\": null\n        },\n        {\n            \"quantity\": 10,\n            \"spaceId\": null,\n            \"groupId\": 1\n        }\n    ],\n    \"bookingModels\": [\n        {\n            \"personId\": null,\n            \"hourPlanId\": 1\n        }\n    ],\n    \"salesQuantity\": 4,\n    \"refundAmount\": 200.05,\n    \"costCenterId\": 1,\n    \"dateSalesGeneration\": \"2024-05-28\",\n    \"startDate\": \"2024-05-28\",\n    \"dueDay\": 2,\n    \"contractSummary\": \"1Plano com tudo Mensal\",\n    \"notes\": null,\n    \"amount\": 20.05,\n    \"fidelityDate\": \"2025-05-27\",\n    \"privateSpaceId\": null,\n    \"isSmsEnabled\": false,\n    \"discountOnWorkstation\": 2.39,\n    \"discountOnRooms\": 1.5\n}"},{"id":"46ce1149-8324-435c-ab81-9a7181d0b309","name":"(404) Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"222"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jun 2024 12:30:01 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Contract does not exist or you have no permission to access it.\"\n}"},{"id":"5e4f6491-7070-4703-8353-de71aa89fd4d","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"234"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jun 2024 12:31:56 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"}],"_postman_id":"9bcf8e00-e5e4-4d23-88db-6a15281e9bce"},{"name":"/contract/:id","id":"5435d5b8-3da4-42f8-8657-9b7d10c4b6d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","description":"<p>Exclusão de um contrato no Conexa.</p>\n<h2 id=\"error-response\">Error Response</h2>\n<h3 id=\"422-unable-to-process\"><em>422 Unable to process</em></h3>\n<p>Abaixo apresentamos alguns erros que podem ser retornados ao tentar excluir um contrato no Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Message</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONTRACT_RECURRING_SALE_40</td>\n<td>It is not possible to delete this contract as it already has invoiced sales. If desired, you can still terminate the contract for a specific date.</td>\n</tr>\n<tr>\n<td>CONTRACT_RECURRING_SALE_41</td>\n<td>It is not possible to delete this contract as the customer has already paid the refundable deposit. Charge ID: {chargeId}</td>\n</tr>\n<tr>\n<td>CONTRACT_RECURRING_SALE_42</td>\n<td>Error when deleting the refundable deposit invoice.</td>\n</tr>\n<tr>\n<td>CONTRACT_RECURRING_SALE_43</td>\n<td>Error when canceling the invoice in the integrator bank.</td>\n</tr>\n<tr>\n<td>CONTRACT_RECURRING_SALE_44</td>\n<td>Error when deleting recurring reservations linked.</td>\n</tr>\n<tr>\n<td>CONTRACT_RECURRING_SALE_45</td>\n<td>Error when removing links for due date changes.</td>\n</tr>\n<tr>\n<td>...</td>\n<td>...</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["contract",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"1366","key":"id"}]}},"response":[{"id":"2f19e235-7293-4d76-a66f-d20c329368eb","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"1366"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 22:43:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":null},{"id":"195d3fd9-29ef-4101-921e-c8f1e50e3d2d","name":"(401) Unauthorized","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"635"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 22:35:58 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"c0b87fef-ca20-4fa4-8f3e-623392eb2813","name":"(404) Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"6353"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 22:38:29 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Contract does not exist or you have no permission to access it\"\n}"},{"id":"a9bcdce9-31fd-4f14-a090-8c5b913ad186","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contract/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contract",":id"],"variable":[{"key":"id","value":"635"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 08 Aug 2025 22:36:45 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CONTRACT_RECURRING_SALE_40\",\n            \"message\": \"It is not possible to delete this contract as it already has invoiced sales. If desired, you can still terminate the contract for a specific date.\"\n        }\n    ]\n}"}],"_postman_id":"5435d5b8-3da4-42f8-8657-9b7d10c4b6d0"},{"name":"/contracts","id":"119d3a3f-978d-4c8e-8db0-19c9ca5d9384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contracts?limit=10","description":"<p>Listagem paginada de Contratos.</p>\n<p>Os itens definidos como array podem ter múltiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Contratos contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#9bcf8e00-e5e4-4d23-88db-6a15281e9bce\">GET /contract/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["contracts"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos Contratos</p>\n","type":"text/plain"},"key":"id[]","value":"80,81,91"},{"disabled":true,"description":{"content":"<p>IDs das Unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>IDs dos Clientes</p>\n","type":"text/plain"},"key":"customerId[]","value":"516, 489"},{"disabled":true,"description":{"content":"<p>IDs dos Planos</p>\n","type":"text/plain"},"key":"planId[]","value":"15"},{"disabled":true,"description":{"content":"<p>IDs dos vendedores (usuários) que cadastrou a venda</p>\n","type":"text/plain"},"key":"sellerId[]","value":"1"},{"disabled":true,"description":{"content":"<p>Data inicial para o período da data de início, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"startDateFrom","value":"2024-01-05"},{"disabled":true,"description":{"content":"<p>Data final para o período da data de início, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"startDateTo","value":"2024-01-10"},{"disabled":true,"description":{"content":"<p>Data inicial para o período da data de encerramento, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"endDateFrom","value":"2024-03-01"},{"disabled":true,"description":{"content":"<p>Data final para o período da data de encerramento, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"endDateTo","value":"2024-03-09"},{"disabled":true,"description":{"content":"<p>Data inicial para o período da data de último reajuste, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"lastReadjustmentDateFrom","value":"2024-02-04"},{"disabled":true,"description":{"content":"<p>Data final para o período da data de último reajuste, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"lastReadjustmentDateTo","value":"2024-02-08"},{"disabled":true,"description":{"content":"<p>Se o contrato está ativo, deve ser 1 para ativo e 0 para inativo</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"disabled":true,"description":{"content":"<p>Frequência do Contrato (Valores aceitos: monthly, bimonthly, quarterly, semester, yearly). </p>\n","type":"text/plain"},"key":"frequency","value":"monthly"},{"disabled":true,"description":{"content":"<p>IDs de tags dos clientes relacionados aos contratos</p>\n","type":"text/plain"},"key":"tagId[]","value":"2"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"11fee213-7f90-470c-8303-19a908b41d14","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contracts?limit=10&ofset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contracts"],"query":[{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"ofset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Jun 2024 00:38:10 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"47"},{"key":"Content-Length","value":"2711"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"contractId\": 254,\n            \"productQuotas\": null,\n            \"createdAt\": \"2023-10-16T09:26:09-03:00\",\n            \"updatedAt\": \"2024-06-01T05:23:06-03:00\",\n            \"customerId\": 89,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 65,\n            \"endDate\": null,\n            \"endReasonId\": null,\n            \"planId\": 87,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"salesQuantity\": 12,\n            \"refundAmount\": 0,\n            \"costCenterId\": 1,\n            \"dateSalesGeneration\": \"2023-10-16\",\n            \"isActive\": true,\n            \"startDate\": \"2023-09-01\",\n            \"dueDay\": 15,\n            \"contractSummary\": \"Assessoria Contábil Mensal\",\n            \"notes\": null,\n            \"amount\": 250,\n            \"fidelityDate\": null\n        },\n        {\n            \"contractId\": 274,\n            \"productQuotas\": null,\n            \"createdAt\": \"2023-10-31T16:23:37-03:00\",\n            \"updatedAt\": \"2024-06-01T05:23:06-03:00\",\n            \"customerId\": 92,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 65,\n            \"endDate\": null,\n            \"endReasonId\": null,\n            \"planId\": 87,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"salesQuantity\": 11,\n            \"refundAmount\": 0,\n            \"costCenterId\": 1,\n            \"dateSalesGeneration\": \"2023-10-31\",\n            \"isActive\": true,\n            \"startDate\": \"2023-10-01\",\n            \"dueDay\": 15,\n            \"contractSummary\": \"Assessoria Contábil Mensal\",\n            \"notes\": null,\n            \"amount\": 400,\n            \"fidelityDate\": null\n        },\n        {\n            \"contractId\": 292,\n            \"productQuotas\": null,\n            \"createdAt\": \"2023-11-20T19:16:14-03:00\",\n            \"updatedAt\": \"2024-06-01T05:23:06-03:00\",\n            \"customerId\": 96,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 65,\n            \"endDate\": null,\n            \"endReasonId\": null,\n            \"planId\": 87,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"salesQuantity\": 46,\n            \"refundAmount\": 0,\n            \"costCenterId\": 1,\n            \"dateSalesGeneration\": \"2023-11-20\",\n            \"isActive\": true,\n            \"startDate\": \"2020-11-01\",\n            \"dueDay\": 15,\n            \"contractSummary\": \"Assessoria Contábil Mensal\",\n            \"notes\": null,\n            \"amount\": 600,\n            \"fidelityDate\": null\n        },\n        {\n            \"contractId\": 314,\n            \"productQuotas\": null,\n            \"createdAt\": \"2024-01-16T13:39:06-03:00\",\n            \"updatedAt\": \"2024-06-01T05:23:07-03:00\",\n            \"customerId\": 64,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 65,\n            \"endDate\": null,\n            \"endReasonId\": null,\n            \"planId\": 87,\n            \"hadProrata\": true,\n            \"lastContractualReadjustment\": null,\n            \"salesQuantity\": 8,\n            \"refundAmount\": 0,\n            \"costCenterId\": 1,\n            \"dateSalesGeneration\": \"2024-01-16\",\n            \"isActive\": true,\n            \"startDate\": \"2024-01-16\",\n            \"dueDay\": 15,\n            \"contractSummary\": \"Assessoria Contábil Mensal\",\n            \"notes\": null,\n            \"amount\": 100,\n            \"fidelityDate\": null\n        },\n        {\n            \"contractId\": 232,\n            \"productQuotas\": null,\n            \"createdAt\": \"2023-08-15T13:38:24-03:00\",\n            \"updatedAt\": \"2024-04-29T18:45:08-03:00\",\n            \"customerId\": 58,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 21,\n            \"endDate\": \"2023-11-30\",\n            \"endReasonId\": null,\n            \"planId\": 88,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"salesQuantity\": 18,\n            \"refundAmount\": 0,\n            \"costCenterId\": 1,\n            \"dateSalesGeneration\": \"2023-08-15\",\n            \"isActive\": false,\n            \"startDate\": \"2023-01-01\",\n            \"dueDay\": 15,\n            \"contractSummary\": \"Honorário Contabil Mensal\",\n            \"notes\": null,\n            \"amount\": 1250,\n            \"fidelityDate\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"2a43019b-71e4-4af3-addd-abae9222503d","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contracts?id[]=80,81,91&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contracts"],"query":[{"key":"id[]","value":"80,81,91"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Jun 2024 11:26:11 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"50"},{"key":"Content-Length","value":"2544"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"contractId\": 80,\n            \"productQuotas\": null,\n            \"serviceCorrespondenceQuotas\": {\n                \"limited\": false,\n                \"messagesLimit\": null,\n                \"priceAdditionalMessage\": null\n            },\n            \"createdAt\": \"2018-05-07T11:04:24-03:00\",\n            \"updatedAt\": \"2024-02-27T11:20:10-03:00\",\n            \"customerId\": 46,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 33,\n            \"endDate\": \"2018-05-10\",\n            \"endReasonId\": null,\n            \"planId\": 13,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"hourPlanQuota\": null,\n            \"bookingModels\": [\n                {\n                    \"personId\": null,\n                    \"hourPlanId\": 1\n                },\n                {\n                    \"personId\": null,\n                    \"hourPlanId\": 1\n                },\n                {\n                    \"personId\": null,\n                    \"hourPlanId\": 1\n                }\n            ],\n            \"salesQuantity\": 3,\n            \"refundAmount\": 0,\n            \"costCenterId\": 3,\n            \"dateSalesGeneration\": \"2018-05-07\",\n            \"isActive\": false,\n            \"startDate\": \"2018-05-07\",\n            \"dueDay\": 10,\n            \"contractSummary\": \"Plano Master Mensal\",\n            \"notes\": null,\n            \"amount\": 0,\n            \"fidelityDate\": null,\n            \"privateSpaceId\": null,\n            \"isSmsEnabled\": false,\n            \"discountOnWorkstation\": 15,\n            \"discountOnRooms\": 25\n        },\n        {\n            \"contractId\": 81,\n            \"productQuotas\": null,\n            \"serviceCorrespondenceQuotas\": {\n                \"limited\": false,\n                \"messagesLimit\": null,\n                \"priceAdditionalMessage\": null\n            },\n            \"createdAt\": \"2018-05-07T11:06:22-03:00\",\n            \"updatedAt\": \"2024-02-27T11:20:10-03:00\",\n            \"customerId\": 42,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 33,\n            \"endDate\": \"2018-05-10\",\n            \"endReasonId\": null,\n            \"planId\": 13,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"hourPlanQuota\": null,\n            \"bookingModels\": [\n                {\n                    \"personId\": null,\n                    \"hourPlanId\": 1\n                },\n                {\n                    \"personId\": null,\n                    \"hourPlanId\": 1\n                },\n                {\n                    \"personId\": null,\n                    \"hourPlanId\": 1\n                }\n            ],\n            \"salesQuantity\": 3,\n            \"refundAmount\": 0,\n            \"costCenterId\": 3,\n            \"dateSalesGeneration\": \"2018-05-07\",\n            \"isActive\": false,\n            \"startDate\": \"2018-05-07\",\n            \"dueDay\": 10,\n            \"contractSummary\": \"Plano Master Mensal\",\n            \"notes\": null,\n            \"amount\": 0,\n            \"fidelityDate\": null,\n            \"privateSpaceId\": null,\n            \"isSmsEnabled\": false,\n            \"discountOnWorkstation\": 15,\n            \"discountOnRooms\": 25\n        },\n        {\n            \"contractId\": 91,\n            \"productQuotas\": null,\n            \"serviceCorrespondenceQuotas\": {\n                \"limited\": false,\n                \"messagesLimit\": null,\n                \"priceAdditionalMessage\": null\n            },\n            \"createdAt\": \"2018-05-10T08:12:22-03:00\",\n            \"updatedAt\": \"2024-02-27T11:20:10-03:00\",\n            \"customerId\": 56,\n            \"paymentFrequency\": \"Monthly\",\n            \"creatorUserId\": 33,\n            \"endDate\": null,\n            \"endReasonId\": null,\n            \"planId\": 13,\n            \"hadProrata\": false,\n            \"lastContractualReadjustment\": null,\n            \"hourPlanQuota\": null,\n            \"bookingModels\": [\n                {\n                    \"personId\": 59,\n                    \"hourPlanId\": 1\n                }\n            ],\n            \"salesQuantity\": 70,\n            \"refundAmount\": 0,\n            \"costCenterId\": 3,\n            \"dateSalesGeneration\": \"2018-05-10\",\n            \"isActive\": true,\n            \"startDate\": \"2018-05-10\",\n            \"dueDay\": 10,\n            \"contractSummary\": \"Plano Master Mensal\",\n            \"notes\": null,\n            \"amount\": 0,\n            \"fidelityDate\": null,\n            \"privateSpaceId\": null,\n            \"isSmsEnabled\": false,\n            \"discountOnWorkstation\": 15,\n            \"discountOnRooms\": 25\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"cc2764ad-df1c-4ed3-a89d-e3b8debb66ee","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/contracts?companyId[]=540&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["contracts"],"query":[{"key":"companyId[]","value":"540","description":"IDs das Unidades"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca\nRecomendação: offset atual + limit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Jun 2024 00:41:38 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"9"},{"key":"Content-Length","value":"295"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"This company is disabled, or suporte doesn't have permission to access it. The company must be enabled, or suporte must have access to perform this action. Verify the company's status and access, then try again\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"119d3a3f-978d-4c8e-8db0-19c9ca5d9384"}],"id":"f916237a-4bbb-4d4f-8f3d-2e858fba28e5","description":"<p>Endpoints que correspondem a Contrato no sistema Conexa.</p>\n","_postman_id":"f916237a-4bbb-4d4f-8f3d-2e858fba28e5","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Recurring Sale","item":[{"name":"/recurringSale","id":"1e81e4db-b1dc-41d4-938b-e596d7ed1dfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    // \"type\": \"package\",\n    // \"referenceId\": 73,\n    \"type\": \"product\",\n    \"referenceId\": 2109,\n    \"requesterId\": 458,\n    \"sellerId\": 13,\n    \"isRepeat\": false,\n    \"occurrenceQuantity\": 2,\n    \"frequency\": \"monthly\",\n    \"startDate\": \"2024-03-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantity\": 1,\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\"\n    // \"isDiscountPreviousReservations\": false,\n    // \"isCalculateProRata\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale","description":"<p>Criação de uma <strong>Venda Recorrente</strong>, cujo produto pode ser <strong>Serviço/Item</strong> ou <strong>Pacote de Horas</strong> (apenas Conexa Coworking) no sistema Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não são necessários! </p>\n</blockquote>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td><strong>'product'</strong> para venda de Serviço/Item.  <br /><strong>'package'</strong> para venda de Pacotes de Horas.</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>integer</td>\n<td>ID do Serviço/Item ou do Pacote de Horas</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>requesterId</td>\n<td>integer</td>\n<td>ID do solicitante</td>\n<td>Depende da configuração do sistema</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário)</td>\n<td>Não (deve ser enviado em requisições que a autenticação é realizada pelo API Token)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>frequency</td>\n<td>string</td>\n<td>Frequência da Venda Recorrente, podendo ser: <strong>'daily'</strong>, <strong>'weekly'</strong>, <strong>'monthly'</strong>, <strong>'bimonthly'</strong>, <strong>'quarterly'</strong>, <strong>'semester'</strong>, <strong>'yearly'</strong></td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isRepeat</td>\n<td>boolean</td>\n<td>Repetir a venda conforme a periodicidade (<code>frequency</code>)</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>occurrenceQuantity</td>\n<td>integer</td>\n<td>Quantidade de ocorrências</td>\n<td>Sim, se <code>isRepeat</code> for <code>false</code></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Data de início</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>lastAdjustmentDate</td>\n<td>string</td>\n<td>Data do último reajuste</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>integer</td>\n<td>Quantidade (não disponível para o tipo <strong>'package'</strong>)</td>\n<td>Apenas para Serviço/Item</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor da venda recorrente</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isDiscountPreviousReservations</td>\n<td>boolean</td>\n<td>Aplicar desconto do Pacote de Horas em reservas anteriores</td>\n<td>Apenas para Pacote de Horas</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>isCalculateProRata</td>\n<td>boolean</td>\n<td>Calcular Pro Rata proporcional ao mês de início da venda recorrente</td>\n<td>Apenas para Pacote de Horas</td>\n<td>Conexa Coworking</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da venda recorrente criada</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["recurringSale"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"b67dbcb2-f956-4bde-8efb-58874e8da69d","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"product\",\n    \"referenceId\": 2109,\n    \"requesterId\": 458,\n    \"isRepeat\": false,\n    \"occurrenceQuantity\": 2,\n    \"frequency\": \"monthly\",\n    \"startDate\": \"2024-03-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantity\": 1,\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:04:55 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1250\n}"},{"id":"3af0947e-6b5a-4c78-8fd0-8e330a564823","name":"(201) Success - Cadastrando uma venda recorrente para um vendedor específico","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"product\",\n    \"referenceId\": 2109,\n    \"requesterId\": 458,\n    \"sellerId\": 13,\n    \"isRepeat\": false,\n    \"occurrenceQuantity\": 2,\n    \"frequency\": \"monthly\",\n    \"startDate\": \"2024-03-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantity\": 1,\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Sep 2024 01:22:51 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1319\n}"},{"id":"9fc6e0d6-69cf-4ecb-8335-f548a865a3f7","name":"(201) Success - Sem data de encerramento","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 101,\n    \"type\": \"product\",\n    \"referenceId\": 2105,\n    \"requesterId\": 2,\n    \"isRepeat\": true,\n    \"frequency\": \"monthly\",\n    \"startDate\": \"2024-03-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantity\": 1,\n    \"amount\": 185,\n    \"notes\": \"Solicitação via WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:12:50 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 290\n}"},{"id":"6c818611-6abb-49c8-ba97-09f3c7834296","name":"(201) Success - Conexa Coworking (Pacote de Horas)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"package\",\n    \"referenceId\": 73,\n    \"requesterId\": 458,\n    \"isRepeat\": false,\n    \"occurrenceQuantity\": 2,\n    \"startDate\": \"2024-02-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\",\n    \"isDiscountPreviousReservations\": true,\n    \"isCalculateProRata\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:06:22 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1251\n}"},{"id":"46ad93b7-6875-40e6-9aad-587d7c71b6ea","name":"(201) Success - Conexa Coworking (encerra após 11 repetições)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"package\",\n    \"referenceId\": 73,\n    \"requesterId\": 458,\n    \"isRepeat\": false,\n    \"occurrenceQuantity\": 11,\n    \"startDate\": \"2024-02-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\",\n    \"isDiscountPreviousReservations\": true,\n    \"isCalculateProRata\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:10:18 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1252\n}"},{"id":"e97e01ae-7775-4338-8e53-04536efc4ca9","name":"(201) Success - Conexa Coworking (sem encerramento)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"package\",\n    \"referenceId\": 73,\n    \"requesterId\": 458,\n    \"isRepeat\": true,\n    \"startDate\": \"2024-02-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\",\n    \"isDiscountPreviousReservations\": true,\n    \"isCalculateProRata\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:10:40 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1253\n}"},{"id":"c4a393db-fddc-44be-b495-19ff8984356c","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"package\",\n    \"referenceId\": 73,\n    \"requesterId\": 458,\n    \"isRepeat\": true,\n    \"occurrenceQuantity\": 2,\n    \"frequency\": \"monthly\",\n    \"startDate\": \"2024-02-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantity\": 1,\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\",\n    \"isDiscountPreviousReservations\": true,\n    \"isCalculateProRata\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:15:07 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"253"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"frequency\",\n            \"messages\": [\n                \"Field must be blank\"\n            ]\n        },\n        {\n            \"field\": \"quantity\",\n            \"messages\": [\n                \"Field must be blank\"\n            ]\n        },\n        {\n            \"field\": \"occurrenceQuantity\",\n            \"messages\": [\n                \"Maximum Quantity to be Generated must be blank\"\n            ]\n        }\n    ]\n}"},{"id":"3f0223d5-469d-4c25-97ff-9658d3778a21","name":"(404) Product not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"type\": \"product\",\n    \"referenceId\": 2567,\n    \"requesterId\": 458,\n    \"isRepeat\": false,\n    \"occurrenceQuantity\": 2,\n    \"frequency\": \"monthly\",\n    \"startDate\": \"2024-03-15\",\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantity\": 1,\n    \"amount\": 75.99,\n    \"notes\": \"Solicitação via WhatsApp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2024 15:16:37 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"81"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Product does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"1e81e4db-b1dc-41d4-938b-e596d7ed1dfc"},{"name":"/recurringSale/:id","id":"5f271810-0d9d-4dcc-a4d1-60c18e211e47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","description":"<p>Recuperação das informações de uma Venda Recorrente, a partir do ID, no sistema Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não serão retornados! </p>\n</blockquote>\n<h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>recurringSaleId</td>\n<td>integer</td>\n<td>ID da venda recorrente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>sellerId</td>\n<td>integer</td>\n<td>ID do vendedor (usuário)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>requesterId</td>\n<td>integer</td>\n<td>Id do solicitante (pessoa)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>productId</td>\n<td>integer</td>\n<td>ID do Serviço/Item (<code>null</code> se existir um <code>packageId</code>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>packageId</td>\n<td>integer</td>\n<td>ID do Pacote de Horas (<code>null</code> se existir um <code>productId</code>)</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>occurrenceQuantity</td>\n<td>integer</td>\n<td>Quantidade de ocorrências</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>frequency</td>\n<td>string</td>\n<td>Frequência da venda recorrente, podendo ser: <strong>Daily</strong>, <strong>Weekly</strong>, <strong>Monthly</strong>, <strong>Bimonthly</strong>, <strong>Quarterly</strong>, <strong>Semester</strong> ou <strong>Yearly</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>string</td>\n<td>Data de início (primeira ocorrência)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>string</td>\n<td>Data de encerramento (última ocorrência)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>integer</td>\n<td>Quantidade do produto</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td><del>quantityProduct</del></td>\n<td><del>integer</del></td>\n<td><del>Quantidade do produto</del></td>\n<td><del>Todos</del></td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor da venda recorrente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>lastAdjustmentDate</td>\n<td>string</td>\n<td>Data do último reajuste</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>recurringSaleContractId</td>\n<td>integer</td>\n<td>Id do contrato que gerou a venda recorrente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>generatedQuantity</td>\n<td>integer</td>\n<td>Quantidade de vendas gerada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Está ativa ou não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isCalculateProRata</td>\n<td>boolean</td>\n<td>Calcula pró rata</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de criação</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>modifiedAt</td>\n<td>string</td>\n<td>Data da última edição</td>\n<td>Todos</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["recurringSale",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"1177","key":"id"}]}},"response":[{"id":"f89e95c5-7dbf-4b7b-93b9-f5c1c723b19e","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 12:44:19 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"415"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recurringSaleId\": 10,\n    \"sellerId\": 13,\n    \"customerId\": 31,\n    \"productId\": 2119,\n    \"requesterId\": 1,\n    \"recurringSaleContractId\": null,\n    \"occurrenceQuantity\": null,\n    \"generatedQuantity\": 3,\n    \"frequency\": \"Bimonthly\",\n    \"startDate\": \"2024-04-01\",\n    \"endDate\": null,\n    \"lastAdjustmentDate\": null,\n    \"quantity\": 1,\n    \"amount\": 500,\n    \"notes\": \"Auditoria in loco\",\n    \"isActive\": true,\n    \"createdAt\": \"2024-05-27T12:44:12-03:00\",\n    \"updatedAt\": \"2024-05-27T09:44:12-03:00\"\n}"},{"id":"3f3cd1e6-3d30-4063-8104-91968cd89888","name":"(200) Success - Conexa Coworking - Venda Recorrente de Pacote de Horas sem vínculo com contrato","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"987"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 12:02:31 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"449"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recurringSaleId\": 987,\n    \"sellerId\": 413,\n    \"customerId\": 477,\n    \"productId\": null,\n    \"packageId\": 34,\n    \"requesterId\": null,\n    \"recurringSaleContractId\": null,\n    \"occurrenceQuantity\": null,\n    \"generatedQuantity\": 24,\n    \"frequency\": \"Monthly\",\n    \"startDate\": \"2021-10-15\",\n    \"endDate\": null,\n    \"lastAdjustmentDate\": null,\n    \"quantity\": 80,\n    \"amount\": 1000,\n    \"notes\": null,\n    \"isActive\": true,\n    \"isCalculateProRata\": true,\n    \"createdAt\": \"2021-10-15T18:07:38-03:00\",\n    \"updatedAt\": \"2024-04-26T16:06:40-03:00\"\n}"},{"id":"0c5582ca-262d-4c8a-a5ed-5462b2083f0f","name":"(200) Success - Conexa Coworking - Venda Recorrente de Pacote de Horas com vínculo ao contrato","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1155"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 12:13:54 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"447"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recurringSaleId\": 1155,\n    \"sellerId\": 413,\n    \"customerId\": 579,\n    \"productId\": null,\n    \"packageId\": 69,\n    \"requesterId\": null,\n    \"recurringSaleContractId\": 1153,\n    \"occurrenceQuantity\": null,\n    \"generatedQuantity\": 17,\n    \"frequency\": \"Monthly\",\n    \"startDate\": \"2023-04-01\",\n    \"endDate\": null,\n    \"lastAdjustmentDate\": null,\n    \"quantity\": 1,\n    \"amount\": 0,\n    \"notes\": null,\n    \"isActive\": true,\n    \"isCalculateProRata\": false,\n    \"createdAt\": null,\n    \"updatedAt\": \"2024-05-27T09:13:51-03:00\"\n}"},{"id":"05141123-c38c-41b8-9ed5-451f9a9d54b4","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1155"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 11:10:20 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"PHPSESSID=8d26a614732c99762cf49e0cb7881af7; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"26717449-79d6-40fc-a050-cdf5801be0f4","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"101"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 12:45:09 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"10"},{"key":"Content-Length","value":"87"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This RecurringSale does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"5f271810-0d9d-4dcc-a4d1-60c18e211e47"},{"name":"/recurringSale/end/:id","id":"080b344d-bf74-4ea3-9291-1c65b90bca32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-10-31\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/end/:id","description":"<p>Encerra uma venda recorrente ativa ou atualiza a data de encerramento de uma venda recorrente no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Data de encerramento do contrato. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["recurringSale","end",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"45","key":"id"}]}},"response":[{"id":"2d2efddd-5f4e-4ddd-b320-1119ada1e484","name":"(204) Success","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-01-31\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale","end",":id"],"variable":[{"key":"id","value":"45"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 30 May 2024 13:56:24 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"bcd492f3-7569-439c-91e7-7ea1e8794da8","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-01-32\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale","end",":id"],"variable":[{"key":"id","value":"45"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 May 2024 14:04:26 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"109"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"date\",\n            \"messages\": [\n                \"The format of Date is invalid\"\n            ]\n        }\n    ]\n}"},{"id":"37ecb8e1-fd9d-4b16-b3b2-43ae16ccf7fd","name":"(401) Unauthorized","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-01-31\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale","end",":id"],"variable":[{"key":"id","value":"45"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 May 2024 13:55:08 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"PHPSESSID=5d9e81f4128e544c8e3742bc5c6dc3e1; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"9955b6d4-eb54-4b65-b92f-99b7c348cfa6","name":"(403) Not authorized","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-01-31\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale","end",":id"],"variable":[{"key":"id","value":"45"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 May 2024 13:55:39 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"bfb52897-4a75-484f-871d-5071eea7b3dd","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"date\":\"2024-01-31\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/end/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale","end",":id"],"variable":[{"key":"id","value":"45"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 May 2024 14:07:17 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"231"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"RECURRING_SALE_07\",\n            \"message\": \"It was not possible to set a closing date before 2024-01-31, as there are already one or more sales invoiced on that day.\"\n        }\n    ]\n}"}],"_postman_id":"080b344d-bf74-4ea3-9291-1c65b90bca32"},{"name":"/recurringSale/:id","id":"30710fbf-5ce2-4af1-b2e0-8a05a0d9669d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"requesterId\": 3,\n    \"amount\": 190.00,\n    \"quantity\": 2,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"notes\": \"via API\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","description":"<p>Edição de campos de uma <strong>Venda Recorrente</strong> no sistema Conexa.</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>requesterId</td>\n<td>integer</td>\n<td>ID do solicitante</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor da venda recorrente</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>integer</td>\n<td>Quantidade</td>\n</tr>\n<tr>\n<td>lastAdjustmentDate</td>\n<td>string</td>\n<td>Data do último reajuste</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#5f271810-0d9d-4dcc-a4d1-60c18e211e47\">GET /recurringSale/:id</a></p>\n","urlObject":{"path":["recurringSale",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"980","key":"id"}]}},"response":[{"id":"d7d355f5-50d3-40f3-909f-fa039906719f","name":"(201) Success - Conexa Recorrência/Contabilidade","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 190.00,\n    \"quantity\": 2,\n    \"requesterId\": 3,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"notes\": \"Via API\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"45"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 09 Oct 2025 23:01:48 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"19"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"recurringSaleId\": 45,\n    \"customerId\": 4,\n    \"productId\": 2114,\n    \"requesterId\": 3,\n    \"recurringSaleContractId\": null,\n    \"occurrenceQuantity\": null,\n    \"generatedQuantity\": 4,\n    \"frequency\": \"Monthly\",\n    \"startDate\": \"2025-09-01\",\n    \"endDate\": null,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantityProduct\": 2,\n    \"quantity\": 2,\n    \"amount\": 190,\n    \"notes\": \"via API\",\n    \"isActive\": true,\n    \"createdAt\": \"2025-10-09T20:00:36-03:00\",\n    \"updatedAt\": \"2025-10-09T20:00:36-03:00\",\n    \"sellerId\": 1\n}"},{"id":"49808856-936c-4c7a-8b99-6ba15cf93851","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 75.99,\n    \"quantity\": 1,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"notes\": \"via API\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1177"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 09 Oct 2025 22:51:24 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"recurringSaleId\": 1177,\n    \"customerId\": 541,\n    \"productId\": null,\n    \"packageId\": 5,\n    \"requesterId\": 468,\n    \"recurringSaleContractId\": null,\n    \"occurrenceQuantity\": 10,\n    \"generatedQuantity\": 5,\n    \"frequency\": \"Monthly\",\n    \"startDate\": \"2023-09-11\",\n    \"endDate\": null,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"quantityProduct\": 1,\n    \"quantity\": 1,\n    \"amount\": 75.99,\n    \"notes\": \"via API\",\n    \"isActive\": true,\n    \"isCalculateProRata\": false,\n    \"createdAt\": \"2023-09-11T10:30:27-03:00\",\n    \"updatedAt\": \"2024-04-26T16:06:40-03:00\",\n    \"sellerId\": 2\n}"},{"id":"720f43bc-63ff-4e07-86bb-b3619c7631cb","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 75.99,\n    \"quantity\": 1,\n    // \"requesterId\": 239,\n    \"lastAdjustmentDate\": \"2023-15-15\",\n    \"notes\": \"via API\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1177"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 09 Oct 2025 22:53:13 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"lastAdjustmentDate\",\n            \"messages\": [\n                \"The format of Last Adjustment Date is invalid\"\n            ]\n        }\n    ]\n}"},{"id":"76e0cea2-610e-40b0-b8ab-91df582b5533","name":"(404) Requester not found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 75.99,\n    \"quantity\": 1,\n    \"requesterId\": 239,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"notes\": \"via API\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1177"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 09 Oct 2025 22:55:23 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Requester \\\"239\\\" not found\"\n}"},{"id":"8fca00de-c282-407e-965d-50207fd43238","name":"(404) Not found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 75.99,\n    \"quantity\": 1,\n    \"requesterId\": 239,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"notes\": \"via API\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"11774"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 09 Oct 2025 22:56:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This RecurringSale does not exist or you have no permission to access it\"\n}"},{"id":"d7268c12-5c12-4c13-9979-7bd7caf925f7","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 75.99,\n    \"quantity\": 1,\n    // \"requesterId\": 239,\n    \"lastAdjustmentDate\": \"2023-03-15\",\n    \"notes\": \"via API\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1220"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 09 Oct 2025 22:54:23 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"RECURRING_SALE_11\",\n            \"message\": \"It is not possible to edit a recurring sale linked to a contract.\"\n        }\n    ]\n}"}],"_postman_id":"30710fbf-5ce2-4af1-b2e0-8a05a0d9669d"},{"name":"/recurringSale/:id","id":"9212387e-310c-4e43-a6fc-ce65ac8d3263","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","description":"<p>Exclusão de uma venda recorrente no Conexa.</p>\n<h2 id=\"error-response\">Error Response</h2>\n<h3 id=\"422-unable-to-process\"><em>422 Unable to process</em></h3>\n<p>Abaixo apresentamos alguns erros que podem ser retornados ao tentar excluir uma Venda Recorrente no Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Message</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RECURRING_SALE_02</td>\n<td>The id {id} does not correspond to a recurring sale.</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>RECURRING_SALE_08</td>\n<td>It is not possible to delete a recurring sale linked to a contract.</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>RECURRING_SALE_09</td>\n<td>It is not possible to delete a recurring sale that has invoiced sales.</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>RECURRING_SALE_10</td>\n<td>It is not possible to delete a recurring sale that has usages in bookings.</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>...</td>\n<td>...</td>\n<td>...</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["recurringSale",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"1368","key":"id"}]}},"response":[{"id":"356bc02b-effa-4d8f-9ddc-b87027f38a13","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1368"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 18 Aug 2025 11:20:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"17"}],"cookie":[],"responseTime":null,"body":null},{"id":"8d32a1f2-2af6-4487-bc8d-a97b2fcf0ea4","name":"(404) Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"735"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 18 Aug 2025 11:17:37 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This RecurringSale does not exist or you have no permission to access it\"\n}"},{"id":"1c6a9c22-1e58-4129-9174-e2596364808b","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSale/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSale",":id"],"variable":[{"key":"id","value":"1155"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 18 Aug 2025 11:18:52 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"RECURRING_SALE_09\",\n            \"message\": \"It is not possible to delete a recurring sale that has invoiced sales.\"\n        },\n        {\n            \"code\": \"RECURRING_SALE_08\",\n            \"message\": \"It is not possible to delete a recurring sale linked to a contract.\"\n        }\n    ]\n}"}],"_postman_id":"9212387e-310c-4e43-a6fc-ce65ac8d3263"},{"name":"recurringSales","id":"9ba053af-312c-4acb-864a-d518cb97e979","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSales?limit=10","description":"<p>Listagem paginada de Vendas Recorrentes.</p>\n<p>Os itens definidos como array podem ter múltiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Venda Recorrente contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#5f271810-0d9d-4dcc-a4d1-60c18e211e47\">GET /recurringSale/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["recurringSales"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das Vendas Recorrentes</p>\n","type":"text/plain"},"key":"id[]","value":"45,48,1275"},{"disabled":true,"description":{"content":"<p>IDs das Unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>IDs dos Clientes</p>\n","type":"text/plain"},"key":"customerId[]","value":"23, 623"},{"disabled":true,"description":{"content":"<p>IDs dos Serviços/Itens</p>\n","type":"text/plain"},"key":"productId[]","value":"2145, 2154"},{"disabled":true,"description":{"content":"<p>IDs dos Pacotes de Horas</p>\n","type":"text/plain"},"key":"packageId[]","value":"9,5"},{"disabled":true,"description":{"content":"<p>IDs dos vendedores (usuários) que cadastrou a venda</p>\n","type":"text/plain"},"key":"sellerId[]","value":"534"},{"disabled":true,"description":{"content":"<p>Data inicial para o período da primeira ocorrência, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"startDateFrom","value":"2022-01-01"},{"disabled":true,"description":{"content":"<p>Data final para o período da primeira ocorrência, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"startDateTo","value":"2023-12-12"},{"disabled":true,"description":{"content":"<p>Data inicial para o período da data de encerramento, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"endDateFrom","value":"2018-01-01"},{"disabled":true,"description":{"content":"<p>Data final para o período da data de encerramento, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"endDateTo","value":"2023-12-31"},{"disabled":true,"description":{"content":"<p>Data inicial para o período da data de último reajuste, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"lastAdjustmentDateFrom","value":"2022-01-01"},{"disabled":true,"description":{"content":"<p>Data final para o período da data de último reajuste, deve estar no formato 'Y-m-d'</p>\n","type":"text/plain"},"key":"lastAdjustmentDateTo","value":"2024-12-31"},{"disabled":true,"description":{"content":"<p>Se a Venda Recorrente está ativa, deve ser 1 para ativo e 0 para desativado</p>\n","type":"text/plain"},"key":"isActive","value":"0"},{"disabled":true,"description":{"content":"<p>Frequência da Venda Recorrente (Valores aceitos: daily, weekly, monthly, bimonthly, quarterly, semester, yearly). Não disponível para Conexa Recorrência.</p>\n","type":"text/plain"},"key":"frequency","value":"weekly"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"3cc6e78b-eda3-4064-84b8-7e8e7389e78b","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSales?limit=5&offset=15","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSales"],"query":[{"key":"id[]","value":"45,48,1275","description":"IDs das Vendas Recorrentes","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das Unidades","type":"text","disabled":true},{"key":"customerId[]","value":"23, 623","description":"IDs dos Clientes","type":"text","disabled":true},{"key":"productId[]","value":"2145, 2154","description":"IDs dos Serviços/Itens","type":"text","disabled":true},{"key":"packageId[]","value":"9,5","description":"IDs dos Pacotes de Horas","type":"text","disabled":true},{"key":"startDateFrom","value":"2022-01-01","description":"Data inicial para o período da primeira ocorrência, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"startDateTo","value":"2023-12-12","description":"Data final para o período da primeira ocorrência, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"endDateFrom","value":"2018-01-01","description":"Data inicial para o período da data de encerramento, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"endDateTo","value":"2023-12-31","description":"Data final para o período da data de encerramento, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"lastAdjustmentDateFrom","value":"2022-01-01","description":"Data inicial para o período da data de último reajuste, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"lastAdjustmentDateTo","value":"2024-12-31","description":"Data final para o período da data de último reajuste, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"isActive","value":"0","description":"Se a Venda Recorrente está ativa, deve ser 1 para ativo e 0 para desativado","type":"text","disabled":true},{"key":"frequency","value":"weekly","description":"Frequência da Venda Recorrente (Valores aceitos: daily, weekly, monthly, bimonthly, quarterly, semester, yearly). Não disponível para Conexa Recorrência.","type":"text","disabled":true},{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"15","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2024 22:30:03 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"38"},{"key":"Content-Length","value":"2392"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"recurringSaleId\": 10363,\n            \"creatorUserId\": 486,\n            \"customerId\": 588,\n            \"productId\": null,\n            \"packageId\": 78,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": 10362,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 4,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2024-02-21\",\n            \"endDate\": \"2024-03-31\",\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 0,\n            \"notes\": null,\n            \"isActive\": false,\n            \"isCalculateProRata\": false,\n            \"createdAt\": \"2024-03-21T22:07:28-03:00\",\n            \"updatedAt\": \"2024-05-28T15:58:18-03:00\"\n        },\n        {\n            \"recurringSaleId\": 10429,\n            \"creatorUserId\": 486,\n            \"customerId\": 15002,\n            \"productId\": null,\n            \"packageId\": 78,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": 10428,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 75,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2018-04-01\",\n            \"endDate\": \"2022-12-12\",\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 0,\n            \"notes\": null,\n            \"isActive\": false,\n            \"isCalculateProRata\": false,\n            \"createdAt\": \"2024-04-10T21:52:16-03:00\",\n            \"updatedAt\": \"2024-05-28T15:58:18-03:00\"\n        },\n        {\n            \"recurringSaleId\": 10430,\n            \"creatorUserId\": 486,\n            \"customerId\": 15002,\n            \"productId\": null,\n            \"packageId\": 79,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": 10428,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 75,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2018-04-01\",\n            \"endDate\": \"2022-12-12\",\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 0,\n            \"notes\": null,\n            \"isActive\": false,\n            \"isCalculateProRata\": false,\n            \"createdAt\": \"2024-04-10T21:52:16-03:00\",\n            \"updatedAt\": \"2024-05-28T15:58:18-03:00\"\n        },\n        {\n            \"recurringSaleId\": 10431,\n            \"creatorUserId\": 486,\n            \"customerId\": 15002,\n            \"productId\": null,\n            \"packageId\": 80,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": 10428,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 2283,\n            \"frequency\": \"Daily\",\n            \"startDate\": \"2018-04-01\",\n            \"endDate\": \"2022-12-12\",\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 0,\n            \"notes\": null,\n            \"isActive\": false,\n            \"isCalculateProRata\": false,\n            \"createdAt\": \"2024-04-10T21:52:16-03:00\",\n            \"updatedAt\": \"2024-05-28T15:58:18-03:00\"\n        },\n        {\n            \"recurringSaleId\": 10434,\n            \"creatorUserId\": 486,\n            \"customerId\": 15002,\n            \"productId\": null,\n            \"packageId\": 78,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": 10433,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 75,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2018-04-01\",\n            \"endDate\": \"2022-12-12\",\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 0,\n            \"notes\": null,\n            \"isActive\": false,\n            \"isCalculateProRata\": false,\n            \"createdAt\": \"2024-04-10T22:13:07-03:00\",\n            \"updatedAt\": \"2024-05-28T15:58:18-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 5,\n        \"offset\": 15,\n        \"hasNext\": true\n    }\n}"},{"id":"10f02b6f-b4ff-4e62-9fa3-76f14070afec","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSales?limit=5&offset=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSales"],"query":[{"key":"id[]","value":"45,48,1275","description":"IDs das Vendas Recorrentes","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das Unidades","type":"text","disabled":true},{"key":"customerId[]","value":"23, 623","description":"IDs dos Clientes","type":"text","disabled":true},{"key":"productId[]","value":"2145, 2154","description":"IDs dos Serviços/Itens","type":"text","disabled":true},{"key":"packageId[]","value":"9,5","description":"IDs dos Pacotes de Horas","type":"text","disabled":true},{"key":"startDateFrom","value":"2022-01-01","description":"Data inicial para o período da primeira ocorrência, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"startDateTo","value":"2023-12-12","description":"Data final para o período da primeira ocorrência, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"endDateFrom","value":"2018-01-01","description":"Data inicial para o período da data de encerramento, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"endDateTo","value":"2023-12-31","description":"Data final para o período da data de encerramento, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"lastAdjustmentDateFrom","value":"2022-01-01","description":"Data inicial para o período da data de último reajuste, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"lastAdjustmentDateTo","value":"2024-12-31","description":"Data final para o período da data de último reajuste, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"isActive","value":"3","description":"Se a Venda Recorrente está ativa, deve ser 1 para ativo e 0 para desativado","type":"text","disabled":true},{"key":"frequency","value":"weekly","description":"Frequência da Venda Recorrente (Valores aceitos: daily, weekly, monthly, bimonthly, quarterly, semester, yearly). Não disponível para Conexa Recorrência.","type":"text","disabled":true},{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"20","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2024 22:33:22 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"2104"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"recurringSaleId\": 328,\n            \"creatorUserId\": 34,\n            \"customerId\": 92,\n            \"productId\": 2433,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": null,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 7,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2024-02-15\",\n            \"endDate\": null,\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 0,\n            \"notes\": null,\n            \"isActive\": true,\n            \"createdAt\": \"2024-02-15T13:49:59-03:00\",\n            \"updatedAt\": \"2024-06-01T08:23:08-03:00\"\n        },\n        {\n            \"recurringSaleId\": 334,\n            \"creatorUserId\": 34,\n            \"customerId\": 101,\n            \"productId\": 2436,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": null,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 7,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2024-02-20\",\n            \"endDate\": null,\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 25,\n            \"notes\": null,\n            \"isActive\": true,\n            \"createdAt\": \"2024-02-20T13:34:27-03:00\",\n            \"updatedAt\": \"2024-06-01T08:23:08-03:00\"\n        },\n        {\n            \"recurringSaleId\": 335,\n            \"creatorUserId\": 34,\n            \"customerId\": 101,\n            \"productId\": 2434,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": null,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 7,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2024-02-20\",\n            \"endDate\": null,\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 50,\n            \"notes\": null,\n            \"isActive\": true,\n            \"createdAt\": \"2024-02-20T13:34:40-03:00\",\n            \"updatedAt\": \"2024-06-01T08:23:08-03:00\"\n        },\n        {\n            \"recurringSaleId\": 336,\n            \"creatorUserId\": 34,\n            \"customerId\": 101,\n            \"productId\": 2435,\n            \"requesterId\": null,\n            \"recurringSaleContractId\": null,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 7,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2024-02-20\",\n            \"endDate\": null,\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 25,\n            \"notes\": null,\n            \"isActive\": true,\n            \"createdAt\": \"2024-02-20T13:34:57-03:00\",\n            \"updatedAt\": \"2024-06-01T08:23:08-03:00\"\n        },\n        {\n            \"recurringSaleId\": 344,\n            \"creatorUserId\": 45,\n            \"customerId\": 103,\n            \"productId\": 2434,\n            \"requesterId\": 46,\n            \"recurringSaleContractId\": null,\n            \"occurrenceQuantity\": null,\n            \"generatedQuantity\": 7,\n            \"frequency\": \"Monthly\",\n            \"startDate\": \"2024-02-23\",\n            \"endDate\": null,\n            \"lastAdjustmentDate\": null,\n            \"quantity\": 1,\n            \"amount\": 50,\n            \"notes\": null,\n            \"isActive\": true,\n            \"createdAt\": \"2024-02-23T14:32:05-03:00\",\n            \"updatedAt\": \"2024-06-01T08:23:08-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 5,\n        \"offset\": 20,\n        \"hasNext\": true\n    }\n}"},{"id":"5bac03d7-f4f5-4ff3-89c7-5e5a8a7a7142","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/recurringSales?isActive=3&limit=5&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["recurringSales"],"query":[{"key":"id[]","value":"45,48,1275","description":"IDs das Vendas Recorrentes","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das Unidades","type":"text","disabled":true},{"key":"customerId[]","value":"23, 623","description":"IDs dos Clientes","type":"text","disabled":true},{"key":"productId[]","value":"2145, 2154","description":"IDs dos Serviços/Itens","type":"text","disabled":true},{"key":"packageId[]","value":"9,5","description":"IDs dos Pacotes de Horas","type":"text","disabled":true},{"key":"startDateFrom","value":"2022-01-01","description":"Data inicial para o período da primeira ocorrência, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"startDateTo","value":"2023-12-12","description":"Data final para o período da primeira ocorrência, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"endDateFrom","value":"2018-01-01","description":"Data inicial para o período da data de encerramento, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"endDateTo","value":"2023-12-31","description":"Data final para o período da data de encerramento, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"lastAdjustmentDateFrom","value":"2022-01-01","description":"Data inicial para o período da data de último reajuste, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"lastAdjustmentDateTo","value":"2024-12-31","description":"Data final para o período da data de último reajuste, deve estar no formato 'Y-m-d'","type":"text","disabled":true},{"key":"isActive","value":"3","description":"Se a Venda Recorrente está ativa, deve ser 1 para ativo e 0 para desativado"},{"key":"frequency","value":"weekly","description":"Frequência da Venda Recorrente (Valores aceitos: daily, weekly, monthly, bimonthly, quarterly, semester, yearly). Não disponível para Conexa Recorrência.","type":"text","disabled":true},{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2024 22:30:59 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"115"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"isActive\",\n            \"messages\": [\n                \"Is Active must be either 1 or 0\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"9ba053af-312c-4acb-864a-d518cb97e979"}],"id":"82125830-6ba6-4583-8eaa-b1bd76c8f03d","description":"<p>Endpoints que correspondem a Venda Recorrente no sistema Conexa.</p>\n","_postman_id":"82125830-6ba6-4583-8eaa-b1bd76c8f03d","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Product","item":[{"name":"/product/:id","id":"1c0ceb76-9206-439f-90e3-6367611f6bd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","description":"<p>Recuperação dos dados de Itens/Serviços (produtos). Abaixo exibimos uma tabela do que será retornado dado o tipo de versão do software Conexa.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não serão retornados! </p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productId</td>\n<td>integer</td>\n<td>ID do produto</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>categoryId</td>\n<td>integer</td>\n<td>ID da categoria de serviço</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do Serviço/Item</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição do Serviço/Item</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>price</td>\n<td>decimal</td>\n<td>Preço</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Ativo</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isCustomerConsumable</td>\n<td>boolean</td>\n<td>Consumível na Área do Cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notificationsEmails</td>\n<td>array/null</td>\n<td>E-mail de notificação quando uma venda desse produto é realizada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de criação. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data de atualização. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>nfseDescription</td>\n<td>string</td>\n<td>Descrição que aparecerá na nota fiscal</td>\n<td>Todos (dependente de módulo opcional)</td>\n</tr>\n<tr>\n<td>receiptDescription</td>\n<td>string</td>\n<td>Descrição que aparecerá no recibo de locação</td>\n<td>Conexa Coworking (dependente de configuração)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["product",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"2631","key":"id"}]}},"response":[{"id":"4236e6b1-feba-4a90-ac6b-f792f4d90925","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["product",":id"],"variable":[{"key":"id","value":"2493"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Mar 2024 13:56:42 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"368"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"productId\": 2493,\n    \"name\": \"C - Serviço de Motoboy\",\n    \"description\": null,\n    \"price\": 15,\n    \"active\": true,\n    \"isCustomerConsumable\": true,\n    \"createdAt\": \"2019-05-28T14:54:48-03:00\",\n    \"updatedAt\": \"2024-03-20T10:56:36-03:00\",\n    \"categoryId\": 12,\n    \"companyId\": 3,\n    \"costCenterId\": 4,\n    \"notificationsEmails\": [\n        \"lorem.ipsun@dolor.com\",\n        \"ipsum@dolor.ajus\"\n    ],\n    \"nfseDescription\": \"Serviço de transporte\"\n}"},{"id":"21f7ab32-e0bd-4528-aeea-972a1e717271","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["product",":id"],"variable":[{"key":"id","value":"2493"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Mar 2024 13:51:11 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"PHPSESSID=2fbda5f12f9dd40c9c633d8877bac94c; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"6f03dba0-7202-4bb4-bea8-a8b1182823b9","name":"(404) Not Found or Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["product",":id"],"variable":[{"key":"id","value":"3968"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Mar 2024 13:58:10 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"81"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Product does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"1c0ceb76-9206-439f-90e3-6367611f6bd5"},{"name":"/products","id":"96d0abbe-dc78-4327-bb53-4df72189cd78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/products?limit=10","description":"<p>Listagem paginada de Serviços/Itens.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Serviços/Itens contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#1c0ceb76-9206-439f-90e3-6367611f6bd5\">GET /product/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["products"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos produtos</p>\n","type":"text/plain"},"key":"id[]","value":"2493,2521"},{"disabled":true,"description":{"content":"<p>IDs das unidades as quais os produtos estão associados</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>Nome do produto</p>\n","type":"text/plain"},"key":"name","value":"Café"},{"disabled":true,"description":{"content":"<p>Preço do produto (formato moeda internacional)</p>\n","type":"text/plain"},"key":"price","value":"0"},{"disabled":true,"description":{"content":"<p>Deve ser 1 para ativo e 0 para inativo</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"disabled":true,"description":{"content":"<p>Se o produto é consumível pela área do cliente (1 para consumível e 0 para não consumível)</p>\n","type":"text/plain"},"key":"isCustomerConsumable","value":"0"},{"disabled":true,"description":{"content":"<p>Data de criação: define a data a partir de quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtFrom","value":"2024-04-01T12:00:00-03:00"},{"disabled":true,"description":{"content":"<p>Data de criação: define a data até quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtTo","value":"2025-04-01T12:00:00-03:00"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"1d4e7715-df2c-4b1c-ae39-39ea591520f1","name":"(200) Success - Conexa Recorrência","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/products?companyId[]=3&isActive=1&limit=5","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["products"],"query":[{"key":"id[]","value":"2493,2521","description":"IDs dos produtos","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das empresas as quais os produtos estão associados"},{"key":"name","value":"Café","description":"Nome do produto","type":"text","disabled":true},{"key":"price","value":"0","description":"Preço do produto sendo buscado","type":"text","disabled":true},{"key":"isActive","value":"1","description":"Deve ser 1 para produto ativo e 0 para desativado"},{"key":"isCustomerConsumable","value":"0","description":"Se o produto é consumível pela área do cliente (1 para consumível e 0 para não consumível)","type":"text","disabled":true},{"key":"createdAtFrom","value":"2024-04-01T12:00:00-03:00","description":"Data de criação: define a data a partir de quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)","type":"text","disabled":true},{"key":"createdAtTo","value":"2025-04-01T12:00:00-03:00","description":"Data de criação: define a data até quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)","type":"text","disabled":true},{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 20:02:44 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"96"},{"key":"X-Rate-Limit-Reset","value":"40"},{"key":"Content-Length","value":"719"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"productId\": 180,\n            \"name\": \"Taxa de Adesão\",\n            \"description\": null,\n            \"price\": 0,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2015-12-02T12:32:35-02:00\",\n            \"updatedAt\": \"2020-10-19T17:59:04-03:00\",\n            \"categoryId\": 1,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": true,\n            \"nfseDescription\": null\n        },\n        {\n            \"productId\": 2119,\n            \"name\": \"Auditoria\",\n            \"description\": null,\n            \"price\": 500,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2024-05-23T17:02:15-03:00\",\n            \"updatedAt\": \"2024-05-23T17:02:15-03:00\",\n            \"categoryId\": 1,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": false,\n            \"nfseDescription\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 5,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"4a05a560-8c66-4779-88a9-ea724a85f1e7","name":"(200) Success - Conexa Coworking","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/products?isActive=1&limit=5","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["products"],"query":[{"key":"id[]","value":"2493,2521","description":"IDs dos produtos","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das empresas as quais os produtos estão associados","disabled":true},{"key":"name","value":"Café","description":"Nome do produto","type":"text","disabled":true},{"key":"price","value":"0","description":"Preço do produto sendo buscado","type":"text","disabled":true},{"key":"isActive","value":"1","description":"Deve ser 1 para produto ativo e 0 para desativado"},{"key":"isCustomerConsumable","value":"0","description":"Se o produto é consumível pela área do cliente (1 para consumível e 0 para não consumível)","type":"text","disabled":true},{"key":"createdAtFrom","value":"2024-04-01T12:00:00-03:00","description":"Data de criação: define a data a partir de quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)","type":"text","disabled":true},{"key":"createdAtTo","value":"2025-04-01T12:00:00-03:00","description":"Data de criação: define a data até quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)","type":"text","disabled":true},{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 22 May 2024 18:06:01 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"13"},{"key":"Content-Length","value":"1731"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"productId\": 1,\n            \"name\": \"Pré-Venda Pacote de Horas\",\n            \"description\": null,\n            \"price\": 0,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2015-08-22T11:34:51-03:00\",\n            \"updatedAt\": \"2020-10-19T17:59:16-03:00\",\n            \"categoryId\": 1,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": true,\n            \"nfseDescription\": null\n        },\n        {\n            \"productId\": 180,\n            \"name\": \"Taxa de Adesão\",\n            \"description\": null,\n            \"price\": 0,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2015-12-02T12:32:35-03:00\",\n            \"updatedAt\": \"2020-10-19T17:59:16-03:00\",\n            \"categoryId\": 1,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": true,\n            \"nfseDescription\": null\n        },\n        {\n            \"productId\": 2100,\n            \"name\": \"Atendimento Adicional\",\n            \"description\": \"Atendimento Adicional\",\n            \"price\": 0,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2016-06-30T15:35:39-03:00\",\n            \"updatedAt\": \"2020-10-19T17:59:16-03:00\",\n            \"categoryId\": 1,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": true,\n            \"nfseDescription\": \"Atendimento Adicional\"\n        },\n        {\n            \"productId\": 2103,\n            \"name\": \"Telefonia\",\n            \"description\": null,\n            \"price\": null,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2017-07-27T15:26:02-03:00\",\n            \"updatedAt\": \"2020-10-19T17:59:16-03:00\",\n            \"categoryId\": 1,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": true,\n            \"nfseDescription\": null\n        },\n        {\n            \"productId\": 2108,\n            \"name\": \"Impressão P/B\",\n            \"description\": null,\n            \"price\": 0.2,\n            \"active\": true,\n            \"isCustomerConsumable\": false,\n            \"createdAt\": \"2017-12-07T18:31:00-03:00\",\n            \"updatedAt\": \"2019-12-20T17:03:33-03:00\",\n            \"categoryId\": 4,\n            \"companyId\": 3,\n            \"costCenterId\": 1,\n            \"notificationsEmails\": null,\n            \"isDefaultProduct\": false,\n            \"nfseDescription\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 5,\n        \"offset\": 0,\n        \"hasNext\": true\n    }\n}"},{"id":"f2ca8020-328c-490e-99ad-46bb4d6e55c3","name":"(400) Invalid data","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/products?companyId[]=4&limit=5","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["products"],"query":[{"key":"id[]","value":"2493,2521","description":"IDs dos produtos","type":"text","disabled":true},{"key":"companyId[]","value":"4","description":"IDs das empresas as quais os produtos estão associados"},{"key":"name","value":"Café","description":"Nome do produto","type":"text","disabled":true},{"key":"price","value":"0","description":"Preço do produto sendo buscado","type":"text","disabled":true},{"key":"isActive","value":"1","description":"Deve ser 1 para produto ativo e 0 para desativado","type":"text","disabled":true},{"key":"isCustomerConsumable","value":"0","description":"Se o produto é consumível pela área do cliente (1 para consumível e 0 para não consumível)","type":"text","disabled":true},{"key":"createdAtFrom","value":"2024-04-01T12:00:00-03:00","description":"Data de criação: define a data a partir de quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)","type":"text","disabled":true},{"key":"createdAtTo","value":"2025-04-01T12:00:00-03:00","description":"Data de criação: define a data até quando os itens/serviços serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)","type":"text","disabled":true},{"key":"limit","value":"5","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 22 May 2024 18:03:29 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"237"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"admin doesn't have permissions to access this company: 4. The access to this company is required to perform this action. Verify the access and try again\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"96d0abbe-dc78-4327-bb53-4df72189cd78"},{"name":"/product","id":"89f0faad-4874-40d1-b2c2-0b787b887081","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Serviço de Motoboy\",\n    \"description\": \"Serviço de entrega de correspondências\",\n    \"price\": 10.9,\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 7,\n    \"isCustomerConsumable\": false,\n    \"notificationsEmails\": [\"lorem.ipsun@dolor.cirius\", \"ipsun@dolor.cirius\"],\n    \"nfseDescription\": null,\n    \"receiptDescription\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product","description":"<p>Criação de um Item/Serviço no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>price</td>\n<td>decimal</td>\n<td>Valor</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>serviceCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de serviço</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição detalhada</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>isCustomerConsumable</td>\n<td>boolean</td>\n<td>Define se o produto pode ser consumido pela Área do Cliente</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>notificationsEmails</td>\n<td>array of string</td>\n<td>Lista de e-mails para notificação de venda</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>nfseDescription</td>\n<td>string</td>\n<td>Descrição para NFSe. Depende de configuração, módulo ou versão do sistema</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>receiptDescription</td>\n<td>string</td>\n<td>Descrição para recibo. Depende de configuração, módulo ou versão do sistema</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do item/serviço criado</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["product"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"59ce3a95-c940-474c-b4bc-7df2c92a1772","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Serviço de Motoboy\",\n    \"description\": \"Serviço de entrega de correspondências\",\n    \"price\": 10.9,\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 7,\n    \"isCustomerConsumable\": false,\n    \"notificationsEmails\": [\"lorem.ipsun@dolor.cirius\", \"ipsun@dolor.cirius\"],\n    \"nfseDescription\": null,\n    \"receiptDescription\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Feb 2026 21:33:58 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4299\n}"},{"id":"6f72f013-7c07-419b-a2c3-6441361dfabf","name":"(401) Token has expired","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Serviço de Motoboy\",\n    \"description\": \"Serviço de entrega de correspondências\",\n    \"price\": 10.9,\n    \"companyId\": 3,\n    \"categoryId\": 1,\n    \"costCenterId\": 7,\n    \"isCustomerConsumable\": false,\n    \"notificationsEmails\": [\"lorem.ipsun@dolor.cirius\", \"ipsun@dolor.cirius\"],\n    \"nfseDescription\": null,\n    \"receiptDescription\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Feb 2026 21:33:14 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The Bearer Token has expired\"\n}"},{"id":"e1ef2a8e-7126-4b60-9035-ac613bc2db02","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Serviço de Motoboy\",\n    \"description\": \"Serviço de entrega de correspondências\",\n    \"price\": \"10.9\",\n    \"companyId\": 3.1,\n    \"categoryId\": 1,\n    \"costCenterId\": 7,\n    \"isCustomerConsumable\": false,\n    \"notificationsEmails\": [\"lorem.ipsun@dolor.cirius\", \"ipsun@dolor.cirius\"],\n    \"nfseDescription\": null,\n    \"receiptDescription\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Feb 2026 21:34:50 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"7"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"Company Id must be integer\"\n            ]\n        },\n        {\n            \"field\": \"price\",\n            \"messages\": [\n                \"Price must be float\"\n            ]\n        }\n    ]\n}"},{"id":"4a37bbe4-62c7-4c1e-9469-ffe298921ff0","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Serviço de Motoboy\",\n    \"description\": \"Serviço de entrega de correspondências\",\n    \"price\": 10.9,\n    \"companyId\": 3,\n    \"serviceCategoryId\": 1,\n    \"costCenterId\": 7,\n    \"isCustomerConsumable\": false,\n    \"notificationsEmails\": [\"lorem.ipsun@dolor.cirius\", \"ipsun@dolor.cirius\"],\n    \"nfseDescription\": null,\n    \"receiptDescription\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 13 Mar 2026 18:28:03 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"44"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PRODUCT_05\",\n            \"message\": \"There is already a product with that name in this company\"\n        }\n    ]\n}"}],"_postman_id":"89f0faad-4874-40d1-b2c2-0b787b887081"},{"name":"/product/:id","id":"bc8bb99f-e7f6-47ac-8be0-4409b5342b6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","description":"<p>Exclusão de um serviço/item no Conexa.</p>\n<blockquote>\n<p>Obs.: É necessário que o serviço/item esteja desativado para poder ser excluído!</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["product",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"2408","key":"id"}]}},"response":[{"id":"b38ef310-97a2-49b9-a583-0c04b7cb5e72","name":"(204) Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["product",":id"],"variable":[{"key":"id","value":"4299"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 16 Mar 2026 13:36:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":null},{"id":"7a286593-5491-4c46-a3ca-83ca322efab7","name":"(404) Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["product",":id"],"variable":[{"key":"id","value":"42990"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 16 Mar 2026 13:34:25 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Product does not exist or you have no permission to access it\"\n}"},{"id":"ca39ba2b-e412-47f3-8b1d-956ccc81b64a","name":"(422) Unable to process","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/product/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["product",":id"],"variable":[{"key":"id","value":"4299"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 16 Mar 2026 13:34:55 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"30"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PRODUCT_01\",\n            \"message\": \"The product is not deactivated\"\n        }\n    ]\n}"}],"_postman_id":"bc8bb99f-e7f6-47ac-8be0-4409b5342b6b"}],"id":"868c9c08-6c02-4669-9b3e-34c634768565","description":"<p>Endpoints que correspondem a Serviços/Itens no sistema Conexa.</p>\n<h2 id=\"error-response\">Error Response</h2>\n<h3 id=\"422-unable-to-process\">422 Unable to process</h3>\n<p>Abaixo apresentamos os erros que podem ser retornados nestes endpoints.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Message</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PRODUCT_01</td>\n<td>The product is not deactivated</td>\n</tr>\n<tr>\n<td>PRODUCT_02</td>\n<td>The product is not a service/item</td>\n</tr>\n<tr>\n<td>PRODUCT_03</td>\n<td>The product has linked sales</td>\n</tr>\n<tr>\n<td>PRODUCT_04</td>\n<td>The product has recurring sales linked to it</td>\n</tr>\n<tr>\n<td>PRODUCT_05</td>\n<td>There is already a product with that name in this company</td>\n</tr>\n<tr>\n<td>...</td>\n<td>...</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"868c9c08-6c02-4669-9b3e-34c634768565","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Invoicing Method","item":[{"name":"/invoicingMethod/:id","id":"e5251ee1-e594-435e-927c-540548370278","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethod/:id","description":"<p>Recuperação dos dados de um Meio de Faturamento na Conexa.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoicingMethodId</td>\n<td>integer</td>\n<td>ID do meio de faturamento</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do meio de faturamento</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Tipo do meio de faturamento, podendo ser: <strong>others</strong> ou <strong>billet</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Flag se o meio de faturamento está ativo</td>\n<td>Todos</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["invoicingMethod",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"2","key":"id"}]}},"response":[{"id":"25856fe0-7eca-457b-9a5f-faf6bf735d26","name":"(200) Success - Meio de Faturamento Outros (Cartão, Pix, Dinheiro)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethod",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 17:37:07 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"85"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"type\": \"others\",\n    \"invoicingMethodId\": 1,\n    \"name\": \"Outros\",\n    \"companyId\": 3\n}"},{"id":"cec6fbbd-9763-4f9a-9303-1c68ae1dd25a","name":"(200) Success - Meio de Faturamento Boleto","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethod",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 17:39:25 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"88"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"type\": \"billet\",\n    \"invoicingMethodId\": 2,\n    \"name\": \"Itaú\",\n    \"companyId\": 3\n}"},{"id":"dc188652-a291-4cf4-96a7-a350606da3bf","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethod",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Oct 2024 19:16:50 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"},{"id":"5ab99479-c39e-4098-8054-dc2c8535224e","name":"(404) Not Found or Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethod",":id"],"variable":[{"key":"id","value":"255"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 17:40:30 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"90"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Invoicing Method does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"e5251ee1-e594-435e-927c-540548370278"},{"name":"/invoicingMethods","id":"1c82a756-73d8-4f5f-a72d-195c78de5b6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethods?limit=10","description":"<p>Listagem paginada de Meios de Faturamento.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Meios de Faturamento contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#e5251ee1-e594-435e-927c-540548370278\">GET /invoicingMethod/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["invoicingMethods"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos meios de faturamento</p>\n","type":"text/plain"},"key":"id[]","value":"1,2,3"},{"disabled":true,"description":{"content":"<p>IDs das unidades as quais os meios d faturamento estão associados</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>Deve ser 1 para ativo e 0 para inativo</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"disabled":true,"description":{"content":"<p>Tipo de faturamento, podendo ser: billet ou others</p>\n","type":"text/plain"},"key":"type","value":"others"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"72c05155-7547-40c3-863f-470e4cabb1e9","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethods?id[]=1,2&companyId[]=3&isActive=1&type=billet&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethods"],"query":[{"key":"id[]","value":"1,2","description":"IDs dos meios de faturamento"},{"key":"companyId[]","value":"3","description":"IDs das unidades as quais os meios d faturamento estão associados"},{"key":"isActive","value":"1","description":"Deve ser 1 para ativo e 0 para inativo"},{"key":"type","value":"billet","description":"Tipo de faturamento, podendo ser: billet ou others"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Nov 2024 14:04:58 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"48"},{"key":"Content-Length","value":"176"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 2,\n            \"name\": \"Itaú\",\n            \"companyId\": 3\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"aca0c106-b67a-4f47-b11b-6aef2d1f495d","name":"(200) Success - Todos os meios de faturamento ativos da unidade","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethods?companyId[]=3&isActive=1&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethods"],"query":[{"key":"id[]","value":"1,2","description":"IDs dos meios de faturamento","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das unidades as quais os meios d faturamento estão associados"},{"key":"isActive","value":"1","description":"Deve ser 1 para ativo e 0 para inativo"},{"key":"type","value":"billet","description":"Tipo de faturamento, podendo ser: billet ou others","disabled":true},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Nov 2024 14:06:16 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"989"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"isActive\": true,\n            \"type\": \"others\",\n            \"invoicingMethodId\": 1,\n            \"name\": \"Outros\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 2,\n            \"name\": \"Itaú\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 4,\n            \"name\": \"Itaú\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 7,\n            \"name\": \"Caixa\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 9,\n            \"name\": \"Banco do Brasil\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 10,\n            \"name\": \"Sicoob\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 11,\n            \"name\": \"Bradesco\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 13,\n            \"name\": \"Sicredi\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 31,\n            \"name\": \"Boleto Inter\",\n            \"companyId\": 3\n        },\n        {\n            \"isActive\": true,\n            \"type\": \"billet\",\n            \"invoicingMethodId\": 32,\n            \"name\": \"Boleto Gerencianet\",\n            \"companyId\": 3\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": true\n    }\n}"},{"id":"766bdb7c-a5eb-4008-84e1-d26ba3eb4581","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/invoicingMethods?companyId[]=3&isActive=true&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["invoicingMethods"],"query":[{"key":"id[]","value":"1,2","description":"IDs dos meios de faturamento","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das unidades as quais os meios d faturamento estão associados"},{"key":"isActive","value":"true","description":"Deve ser 1 para ativo e 0 para inativo"},{"key":"type","value":"billet","description":"Tipo de faturamento, podendo ser: billet ou others","disabled":true},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Nov 2024 14:07:04 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"12"},{"key":"Content-Length","value":"115"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"isActive\",\n            \"messages\": [\n                \"Is Active must be either 1 or 0\"\n            ]\n        }\n    ]\n}"},{"id":"abc5061a-37d3-454c-bb4a-169ac29cd97a","name":"(400) Invalid set pagination","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/sales?limit=200&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["sales"],"query":[{"key":"limit","value":"200","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Sep 2023 18:57:11 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"124"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"limit\",\n            \"messages\": [\n                \"Limit is too big (maximum is 100)\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"1c82a756-73d8-4f5f-a72d-195c78de5b6e"}],"id":"c607d4f9-5539-484c-ae0d-58428b44667c","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"59e23ae1-4c2e-4aeb-ad23-cf2cad5c9bb3","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"88a499c5-0102-45f4-8ffa-0f3df036c998","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"c607d4f9-5539-484c-ae0d-58428b44667c","description":""},{"name":"Receiving Method","item":[{"name":"/receivingMethod/:id","id":"ef28c6b7-9e92-415a-8232-03a18aa4d069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/receivingMethod/:id","description":"<p>Recuperação dos dados do Meio de Recebimento.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>receivingMethodId</td>\n<td>integer</td>\n<td>ID do meio de recebimento</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do meio de recebimento</td>\n</tr>\n<tr>\n<td>maxInstallments</td>\n<td>integer</td>\n<td>Número máximo de parcelas</td>\n</tr>\n<tr>\n<td>creditDays</td>\n<td>integer</td>\n<td>Tempo para crédito em dias</td>\n</tr>\n<tr>\n<td>isInstallmentFee</td>\n<td>boolean</td>\n<td>Se a tarifa é parcelada</td>\n</tr>\n<tr>\n<td>transactionFee</td>\n<td>decimal</td>\n<td>Tarifa por transação</td>\n</tr>\n<tr>\n<td>transactionRate</td>\n<td>decimal</td>\n<td>Taxa percentual sobre o valor da transação</td>\n</tr>\n<tr>\n<td>accountId</td>\n<td>integer</td>\n<td>ID da conta atribuída</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro de custo da despesa</td>\n</tr>\n<tr>\n<td>billCategoryId</td>\n<td>integer</td>\n<td>ID da categoria da despesa</td>\n</tr>\n<tr>\n<td>billSubcategoryId</td>\n<td>integer</td>\n<td>ID da subcategoria da despesa</td>\n</tr>\n<tr>\n<td>paymentMethodId</td>\n<td>integer</td>\n<td>ID do meio de pagamento</td>\n</tr>\n<tr>\n<td>supplierId</td>\n<td>integer</td>\n<td>ID do fornecedor</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Se o meio de recebimento está ativo</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de criação do meio de recebimento. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string/null</td>\n<td>Data de criação do meio de recebimento. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["receivingMethod",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"11","key":"id"}]}},"response":[{"id":"8353a9e4-51dc-4175-840b-076b1b00f0af","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/receivingMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["receivingMethod",":id"],"variable":[{"key":"id","value":"11"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 03 Feb 2026 23:41:23 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=9ee7a7706dd96b2ad45942cc216b6b78; expires=Wed, 04 Feb 2026 01:41:23 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"receivingMethodId\": 11,\n    \"maxInstallments\": 6,\n    \"creditDays\": 2,\n    \"accountId\": 23,\n    \"costCenterId\": 11,\n    \"billCategoryId\": 4,\n    \"billSubcategoryId\": 29,\n    \"paymentMethodId\": 2,\n    \"supplierId\": 10,\n    \"transactionFee\": 0,\n    \"transactionRate\": 2.99,\n    \"name\": \"Cartão de Crédito\",\n    \"createdAt\": \"2018-06-07T17:53:33-03:00\",\n    \"updatedAt\": \"2018-09-18T14:17:51-03:00\",\n    \"isInstallmentFee\": false,\n    \"isActive\": true\n}"},{"id":"708526b5-67e4-445b-b744-3157097589a5","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/receivingMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["receivingMethod",":id"],"variable":[{"key":"id","value":"100"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 03 Feb 2026 00: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":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"ReceivingMethod \\\"100\\\" not found\"\n}"}],"_postman_id":"ef28c6b7-9e92-415a-8232-03a18aa4d069"},{"name":"/receivingMethods","id":"02be8967-df47-4e5c-b861-5aeccfbfcd58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/receivingMethods?limit=10","description":"<p>Listagem paginada de Meios de Recebimento.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Meios de Recebimento contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#ef28c6b7-9e92-415a-8232-03a18aa4d069\">GET /receivingMethod/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["receivingMethods"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos meios de recebimento</p>\n","type":"text/plain"},"key":"id[]","value":"10,68,69"},{"disabled":true,"description":{"content":"<p>IDs das contas atribuídas</p>\n","type":"text/plain"},"key":"accountId[]","value":"15"},{"disabled":true,"description":{"content":"<p>IDs dos centros de custo da despesa</p>\n","type":"text/plain"},"key":"costCenterId[]","value":"11"},{"disabled":true,"description":{"content":"<p>IDs dos meios de pagamento da despesa</p>\n","type":"text/plain"},"key":"paymentMethodId[]","value":"2"},{"disabled":true,"description":{"content":"<p>Nome do meio de recebimento</p>\n","type":"text/plain"},"key":"name","value":"pix"},{"disabled":true,"description":{"content":"<p>Número máximo de parcelas</p>\n","type":"text/plain"},"key":"maxInstallments","value":"6"},{"disabled":true,"description":{"content":"<p>Tempo para crédito (em dias)</p>\n","type":"text/plain"},"key":"creditDays","value":"0"},{"disabled":true,"description":{"content":"<p>Tarifa parcelada (1 = sim, 0 = não)</p>\n","type":"text/plain"},"key":"isInstallmentFee","value":"1"},{"disabled":true,"description":{"content":"<p>Tarifa por transação (aceita decimal)</p>\n","type":"text/plain"},"key":"transactionFee","value":"2.99"},{"disabled":true,"description":{"content":"<p>Taxa percentual sobre o valor da transação (aceita decimal)</p>\n","type":"text/plain"},"key":"transactionRate","value":"0.5"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"34da65a1-dd38-42dd-9d6a-fdc6809eda47","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/receivingMethods?id[]=10,68,69&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["receivingMethods"],"query":[{"key":"id[]","value":"10,68,69","description":"IDs dos meios de recebimento"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 04 Feb 2026 13:53:08 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=0ab7de2de8df00a43824d3ae48eb2bd0; expires=Wed, 04 Feb 2026 15:53:08 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"receivingMethodId\": 10,\n            \"maxInstallments\": 1,\n            \"creditDays\": 0,\n            \"accountId\": 1,\n            \"costCenterId\": null,\n            \"billCategoryId\": null,\n            \"billSubcategoryId\": null,\n            \"paymentMethodId\": null,\n            \"supplierId\": null,\n            \"transactionFee\": 0,\n            \"transactionRate\": 0,\n            \"name\": \"Dinheiro\",\n            \"createdAt\": \"2018-06-04T16:31:15-03:00\",\n            \"updatedAt\": \"2018-08-24T16:18:41-03:00\",\n            \"isInstallmentFee\": false,\n            \"isActive\": true\n        },\n        {\n            \"receivingMethodId\": 68,\n            \"maxInstallments\": 6,\n            \"creditDays\": 15,\n            \"accountId\": 23,\n            \"costCenterId\": 11,\n            \"billCategoryId\": 6,\n            \"billSubcategoryId\": 38,\n            \"paymentMethodId\": 20,\n            \"supplierId\": 3,\n            \"transactionFee\": 0.49,\n            \"transactionRate\": 1.39,\n            \"name\": \"Rede\",\n            \"createdAt\": \"2026-02-04T11:52:55-03:00\",\n            \"updatedAt\": null,\n            \"isInstallmentFee\": true,\n            \"isActive\": true\n        },\n        {\n            \"receivingMethodId\": 69,\n            \"maxInstallments\": 1,\n            \"creditDays\": 30,\n            \"accountId\": 15,\n            \"costCenterId\": null,\n            \"billCategoryId\": null,\n            \"billSubcategoryId\": null,\n            \"paymentMethodId\": null,\n            \"supplierId\": null,\n            \"transactionFee\": 0,\n            \"transactionRate\": 0,\n            \"name\": \"Cheque\",\n            \"createdAt\": \"2026-02-04T11:52:50-03:00\",\n            \"updatedAt\": null,\n            \"isInstallmentFee\": false,\n            \"isActive\": true\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"3efa9259-4c01-4eec-86d2-b5ffc45ed037","name":"(400) Filter field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/receivingMethods?isInstallmentFee=5&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["receivingMethods"],"query":[{"key":"id[]","value":"10,68,69","description":"IDs dos meios de recebimento","disabled":true},{"key":"accountId[]","value":"15","description":"IDs das contas atribuídas","type":"text","disabled":true},{"key":"costCenterId[]","value":"11","description":"IDs dos centros de custo da despesa","type":"text","disabled":true},{"key":"paymentMethodId[]","value":"2","description":"IDs dos meios de pagamento da despesa","type":"text","disabled":true},{"key":"name","value":"pix","description":"Nome do meio de recebimento","type":"text","disabled":true},{"key":"maxInstallments","value":"6","description":"Número máximo de parcelas","type":"text","disabled":true},{"key":"creditDays","value":"0","description":"Tempo para crédito (em dias)","type":"text","disabled":true},{"key":"isInstallmentFee","value":"5","description":"Tarifa parcelada (1 = sim, 0 = não)"},{"key":"transactionFee","value":"2.99","description":"Tarifa por transação (aceita decimal)","type":"text","disabled":true},{"key":"transactionRate","value":"0.5","description":"Taxa percentual sobre o valor da transação (aceita decimal)","type":"text","disabled":true},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 04 Feb 2026 14:34:15 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"isInstallmentFee\",\n            \"messages\": [\n                \"Is Installment Fee must be either 1 or 0\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"02be8967-df47-4e5c-b861-5aeccfbfcd58"}],"id":"d822a9a6-d2a0-4e96-809c-8cb00a9d8e3d","_postman_id":"d822a9a6-d2a0-4e96-809c-8cb00a9d8e3d","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Payment Method","item":[{"name":"/paymentMethod/:id","id":"e6ea65ab-e8f2-4d48-a481-f3dcf1d15112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/paymentMethod/:id","description":"<p>Recuperação dos dados do Meio de Recebimento.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentMethodId</td>\n<td>integer</td>\n<td>ID do meio de pagamento</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome do meio de pagamento</td>\n</tr>\n<tr>\n<td>maxInstallments</td>\n<td>integer</td>\n<td>Número máximo de parcelas</td>\n</tr>\n<tr>\n<td>accountId</td>\n<td>integer/null</td>\n<td>ID da conta atribuída ao meio de pagamento</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Indica se o meio de pagamento está ativo</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data-hora de criação. Padrão ISO 8601 (Y-m-d\\TH:i:sP)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string/null</td>\n<td>Data-hora da última atualização. Padrão ISO 8601 (Y-m-d\\TH:i:sP)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["paymentMethod",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"4","key":"id"}]}},"response":[{"id":"3fad96f7-c59f-4e19-a7b9-c34da41d7128","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/paymentMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["paymentMethod",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 03 Feb 2026 23:48:16 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=9ee7a7706dd96b2ad45942cc216b6b78; expires=Wed, 04 Feb 2026 01:48:16 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"maxInstallments\": 1,\n    \"accountId\": null,\n    \"name\": \"Débito em Conta\",\n    \"isActive\": true,\n    \"paymentMethodId\": 2,\n    \"createdAt\": \"2017-03-10T17:26:20-03:00\",\n    \"updatedAt\": null\n}"},{"id":"8c42c444-1b8d-49e7-847b-acb99dc2c10a","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/paymentMethod/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["paymentMethod",":id"],"variable":[{"key":"id","value":"48"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 04 Feb 2026 13:20:15 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Payment Method \\\"48\\\" not found\"\n}"}],"_postman_id":"e6ea65ab-e8f2-4d48-a481-f3dcf1d15112"},{"name":"/paymentMethods","id":"a56fe773-4ef3-4caf-ad59-23796dfcdd18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/paymentMethods?limit=10","description":"<p>Listagem paginada de Meios de Pagamento.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Meios de Pagamento contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#e6ea65ab-e8f2-4d48-a481-f3dcf1d15112\">GET /paymentMethod/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["paymentMethods"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos meios de pagamento</p>\n","type":"text/plain"},"key":"id[]","value":"1,2,3"},{"disabled":true,"description":{"content":"<p>IDs das contas atribuídas</p>\n","type":"text/plain"},"key":"accountId[]","value":"28"},{"disabled":true,"description":{"content":"<p>Nome do meio de pagamento</p>\n","type":"text/plain"},"key":"name","value":"pix"},{"disabled":true,"description":{"content":"<p>Número máximo de parcelas</p>\n","type":"text/plain"},"key":"maxInstallments","value":"12"},{"disabled":true,"description":{"content":"<p>Status de ativação (1 = ativo, 0 = inativo)</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"feb31dd8-2a9c-40ee-b03d-5a1ef38c2cb6","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/paymentMethods?limit=20&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["paymentMethods"],"query":[{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 06 Feb 2026 01:20:45 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=b15b387dbcdd5a47d7d1c5454d5bf385; expires=Fri, 06 Feb 2026 03:20:45 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"maxInstallments\": 12,\n            \"accountId\": null,\n            \"name\": \"Dinheiro\",\n            \"isActive\": true,\n            \"paymentMethodId\": 1,\n            \"createdAt\": \"2015-08-27T16:39:29-03:00\",\n            \"updatedAt\": \"2018-08-24T16:20:23-03:00\"\n        },\n        {\n            \"maxInstallments\": 1,\n            \"accountId\": null,\n            \"name\": \"Débito em Conta\",\n            \"isActive\": true,\n            \"paymentMethodId\": 2,\n            \"createdAt\": \"2017-03-10T17:26:20-03:00\",\n            \"updatedAt\": null\n        },\n        {\n            \"maxInstallments\": 1,\n            \"accountId\": 3,\n            \"name\": \"Cheque\",\n            \"isActive\": true,\n            \"paymentMethodId\": 3,\n            \"createdAt\": \"2018-03-27T14:30:21-03:00\",\n            \"updatedAt\": null\n        },\n        {\n            \"maxInstallments\": 1,\n            \"accountId\": null,\n            \"name\": \"Transferência Bancária\",\n            \"isActive\": true,\n            \"paymentMethodId\": 4,\n            \"createdAt\": \"2018-04-17T09:16:05-03:00\",\n            \"updatedAt\": null\n        },\n        {\n            \"maxInstallments\": 1,\n            \"accountId\": 28,\n            \"name\": \"Boleto Bancário\",\n            \"isActive\": true,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2018-04-17T09:16:30-03:00\",\n            \"updatedAt\": null\n        },\n        {\n            \"maxInstallments\": 1,\n            \"accountId\": null,\n            \"name\": \"Boleto Inter\",\n            \"isActive\": true,\n            \"paymentMethodId\": 19,\n            \"createdAt\": \"2026-02-05T22:20:08-03:00\",\n            \"updatedAt\": null\n        },\n        {\n            \"maxInstallments\": 1,\n            \"accountId\": null,\n            \"name\": \"Pix\",\n            \"isActive\": true,\n            \"paymentMethodId\": 25,\n            \"createdAt\": \"2026-02-05T12:20:13-03:00\",\n            \"updatedAt\": null\n        },\n        {\n            \"maxInstallments\": 3,\n            \"accountId\": null,\n            \"name\": \"No Fio do Bigode\",\n            \"isActive\": false,\n            \"paymentMethodId\": 20,\n            \"createdAt\": \"2019-08-19T19:16:30-03:00\",\n            \"updatedAt\": \"2026-02-04T10:12:30-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"ad769e7d-6083-4162-9546-96c1d5c3b282","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/paymentMethods?name=pix🔥&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["paymentMethods"],"query":[{"key":"id[]","value":"10,68,69","description":"IDs dos meios de pagamento","type":"text","disabled":true},{"key":"accountId[]","value":"15","description":"IDs das contas atribuídas","type":"text","disabled":true},{"key":"name","value":"pix🔥","description":"Nome do meio de pagamento"},{"key":"maxInstallments","value":"6","description":"Número máximo de parcelas","type":"text","disabled":true},{"key":"isActive","value":"1","description":"Status de ativação (1 = ativo, 0 = inativo)","type":"text","disabled":true},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 06 Feb 2026 01:24:19 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"96"},{"key":"X-Rate-Limit-Reset","value":"19"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"name\",\n            \"messages\": [\n                \"Name contains invalid characters\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"a56fe773-4ef3-4caf-ad59-23796dfcdd18"}],"id":"828655c0-e27b-49b2-9bbd-1494e71a9c87","_postman_id":"828655c0-e27b-49b2-9bbd-1494e71a9c87","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Charge","item":[{"name":"/charge","id":"7f1a656d-ce87-4653-b0a3-7238a93cee7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [188087, 188088],\n    \"invoicingMethodId\": 2,\n    \"dueDate\": \"2024-12-01\",\n    \"notes\": \"Lorem ipsum eget morbi\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge","description":"<p>Criação de uma cobrança avulsa no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>salesIds</td>\n<td>array of integer</td>\n<td>IDs das Vendas a serem faturadas. Informe apenas vendas pertencentes a um único cliente.</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>invoicingMethodId</td>\n<td>integer</td>\n<td>ID do Meio de Faturamento a ser utilizado</td>\n<td>Não, meio de faturamento do cliente por padrão</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>string</td>\n<td>Data de vencimento da cobrança. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não, data atual por padrão</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações da cobrança</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da cobrança criada</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["charge"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"1dd57f44-e860-4590-9231-8731c4f0bc18","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [188089],\n    \"invoicingMethodId\": 1,\n    \"dueDate\": \"2024-12-02\",\n    \"notes\": \"Lorem ipsum eget morbi\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 Nov 2024 02:33:40 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"36"},{"key":"Content-Length","value":"13"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 300496\n}"},{"id":"77de80ea-d983-440f-bfe5-3bbb5db6607b","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [],\n    \"invoicingMethodId\": 1,\n    \"dueDate\": \"2024-12-01\",\n    \"notes\": \"Lorem ipsun dolor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Nov 2024 11:13:09 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"109"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"salesIds\",\n            \"messages\": [\n                \"Sales IDs cannot be blank\"\n            ]\n        }\n    ]\n}"},{"id":"afc213ba-5189-4436-bb87-d7c846032c49","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [188085, 188085],\n    \"invoicingMethodId\": 2,\n    \"dueDate\": \"2024-12-01\",\n    \"notes\": \"Lorem ipsum eget morbi a est platea sapien netus justo, sapien donec pharetra enim purus ipsum purus viverra tincidunt pharetra, a vestibulum pulvinar etiam bibendum aliquam commodo hac. scelerisque placerat et conubia cursus volutpat ligula fermentum nisl auctor netus dolor mi mattis, quisque libero faucibus nostra feugiat pretium turpis ac feugiat at fermentum. consequat sapien vulputate nisi mollis conubia eget hendrerit turpis, porttitor urna vulputate nisi pharetra commodo lacus quam, eu nulla nam ligula metus aptent nam. sagittis sodales odio potenti ante varius semper primis torquent, mollis rutrum fringilla hendrerit nibh mattis in iaculis cras, vivamus porttitor non et netus volutpat ultricies.\\nInteger varius dolor pulvinar commodo et dictumst ornare vivamus, etiam inceptos imperdiet aliquam aenean duis urna ac, orci lobortis curae eros convallis elementum scelerisque. primis aliquam nostra vulputate dapibus vivamus quam turpis molestie leo, quisque velit nam iaculis enim tristique turpis morbi, nulla cubilia litora convallis posuere nec donec auctor. vitae ut lobortis cras orci etiam quis, netus curabitur tincidunt aliquam donec fusce, faucibus quis scelerisque sodales cubilia. consectetur suspendisse aenean himenaeos fermentum erat iaculis et feugiat potenti posuere nunc elementum tincidunt bibendum aenean cras tortor fusce, dictum aptent luctus torquent lectus dictum cubilia urna taciti habitasse congue aptent tempor lacinia dictum imperdiet hendrerit.\\nVehicula senectus adipiscing congue rhoncus viverra habitasse mollis vehicula posuere, enim venenatis quis placerat fames egestas sem dolor. tristique pretium aptent tempus, vehicula potenti.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Nov 2024 11:39:46 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"5"},{"key":"Content-Length","value":"116"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"salesIds\",\n            \"messages\": [\n                \"Duplicate values are not allowed\"\n            ]\n        }\n    ]\n}"},{"id":"705b592a-8353-42b4-bcac-0b72646afab3","name":"(404) Not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [188513, 188512, 1],\n    \"invoicingMethodId\": 1,\n    \"dueDate\": \"2024-12-01\",\n    \"notes\": \"Lorem ipsun dolor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Nov 2024 11:16:44 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Content-Length","value":"86"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"These Sales does not exist or you have no permission to access them: [1]\"\n}"},{"id":"6876d462-ee3b-4af9-8f15-597ee206ad5a","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [188513, 188512, 187524],\n    \"invoicingMethodId\": 1,\n    \"dueDate\": \"2024-12-01\",\n    \"notes\": \"Lorem ipsun dolor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Nov 2024 11:16:03 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"46"},{"key":"Content-Length","value":"156"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CHARGE_01\",\n            \"message\": \"You must report sales that belong to a single customer\"\n        }\n    ]\n}"},{"id":"b8095446-d995-4c7d-8f54-66721989f99a","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"salesIds\": [188513, 188512],\n    \"invoicingMethodId\": 2,\n    \"dueDate\": \"2024-12-01\",\n    \"notes\": \"Lorem ipsun dolor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Nov 2024 11:36:35 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"160"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CHARGE_02\",\n            \"message\": \"The following sales are already invoiced: [188512, 188513]\"\n        }\n    ]\n}"}],"_postman_id":"7f1a656d-ce87-4653-b0a3-7238a93cee7b"},{"name":"/charge/:id","id":"33af73f3-8af8-4749-a217-dc735495f966","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","description":"<p>Recuperação da cobrança dado o seu ID. Abaixo exibimos uma tabela dos possíveis valores que será retornado nos campos.</p>\n<blockquote>\n<p>⚠ Fique atento ao produto do seu sistema. Há campos que não serão retornados! </p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>chargeId</td>\n<td>integer</td>\n<td>ID da cobrança</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>accountId</td>\n<td>integer</td>\n<td>ID da conta</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>receivingMethod</td>\n<td>string/null</td>\n<td>Nome do meio de recebimento configurado</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Tipo. Podendo ser: <strong>loose</strong>, <strong>contractual</strong>, <strong>returnableDeposit</strong>, <strong>contractualPlan</strong> ou <strong>contractualServices</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Status. Podendo ser: <strong>unpaid</strong>, <strong>paid</strong>, <strong>negotiated</strong>, <strong>generatedByNegotiation</strong>, <strong>cancelled</strong>, <strong>denied</strong>, <strong>thirdPartyCompany</strong>, <strong>protested</strong>, <strong>juridical</strong> ou <strong>excluded</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>string</td>\n<td>Origem do faturamento. Podendo ser: <strong>default</strong>, <strong>onlineHiring</strong> ou <strong>invoicing</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>currentAmount</td>\n<td>deciaml</td>\n<td>Valor atual considerando juros e multa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>rawAmount</td>\n<td>decimal</td>\n<td>Valor bruto</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paidAmount</td>\n<td>decimal</td>\n<td>Valor pago</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>installmentNumber</td>\n<td>integer</td>\n<td>Número da parcela (caso a cobrança seja parcelada)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>totalInstallmentsAmount</td>\n<td>integer</td>\n<td>Total da quantidade de parcelas (caso a cobrança seja parcelada)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>fatherChargeId</td>\n<td>integer</td>\n<td>Id da cobrança pai</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>originalChargeId</td>\n<td>integer</td>\n<td>Id da cobrança original</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>string</td>\n<td>Data de vencimento. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentDate</td>\n<td>string</td>\n<td>Data de quitação. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>competenceDate</td>\n<td>string</td>\n<td>Data de competência. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>customerViews</td>\n<td>integer</td>\n<td>Número visualizações da cobrança pelo cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>hasISSRetention</td>\n<td>boolean</td>\n<td>Identificação se o cliente retém ISS</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>ISSAmount</td>\n<td>decimal</td>\n<td>Valor correspondente da retenção de ISS do cliente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>taxInvoiceNumber</td>\n<td>integer/null</td>\n<td>Número da Nota Fiscal de Serviço emitada (caso exista)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>chargeUrl</td>\n<td>string</td>\n<td>URL da fatura</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>billetDigitableLine</td>\n<td>string</td>\n<td>Linha digitável do boleto (caso a cobrança foi faturada por um boleto)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>billetUrl</td>\n<td>string</td>\n<td>URL do PDF do boleto</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>salesIds</td>\n<td>array</td>\n<td>Ids das vendas faturadas</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de emissão. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data da última atualização. Formato W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>discountAmount</td>\n<td>decimal</td>\n<td>Valor de desconto na cobrança</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentDiscountAmount</td>\n<td>decimal</td>\n<td>Valor de desconto na quitação</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>conditionalDiscount</td>\n<td>string</td>\n<td>Resumo do desconto condicional configurado</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>conditionalDiscountFixedAmount</td>\n<td>decimal</td>\n<td>Valor fixado do desconto condicional</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>conditionalDiscountPercentage</td>\n<td>decimal</td>\n<td>Porcentagem do desconto condicional</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>conditionalDiscountType</td>\n<td>string</td>\n<td>Tipo de desconto condicional. Podendo ser: <strong>fixed</strong> ou <strong>percentage</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>conditionalDiscountDate</td>\n<td>string</td>\n<td>Data limite para o desconto condicional. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cancelDate</td>\n<td>string</td>\n<td>Data de cancelamento da cobrança. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>receiptAmount</td>\n<td>decimal</td>\n<td>Valor da Fatura/Recibo</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>rawReceiptAmount</td>\n<td>decimal</td>\n<td>Valor bruto da Fatura/Recibo</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>receiptDescription</td>\n<td>string</td>\n<td>Descrição adicional a Fatura/Recibo</td>\n<td>Conexa Coworking</td>\n</tr>\n<tr>\n<td>receiptCode</td>\n<td>string</td>\n<td>Código da Fatura/Recibo</td>\n<td>Conexa Coworking</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><p>Caso deseje obter o valor de desconto concedida à cobrança, basta subtrair o valor bruto (<code>rawAmount</code>) pelo valor da cobrança (<code>amount</code>);</p>\n</li>\n<li><p>Caso deseje obter o valor de desconto concedido na quitação da cobrança, basta subtrair o valor pago (<code>paidAmount</code>) pelo valor da cobrança (<code>amount</code>) ou pelo valor atual da cobrança (<code>currentAmount</code>) se existir juros e multa.</p>\n</li>\n</ul>\n","urlObject":{"path":["charge",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"300459","key":"id"}]}},"response":[{"id":"5fe85bce-8289-4fdb-95a3-be8430dbd7fb","name":"(200) Success - Conexa Recorrência - Cobrança de depósito retornável em aberto","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 23:45:00 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"926"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeId\": 2,\n    \"receivingMethod\": null,\n    \"type\": \"returnableDeposit\",\n    \"status\": \"unpaid\",\n    \"origin\": \"default\",\n    \"amount\": 5.25,\n    \"currentAmount\": 5.25,\n    \"rawAmount\": 5.25,\n    \"paidAmount\": null,\n    \"installmentNumber\": 1,\n    \"totalInstallmentsAmount\": 1,\n    \"fatherChargeId\": 0,\n    \"originalChargeId\": 0,\n    \"dueDate\": \"2024-05-25\",\n    \"paymentDate\": null,\n    \"competenceDate\": null,\n    \"customerViews\": 0,\n    \"createdAt\": \"2024-05-24T19:03:33-03:00\",\n    \"hasISSRetention\": false,\n    \"ISSAmount\": 0,\n    \"notes\": \"\",\n    \"taxInvoiceNumber\": null,\n    \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=a4fb31e0374a8c22ec4e875b47091a28\",\n    \"billetDigitableLine\": null,\n    \"billetUrl\": null,\n    \"salesIds\": null,\n    \"companyId\": 3,\n    \"customerId\": 32,\n    \"accountId\": null,\n    \"discountAmount\": 0,\n    \"paymentDiscountAmount\": null,\n    \"conditionalDiscount\": null,\n    \"conditionalDiscountFixedAmount\": 0,\n    \"conditionalDiscountPercentage\": 0,\n    \"conditionalDiscountType\": null,\n    \"conditionalDiscountDate\": null,\n    \"cancelDate\": null,\n    \"updatedAt\": \"2024-05-24T19:03:33-03:00\"\n}"},{"id":"c0c5d5ea-4838-4294-beb6-d3c1cf1f6eaa","name":"(200) Success - Conexa Recorrência - Cobrança contratual em aberto","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 23:49:28 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"994"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeId\": 3,\n    \"receivingMethod\": null,\n    \"type\": \"contractual\",\n    \"status\": \"unpaid\",\n    \"origin\": \"default\",\n    \"amount\": 2099.72,\n    \"currentAmount\": 2177.75,\n    \"rawAmount\": 2099.72,\n    \"paidAmount\": null,\n    \"installmentNumber\": 1,\n    \"totalInstallmentsAmount\": 1,\n    \"fatherChargeId\": 0,\n    \"originalChargeId\": 0,\n    \"dueDate\": \"2024-04-05\",\n    \"paymentDate\": null,\n    \"competenceDate\": \"2024-04-01\",\n    \"customerViews\": 0,\n    \"createdAt\": \"2024-05-27T17:46:38-03:00\",\n    \"hasISSRetention\": false,\n    \"ISSAmount\": 0,\n    \"notes\": \"\",\n    \"taxInvoiceNumber\": null,\n    \"chargeUrl\": \"https://staging.conexa.app/index.php?r=cobranca/fatura&id=918cfd5a74f61c95a527fe6e51434871\",\n    \"billetDigitableLine\": null,\n    \"billetUrl\": null,\n    \"salesIds\": [\n        39,\n        40,\n        41,\n        42,\n        43,\n        44,\n        45,\n        46,\n        47,\n        48,\n        49,\n        60\n    ],\n    \"companyId\": 3,\n    \"customerId\": 31,\n    \"accountId\": null,\n    \"discountAmount\": 0,\n    \"paymentDiscountAmount\": null,\n    \"conditionalDiscount\": null,\n    \"conditionalDiscountFixedAmount\": 0,\n    \"conditionalDiscountPercentage\": 0,\n    \"conditionalDiscountType\": null,\n    \"conditionalDiscountDate\": null,\n    \"cancelDate\": null,\n    \"updatedAt\": \"2024-05-27T17:46:38-03:00\"\n}"},{"id":"dbb01cfa-87a7-4ec1-a76b-e2877a889be3","name":"(200) Success - Conexa Recorrência - Cobrança avulsa quitada manualmente com desconto no faturamento","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2024 23:54:29 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"37"},{"key":"Content-Length","value":"959"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeId\": 4,\n    \"receivingMethod\": \"Transferência Bancária\",\n    \"type\": \"loose\",\n    \"status\": \"paid\",\n    \"origin\": \"default\",\n    \"amount\": 350,\n    \"currentAmount\": 350,\n    \"rawAmount\": 500,\n    \"paidAmount\": 350,\n    \"installmentNumber\": 1,\n    \"totalInstallmentsAmount\": 1,\n    \"fatherChargeId\": 0,\n    \"originalChargeId\": 0,\n    \"dueDate\": \"2024-05-27\",\n    \"paymentDate\": \"2024-05-27\",\n    \"competenceDate\": \"2024-05-27\",\n    \"customerViews\": 0,\n    \"createdAt\": \"2024-05-27T20:52:42-03:00\",\n    \"hasISSRetention\": false,\n    \"ISSAmount\": 0,\n    \"notes\": \"\",\n    \"taxInvoiceNumber\": null,\n    \"chargeUrl\": \"https://staging.conexa.app/index.php?r=cobranca/fatura&id=d123099b2096cd69ee56747892d30c92\",\n    \"billetDigitableLine\": null,\n    \"billetUrl\": null,\n    \"salesIds\": [\n        61\n    ],\n    \"companyId\": 3,\n    \"customerId\": 31,\n    \"accountId\": 2,\n    \"discountAmount\": 150,\n    \"paymentDiscountAmount\": null,\n    \"conditionalDiscount\": null,\n    \"conditionalDiscountFixedAmount\": 0,\n    \"conditionalDiscountPercentage\": 0,\n    \"conditionalDiscountType\": null,\n    \"conditionalDiscountDate\": null,\n    \"cancelDate\": null,\n    \"updatedAt\": \"2024-05-27T17:52:55-03:00\"\n}"},{"id":"2eaab43f-e6ea-4875-87cf-31c83162dfec","name":"(200) Success - Conexa Coworking - Cobrança negociada","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"300445"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 00:01:35 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1237"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeId\": 300445,\n    \"receivingMethod\": null,\n    \"type\": \"loose\",\n    \"status\": \"negotiated\",\n    \"origin\": \"default\",\n    \"amount\": 1236.78,\n    \"currentAmount\": 2089.33,\n    \"rawAmount\": 1236.78,\n    \"paidAmount\": null,\n    \"installmentNumber\": 1,\n    \"totalInstallmentsAmount\": 1,\n    \"fatherChargeId\": 0,\n    \"originalChargeId\": 0,\n    \"dueDate\": \"2023-11-09\",\n    \"paymentDate\": null,\n    \"competenceDate\": null,\n    \"customerViews\": 0,\n    \"createdAt\": \"2023-10-25T10:31:37-03:00\",\n    \"hasISSRetention\": false,\n    \"ISSAmount\": 0,\n    \"notes\": \"Parcela 1 de 2 da negociação das seguintes cobranças:\\r\\n# ID: 300436 | Vencimento: 20/10/2023 | Valor: 2.386,10\",\n    \"taxInvoiceNumber\": null,\n    \"chargeUrl\": \"https://staging.conexa.app/index.php?r=cobranca/fatura&id=4f8ca76104912ca53d3169b948ef4db3\",\n    \"billetDigitableLine\": null,\n    \"billetUrl\": \"https://staging.conexa.app/index.php?r=cobranca/boleto&id=4f8ca76104912ca53d3169b948ef4db3\",\n    \"salesIds\": null,\n    \"companyId\": 3,\n    \"customerId\": 245,\n    \"accountId\": null,\n    \"discountAmount\": 0,\n    \"paymentDiscountAmount\": null,\n    \"conditionalDiscount\": null,\n    \"conditionalDiscountFixedAmount\": 0,\n    \"conditionalDiscountPercentage\": 0,\n    \"conditionalDiscountType\": null,\n    \"conditionalDiscountDate\": null,\n    \"cancelDate\": null,\n    \"updatedAt\": \"2024-04-30T11:30:10-03:00\",\n    \"receiptAmount\": 0,\n    \"rawReceiptAmount\": 0,\n    \"receiptDescription\": null,\n    \"receiptCode\": null\n}"},{"id":"1486475b-f19f-4d9e-a562-ae67ad71e171","name":"(200) Success - Conexa Coworking - Cobrança em aberto gerada por negociação","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"300459"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 00:02:10 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"25"},{"key":"Content-Length","value":"1285"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeId\": 300459,\n    \"receivingMethod\": null,\n    \"type\": \"loose\",\n    \"status\": \"unpaid\",\n    \"origin\": \"default\",\n    \"amount\": 1974.01,\n    \"currentAmount\": 2184.4,\n    \"rawAmount\": 1974.01,\n    \"paidAmount\": null,\n    \"installmentNumber\": 1,\n    \"totalInstallmentsAmount\": 1,\n    \"fatherChargeId\": 0,\n    \"originalChargeId\": 0,\n    \"dueDate\": \"2024-05-01\",\n    \"paymentDate\": null,\n    \"competenceDate\": null,\n    \"customerViews\": 0,\n    \"createdAt\": \"2024-04-30T11:29:59-03:00\",\n    \"hasISSRetention\": false,\n    \"ISSAmount\": 0,\n    \"notes\": \"Parcela 1 de 1 da negociação das seguintes cobranças:\\r\\n# ID: 300445 | Vencimento: 09/11/2023 | Valor: 1.236,78\",\n    \"taxInvoiceNumber\": null,\n    \"chargeUrl\": \"https://staging.conexa.app/index.php?r=cobranca/fatura&id=3e6dae15090e092e5eb38d9b691d8670\",\n    \"billetDigitableLine\": null,\n    \"billetUrl\": \"https://staging.conexa.app/index.php?r=cobranca/boleto&id=3e6dae15090e092e5eb38d9b691d8670\",\n    \"salesIds\": null,\n    \"companyId\": 3,\n    \"customerId\": 245,\n    \"accountId\": null,\n    \"discountAmount\": 0,\n    \"paymentDiscountAmount\": null,\n    \"conditionalDiscount\": \"R$ 5,00 se pago até o dia 16/04/2024 \",\n    \"conditionalDiscountFixedAmount\": 5,\n    \"conditionalDiscountPercentage\": 0,\n    \"conditionalDiscountType\": \"fixed\",\n    \"conditionalDiscountDate\": \"2024-04-16\",\n    \"cancelDate\": null,\n    \"updatedAt\": \"2024-04-30T11:29:59-03:00\",\n    \"receiptAmount\": 0,\n    \"rawReceiptAmount\": 0,\n    \"receiptDescription\": null,\n    \"receiptCode\": null\n}"},{"id":"97fe1438-c1c9-4a89-bf38-eebb192707a8","name":"(403) Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"300459"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 00:03:21 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"5ddf650b-facd-41ea-8062-9429287f1de5","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge",":id"],"variable":[{"key":"id","value":"300439"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Nov 2023 13:01:46 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Charge does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"33af73f3-8af8-4749-a217-dc735495f966"},{"name":"/charges","id":"6d4e847c-8072-4bd7-8c32-928e7f63054c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charges?limit=10","description":"<p>Listagem paginada de Cobranças.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Cobranças contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#33af73f3-8af8-4749-a217-dc735495f966\">GET /charge/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["charges"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das cobranças</p>\n","type":"text/plain"},"key":"id[]","value":"300461,300456"},{"disabled":true,"description":{"content":"<p>IDs das unidades as quais as cobranças pertencem</p>\n","type":"text/plain"},"key":"companyId[]","value":"3,5"},{"disabled":true,"description":{"content":"<p>ID de cliente</p>\n","type":"text/plain"},"key":"customerId[]","value":"450,216"},{"disabled":true,"description":{"content":"<p>Status</p>\n","type":"text/plain"},"key":"status","value":"unpaid"},{"disabled":true,"description":{"content":"<p>Data de vencimento para cobranças realizadas nessa data ou após. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"dueDateFrom","value":"2024-01-11"},{"disabled":true,"description":{"content":"<p>Data de vencimento para cobranças realizadas nessa data ou antes. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"dueDateTo","value":"2024-05-31"},{"disabled":true,"description":{"content":"<p>Data de competência para cobranças realizadas nessa data ou após. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"competenceDateFrom","value":"2024-05-27"},{"disabled":true,"description":{"content":"<p>Data de competência para cobranças realizadas nessa data ou antes. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"competenceDateTo","value":"2024-05-27"},{"disabled":true,"description":{"content":"<p>Data de quitação para cobranças realizadas nessa data ou após. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"paymentDateFrom","value":"2024-05-01"},{"disabled":true,"description":{"content":"<p>Data de quitação para cobranças realizadas nessa data ou antes. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"paymentDateTo","value":"2024-05-27"},{"disabled":true,"description":{"content":"<p>IDs de tags dos clientes relacionados às cobranças</p>\n","type":"text/plain"},"key":"tagId[]","value":"3"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"aca6e3f7-4b0c-45c1-aa40-a74527730cab","name":"(200) Success - Conexa Recorrência - Filtro de status em aberto","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charges?status=unpaid&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charges"],"query":[{"key":"status","value":"unpaid","description":"Status"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 01:05:44 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1986"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"chargeId\": 3,\n            \"receivingMethod\": null,\n            \"type\": \"contractual\",\n            \"status\": \"unpaid\",\n            \"origin\": \"default\",\n            \"amount\": 2099.72,\n            \"currentAmount\": 2178.44,\n            \"rawAmount\": 2099.72,\n            \"paidAmount\": null,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-04-05\",\n            \"paymentDate\": null,\n            \"competenceDate\": \"2024-04-01\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-05-27T17:46:38-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=918cfd5a74f61c95a527fe6e51434871\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                39,\n                40,\n                41,\n                42,\n                43,\n                44,\n                45,\n                46,\n                47,\n                48,\n                49,\n                60\n            ],\n            \"companyId\": 3,\n            \"customerId\": 31,\n            \"accountId\": null,\n            \"discountAmount\": 0,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-05-27T17:46:38-03:00\"\n        },\n        {\n            \"chargeId\": 2,\n            \"receivingMethod\": null,\n            \"type\": \"returnableDeposit\",\n            \"status\": \"unpaid\",\n            \"origin\": \"default\",\n            \"amount\": 5.25,\n            \"currentAmount\": 5.36,\n            \"rawAmount\": 5.25,\n            \"paidAmount\": null,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-05-25\",\n            \"paymentDate\": null,\n            \"competenceDate\": null,\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-05-24T19:03:33-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=a4fb31e0374a8c22ec4e875b47091a28\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": null,\n            \"companyId\": 3,\n            \"customerId\": 32,\n            \"accountId\": null,\n            \"discountAmount\": 0,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-05-24T19:03:33-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"eafd7b0d-1aac-4db5-aa63-6ec3a3355c15","name":"(200) Success - Conexa Recorrência - Filtro de data de competência (intervalo)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charges?competenceDateFrom=2024-05-01&competenceDateTo=2024-05-31&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charges"],"query":[{"key":"competenceDateFrom","value":"2024-05-01","description":"Data de competência (a partir de)"},{"key":"competenceDateTo","value":"2024-05-31","description":"Data de competência (até)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 01:07:38 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"26"},{"key":"Content-Length","value":"1048"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"chargeId\": 4,\n            \"receivingMethod\": \"Transferência Bancária\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 350,\n            \"currentAmount\": 350,\n            \"rawAmount\": 500,\n            \"paidAmount\": 350,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-05-27\",\n            \"paymentDate\": \"2024-05-27\",\n            \"competenceDate\": \"2024-05-27\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-05-27T20:52:42-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=d123099b2096cd69ee56747892d30c92\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                61\n            ],\n            \"companyId\": 3,\n            \"customerId\": 31,\n            \"accountId\": 2,\n            \"discountAmount\": 150,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-05-27T17:52:55-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"d0059439-c391-4930-a232-cd7b3b15d6f2","name":"(200) Success - Conexa Recorrência - Filtro de data de competência em dia específico","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charges?competenceDateFrom=2024-05-27&competenceDateTo=2024-05-27&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charges"],"query":[{"key":"competenceDateFrom","value":"2024-05-27","description":"Data de competência (a partir de)"},{"key":"competenceDateTo","value":"2024-05-27","description":"Data de competência (até)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 01:09:17 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1048"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"chargeId\": 4,\n            \"receivingMethod\": \"Transferência Bancária\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 350,\n            \"currentAmount\": 350,\n            \"rawAmount\": 500,\n            \"paidAmount\": 350,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-05-27\",\n            \"paymentDate\": \"2024-05-27\",\n            \"competenceDate\": \"2024-05-27\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-05-27T20:52:42-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=d123099b2096cd69ee56747892d30c92\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                61\n            ],\n            \"companyId\": 3,\n            \"customerId\": 31,\n            \"accountId\": 2,\n            \"discountAmount\": 150,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-05-27T17:52:55-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"e5054517-fe7b-4ab7-8f95-2e5bd5898778","name":"(200) Success - Conexa Coworking - Filtro de clientes e data de vencimento","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charges?customerId[]=450,216&dueDateFrom=2024-01-11&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charges"],"query":[{"key":"customerId[]","value":"450,216","description":"ID de cliente"},{"key":"dueDateFrom","value":"2024-01-11","description":"Data de vencimento (a partir de)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 01:01:25 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"3"},{"key":"Content-Length","value":"5339"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"chargeId\": 300451,\n            \"receivingMethod\": \"Dinheiro\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 150,\n            \"currentAmount\": 150,\n            \"rawAmount\": 150.2,\n            \"paidAmount\": 150,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-01-25\",\n            \"paymentDate\": \"2024-01-25\",\n            \"competenceDate\": \"2024-01-25\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-01-25T11:10:29-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=682b6dcf3b1a8a62fa18f911d191734d\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": \"https://stating.conexa.app/index.php?r=cobranca/boleto&id=682b6dcf3b1a8a62fa18f911d191734d\",\n            \"salesIds\": [\n                187183\n            ],\n            \"companyId\": 3,\n            \"customerId\": 450,\n            \"accountId\": 1,\n            \"discountAmount\": 0.2,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-02-20T07:59:03-03:00\",\n            \"receiptAmount\": 0,\n            \"rawReceiptAmount\": 0,\n            \"receiptDescription\": null,\n            \"receiptCode\": null\n        },\n        {\n            \"chargeId\": 300452,\n            \"receivingMethod\": \"Dinheiro\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 200.2,\n            \"currentAmount\": 200.2,\n            \"rawAmount\": 200.2,\n            \"paidAmount\": 200.2,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-01-25\",\n            \"paymentDate\": \"2024-01-25\",\n            \"competenceDate\": \"2024-01-25\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-01-25T13:07:39-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=82d510fa2186494d7bec0c1fc2f63bcf\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                187021,\n                187184,\n                187185\n            ],\n            \"companyId\": 3,\n            \"customerId\": 450,\n            \"accountId\": 1,\n            \"discountAmount\": 0,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-02-20T07:59:03-03:00\",\n            \"receiptAmount\": 0,\n            \"rawReceiptAmount\": 0,\n            \"receiptDescription\": null,\n            \"receiptCode\": null\n        },\n        {\n            \"chargeId\": 300453,\n            \"receivingMethod\": \"Dinheiro\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 50,\n            \"currentAmount\": 51,\n            \"rawAmount\": 50,\n            \"paidAmount\": 51,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-02-01\",\n            \"paymentDate\": \"2024-03-05\",\n            \"competenceDate\": \"2024-02-01\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-01-31T19:25:08-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=9bc94c7c76d6568357458d18ad0d8c32\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                187187\n            ],\n            \"companyId\": 3,\n            \"customerId\": 450,\n            \"accountId\": 1,\n            \"discountAmount\": 0,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-03-04T18:20:21-03:00\",\n            \"receiptAmount\": 0,\n            \"rawReceiptAmount\": 0,\n            \"receiptDescription\": null,\n            \"receiptCode\": null\n        },\n        {\n            \"chargeId\": 300454,\n            \"receivingMethod\": \"Dinheiro\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 50,\n            \"currentAmount\": 45,\n            \"rawAmount\": 50,\n            \"paidAmount\": 45,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-02-01\",\n            \"paymentDate\": \"2024-03-05\",\n            \"competenceDate\": \"2024-02-01\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-01-31T19:29:02-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=cfff6cd8c9251b507e3b477a4904fe6e\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                187186\n            ],\n            \"companyId\": 3,\n            \"customerId\": 450,\n            \"accountId\": 1,\n            \"discountAmount\": 0,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-03-04T18:21:31-03:00\",\n            \"receiptAmount\": 0,\n            \"rawReceiptAmount\": 0,\n            \"receiptDescription\": null,\n            \"receiptCode\": null\n        },\n        {\n            \"chargeId\": 300455,\n            \"receivingMethod\": \"Dinheiro\",\n            \"type\": \"loose\",\n            \"status\": \"paid\",\n            \"origin\": \"default\",\n            \"amount\": 15,\n            \"currentAmount\": 15.39,\n            \"rawAmount\": 15,\n            \"paidAmount\": 15.39,\n            \"installmentNumber\": 1,\n            \"totalInstallmentsAmount\": 1,\n            \"fatherChargeId\": 0,\n            \"originalChargeId\": 0,\n            \"dueDate\": \"2024-02-01\",\n            \"paymentDate\": \"2024-03-05\",\n            \"competenceDate\": \"2024-02-01\",\n            \"customerViews\": 0,\n            \"createdAt\": \"2024-01-31T19:30:22-03:00\",\n            \"hasISSRetention\": false,\n            \"ISSAmount\": 0,\n            \"notes\": \"\",\n            \"taxInvoiceNumber\": null,\n            \"chargeUrl\": \"https://stating.conexa.app/index.php?r=cobranca/fatura&id=a74782be711f967c68139f86591a7f51\",\n            \"billetDigitableLine\": null,\n            \"billetUrl\": null,\n            \"salesIds\": [\n                187188\n            ],\n            \"companyId\": 3,\n            \"customerId\": 450,\n            \"accountId\": 1,\n            \"discountAmount\": 0,\n            \"paymentDiscountAmount\": null,\n            \"conditionalDiscount\": null,\n            \"conditionalDiscountFixedAmount\": 0,\n            \"conditionalDiscountPercentage\": 0,\n            \"conditionalDiscountType\": null,\n            \"conditionalDiscountDate\": null,\n            \"cancelDate\": null,\n            \"updatedAt\": \"2024-03-05T13:33:39-03:00\",\n            \"receiptAmount\": 0,\n            \"rawReceiptAmount\": 0,\n            \"receiptDescription\": null,\n            \"receiptCode\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"39c6435c-06b7-4130-ac3d-c8853f63e1b3","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charges?id=300461,300456&companyId=3,5&customerId=450,216&status=unpaid&dueDateFrom=2024-01-11&dueDateTo=2024-05-31&competenceDateFrom=2024-05-27&competenceDateTo=2024-05-27&paymentDateFrom=2024-05-01&paymentDateTo=2024-05-27&tagId[]=3&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charges"],"query":[{"key":"id","value":"300461,300456","description":"ID da cobrança"},{"key":"companyId","value":"3,5","description":"ID de unidade"},{"key":"customerId","value":"450,216","description":"ID de cliente"},{"key":"status","value":"unpaid","description":"Status"},{"key":"dueDateFrom","value":"2024-01-11","description":"Data de vencimento (a partir de)"},{"key":"dueDateTo","value":"2024-05-31","description":"Data de vencimento (até)"},{"key":"competenceDateFrom","value":"2024-05-27","description":"Data de competência (a partir de)"},{"key":"competenceDateTo","value":"2024-05-27","description":"Data de competência (até)"},{"key":"paymentDateFrom","value":"2024-05-01","description":"Data de quitação (a partir de)"},{"key":"paymentDateTo","value":"2024-05-27","description":"Data de quitação (até)"},{"key":"tagId[]","value":"3","description":"IDs de tags dos clientes relacionados às cobranças"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2024 00:58:06 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"266"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"id\",\n            \"messages\": [\n                \"id field must be array or object\"\n            ]\n        },\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"companyId field must be array or object\"\n            ]\n        },\n        {\n            \"field\": \"customerId\",\n            \"messages\": [\n                \"customerId field must be array or object\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"6d4e847c-8072-4bd7-8c32-928e7f63054c"},{"name":"/charge/settle/:id","id":"9ca0cba5-8fde-4773-a1e9-1d169f9c2ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"settlementDate\": \"2024-11-28\",\n    \"receivingMethod\": {\n        \"id\": 53,\n        \"installmentsQuantity\": 3\n    },\n    \"accountId\": 1,\n    \"paidAmount\": 40,\n    \"sendEmail\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/settle/:id","description":"<p>Quitação manual de uma cobrança no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>settlementDate</td>\n<td>string</td>\n<td>Data de quitação da Cobrança. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>receivingMethod</td>\n<td>object</td>\n<td>Objeto contendo os detalhes relacionados ao Meio de Recebimento da quitação</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>receivingMethod.id</td>\n<td>integer</td>\n<td>ID do Meio de Recebimento</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>receivingMethod.installmentsQuantity</td>\n<td>integer</td>\n<td>Quantidade de parcelas da quitação</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>accountId</td>\n<td>integer</td>\n<td>ID da Conta de recebimento vinculada a Cobrança</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>paidAmount</td>\n<td>decimal</td>\n<td>Valor pago</td>\n<td>Não, valor da cobrança (sem juros) por padrão</td>\n</tr>\n<tr>\n<td>sendEmail</td>\n<td>boolean</td>\n<td>Se deve ser enviado um email de confirmação de quitação ao cliente</td>\n<td>Não, falso por padrão</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["charge","settle",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"300497","key":"id"}]}},"response":[{"id":"d901bd67-5347-42c8-acf7-52a93a7bd272","name":"(204) Success","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"settlementDate\": \"2024-11-28\",\n    \"receivingMethod\": {\n        \"id\": 5,\n        \"installmentsQuantity\": 2\n    },\n    \"accountId\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/settle/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","settle",":id"],"variable":[{"key":"id","value":"170"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bb416d95-0934-419c-9741-cd9f3fada54a","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"settlementDate\": \"2024-11-28\",\n    \"receivingMethod\": {\n        \"id\": 5,\n        \"installmentsQuantity\": 2\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/settle/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","settle",":id"],"variable":[{"key":"id","value":"170"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"accountId\",\n            \"messages\": [\n                \"Account ID cannot be blank\"\n            ]\n        }\n    ]\n}"},{"id":"19762c1a-8bc5-42c3-aae0-243ef5594042","name":"(404) Not Found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"settlementDate\": \"2024-11-28\",\n    \"receivingMethod\": {\n        \"id\": 5,\n        \"installmentsQuantity\": 2\n    },\n    \"accountId\": 200\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/settle/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","settle",":id"],"variable":[{"key":"id","value":"170"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Account does not exist or you have no permission to access it\"\n}"},{"id":"2f794ce0-c9e9-4568-8572-2fb2046b805d","name":"(422) Unable to process - Status não permite quitar","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"settlementDate\": \"2024-11-28\",\n    \"receivingMethod\": {\n        \"id\": 5,\n        \"installmentsQuantity\": 2\n    },\n    \"accountId\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/settle/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","settle",":id"],"variable":[{"key":"id","value":"170"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CHARGE_11\",\n            \"message\": \"Only charges with an open status can be settled.\"\n        }\n    ]\n}"},{"id":"57bcd481-7824-4fe5-842e-6c5a547d227e","name":"(422) Unable to process - Quantidade de parcelas não aceita pelo meio de recebimento","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"settlementDate\": \"2024-11-28\",\n    \"receivingMethod\": {\n        \"id\": 5,\n        \"installmentsQuantity\": 6\n    },\n    \"accountId\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/settle/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","settle",":id"],"variable":[{"key":"id","value":"170"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CHARGE_06\",\n            \"message\": \"The selected number of installments exceeds the maximum allowed for the configured payment method (4).\"\n        }\n    ]\n}"}],"_postman_id":"9ca0cba5-8fde-4773-a1e9-1d169f9c2ccb"},{"name":"/charge/pix/:id","id":"2ec4a977-2d4f-427a-af86-266ec04cc0d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/pix/:id","description":"<p>Retorna o Pix gerado no Conexa para o ID da cobrança informado.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>copyPasteCode</td>\n<td>string</td>\n<td>Código \"copia e cola\" do Pix para pagamento</td>\n</tr>\n<tr>\n<td>qrCode</td>\n<td>string</td>\n<td>Imagem em base64 do QR Code para pagamento</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>A validade do Pix corresponde ao dia de vencimento da cobrança, até às 23:59:59. Caso o endpoint seja consultado após essa data, o sistema atualizará automaticamente o Pix — em conjunto com a plataforma integradora — e retornará uma nova versão, com os valores atualizados (incluindo eventuais juros e multa) e validade estendida até o final do dia atual (23:59:59). Dessa forma, é recomendado que a aplicação consumidora sempre consulte a API antes de exibir, garantindo que os dados do Pix estejam sempre atualizados.</p>\n</blockquote>\n","urlObject":{"path":["charge","pix",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"300504","key":"id"}]}},"response":[{"id":"4d02d676-b674-4324-997a-b3b9b49bab67","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/pix/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","pix",":id"],"variable":[{"key":"id","value":"300504"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 25 Jul 2025 20:57:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"copyPasteCode\": \"00020101021226850014BR.GOV.BCB.PIX2563qrcodespix-h.sejaefi.com.br/v2/beaf2715dfaa44f6a855dbe269b6ee925204000053039865802BR5905EFISA6008SAOPAULO62070503***6304E3F4\",\n        \"qrCode\": \"data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAANQAAADUCAIAAABrvJpPAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAgAElEQVR4AQBkgZt+Af///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPDZY9cAACAASURBVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAg4DDDwAAIABJREFUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIrpOwAAAgAElEQVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG40fSIAACAASURBVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkgZt+BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVPo7pwAAIABJREFUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw49dJAAAgAElEQVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAJzdbPkAACAASURBVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApjBzSQAAIABJREFUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkgZt+BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAABiUlvaAAAgAElEQVQAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP5FTlMAACAASURBVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAt9IAywAAIABJREFUAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD75bFjAAAgAElEQVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkgZt+BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3c1+4AACAASURBVAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGCkMpwAAIABJREFUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAQEBAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAP///wAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/iS1CAAAgAElEQVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAD///8AAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEtrE4AAA+jSURBVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0CQv2AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEIWgqCtTVZ5AAAAAElFTkSuQmCC\"\n    }\n]"},{"id":"92b5179e-9e23-4f67-b1f5-45b69061620b","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/pix/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","pix",":id"],"variable":[{"key":"id","value":"3004921"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 25 Jul 2025 22:09:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Charge does not exist or you have no permission to access it\"\n}"},{"id":"84477d61-f844-4515-9c1b-2e25e01a3138","name":"(422) Unable to process","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/pix/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","pix",":id"],"variable":[{"key":"id","value":"300525"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 25 Jul 2025 22:05:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PIX_01\",\n            \"message\": \"The Pix integration for the company the customer belongs to is inactive.\"\n        }\n    ]\n}"},{"id":"78efdbcf-2625-482a-9325-51a49c7ba84b","name":"(422) Unable to process","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/charge/pix/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["charge","pix",":id"],"variable":[{"key":"id","value":"300492"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 25 Jul 2025 22:06:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"7"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"PIX_23\",\n            \"message\": \"Cannot generate the Pix QR Code for a paid charge.\"\n        }\n    ]\n}"}],"_postman_id":"2ec4a977-2d4f-427a-af86-266ec04cc0d1"}],"id":"593bfa50-9cf4-4b11-841d-b81482364111","description":"<p>Endpoints que correspondem a Cobrança no sistema Conexa.</p>\n","_postman_id":"593bfa50-9cf4-4b11-841d-b81482364111","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Credit Card","item":[{"name":"/creditCard","id":"82069246-0b3b-40e4-ba82-abbb76559a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"3481 273342 18775\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"04/25\",\n    \"cvc\": \"4692\",\n    \"brand\": null,\n    \"default\": true,\n    \"enableRecurring\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard","description":"<p>Cadastro do cartão de crédito do cliente no sistema Conexa, através da Cielo.</p>\n<p><strong>Obs.: os dados importantes do cartão (número e CVC) ficam armazenados somente na Cielo de forma criptografada.</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>number</td>\n<td>string</td>\n<td>Número do cartão de crédito</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>string</td>\n<td>Data de expiração do cartão. Formato: <strong>MM/yy</strong></td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>cvc</td>\n<td>string</td>\n<td>Card Verification Code ou Card Verification Value (CVV)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome impresso no cartão</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>brand</td>\n<td>string/null</td>\n<td>Nome da bandeira do cartão</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>default</td>\n<td>boolean/null</td>\n<td>Flag indicadora do cartão principal de pagamento do cliente [1]</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>enableRecurring</td>\n<td>boolean/null</td>\n<td>Flag indicadora de recorrência automática ativa [2]</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><p>[1] Se for informado <code>true</code> em um novo cadastro do mesmo cliente, esse novo cartão passará a ser o padrão.<br />[2] Se for informado <code>false</code> em um novo cadastro do mesmo cliente, a recorrência automática será desativada para o cliente.</p>\n<h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do cartão regsitrado</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["creditCard"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"37dc614b-6004-4d89-a197-40eb8a29259e","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"3481 273342 18775\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"04/27\",\n    \"cvc\": \"4692\",\n    \"brand\": null,\n    \"default\": true,\n    \"enableRecurring\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 23 Jul 2025 00:24:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5\n}"},{"id":"b9bc7c73-031a-486f-a0e5-40bb2728b7dc","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"4111 1111 1111 1111\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"50/25\",\n    \"cvc\": \"1234\",\n    \"brand\": null,\n    \"default\": null,\n    \"enableRecurring\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 22 Jul 2025 22:07:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"5"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"expirationDate\",\n            \"messages\": [\n                \"The format of Expiration Date is invalid\"\n            ]\n        }\n    ]\n}"},{"id":"346cb25d-3ddd-42e8-9c9b-2d1e621adbf4","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"4111 1111 1111 1111\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"05/25\",\n    \"cvc\": \"1234\",\n    \"brand\": null,\n    \"default\": null,\n    \"enableRecurring\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 22 Jul 2025 23:29:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"name\",\n            \"messages\": [\n                \"Nome Impresso no Cartão cannot be blank\"\n            ]\n        },\n        {\n            \"field\": \"expirationDate\",\n            \"messages\": [\n                \"O cartão informado está vencido. Por favor informe um novo\"\n            ]\n        },\n        {\n            \"field\": \"cvc\",\n            \"messages\": [\n                \"A 4-digit Security Code is valid only for American Express cards\"\n            ]\n        }\n    ]\n}"},{"id":"19b9863f-c685-46d0-bd93-7d6be6ab82cf","name":"(403) Not authorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 216,\n    \"number\": \"3481 273342 18775\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"04/25\",\n    \"cvc\": \"4692\",\n    \"brand\": null,\n    \"default\": true,\n    \"enableRecurring\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 23 Jul 2025 01:14:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"1eaad1bd-122a-484a-9c9e-4f5bef7be206","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"6304 0000 0000 0004\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"05/27\",\n    \"cvc\": \"123\",\n    \"brand\": \"Mastercard\",\n    \"default\": null,\n    \"enableRecurring\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 23 Jul 2025 00:15:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CREDIT_CARD_06\",\n            \"message\": \"You must contact Cielo and request the activation of the Cartão Protegido service. While this service is not enabled for your company, the integration with Conexa will not work\"\n        }\n    ]\n}"},{"id":"9b2cdfdb-dacd-4145-af28-1d7bffd2ce73","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"6304 0000 0000 0004\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"05/27\",\n    \"cvc\": \"123\",\n    \"brand\": \"Mastercard\",\n    \"default\": null,\n    \"enableRecurring\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 23 Jul 2025 00:16:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CP990\",\n            \"message\": \"Could not validate your credit card with the Payment Gateway: invalid card number. Please check if the card information corresponds to a valid card\"\n        }\n    ]\n}"},{"id":"314ba17b-09d8-46ba-90f9-330eae9451a0","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"number\": \"2014 3142055 2071\",\n    \"name\": \"Luke Skywalker\",\n    \"expirationDate\": \"05/27\",\n    \"cvc\": \"123\",\n    \"brand\": null,\n    \"default\": null,\n    \"enableRecurring\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/creditCard"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 23 Jul 2025 00:21:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CREDIT_CARD_02\",\n            \"message\": \"Unable to identify the card brand for the provided credit card number. Please check the number or specify the brand\"\n        }\n    ]\n}"}],"_postman_id":"82069246-0b3b-40e4-ba82-abbb76559a40"}],"id":"7f69e915-e44b-4d26-bafb-c13ddaffcfb7","description":"<p>Endpoints que correspondem ao Cartão de Crédito do Cliente no sistema Conexa.</p>\n<h3 id=\"códigos-de-erro-422---unable-to-process\">Códigos de Erro (422 - Unable to process)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CP990</td>\n<td>Could not validate your credit card with the Payment Gateway: invalid card number. Please check if the card information corresponds to a valid card</td>\n</tr>\n<tr>\n<td>CODE_128</td>\n<td>Invalid card number. The provided card number exceeds the allowed number of digits.</td>\n</tr>\n<tr>\n<td>CREDIT_CARD_01</td>\n<td>The Cielo integration for company {companyId} is disabled or does not exist</td>\n</tr>\n<tr>\n<td>CREDIT_CARD_02</td>\n<td>Unable to identify the card brand for the provided credit card number. Please check the number or specify the brand</td>\n</tr>\n<tr>\n<td>CREDIT_CARD_04</td>\n<td>Failed to establish communication with the payment gateway.</td>\n</tr>\n<tr>\n<td>CREDIT_CARD_05</td>\n<td>Failed to establish communication with the payment gateway.</td>\n</tr>\n<tr>\n<td>CREDIT_CARD_06</td>\n<td>You must contact Cielo and request the activation of the Cartão Protegido service. While this service is not enabled for your company, the integration with Conexa will not work</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7f69e915-e44b-4d26-bafb-c13ddaffcfb7","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Bill","item":[{"name":"/bill","id":"22a58ade-f580-49d1-8c53-87e4bfdf7575","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"dueDate\": \"2024-10-01\",\n    \"amount\": 15.99,\n    \"costCenters\": [\n        {\n            \"id\": 1,\n            \"percentage\": 100\n        }\n    ],\n    \"subcategoryId\": 1,\n    \"supplierId\": 1,\n    \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n    \"accountId\": 15,\n    \"documentDate\": \"2024-09-15\",\n    \"competenceDate\": \"2024-10-01\",\n    \"documentNumber\": \"155687841324849214\",\n    \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n    \"cac\": {\n        \"isIncluded\": true,\n        \"percentage\": 30\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill","description":"<p>Criação de uma despesa avulsa no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>subcategoryId</td>\n<td>integer</td>\n<td>ID da subcategoria da despesa</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>accountId</td>\n<td>integer</td>\n<td>ID da conta a qual a despesa será associada</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>string</td>\n<td>Data de vencimento da despesa. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor da despesa</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenters</td>\n<td>array of objects</td>\n<td>Centros de custo vinculados a despesa. Atualmente, é permitido o preenchimento de apenas um objeto.</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenters[].id</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n<td>Sim</td>\n<td>-</td>\n</tr>\n<tr>\n<td>costCenters[].percentage</td>\n<td>decimal</td>\n<td>Percentual do centro de custo relativo à despesa</td>\n<td>Sim</td>\n<td>-</td>\n</tr>\n<tr>\n<td>cac</td>\n<td>object</td>\n<td>Detalhes da inclusão da despesa no CAC. Atualmente, é permitido o preenchimento de apenas um objeto.</td>\n<td>Sim</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cac.isIncluded</td>\n<td>boolean</td>\n<td>Sinaliza se a despesa será inclusa no CAC</td>\n<td>Sim</td>\n<td>-</td>\n</tr>\n<tr>\n<td>cac.percentage</td>\n<td>decimal</td>\n<td>Percentual a ser considerado no CAC relativo ao valor da despesa</td>\n<td>Sim (caso a despesa seja inclusa no CAC)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>supplierId</td>\n<td>integer</td>\n<td>ID do fornecedor que a despesa será associada</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição da despesa</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>documentDate</td>\n<td>string</td>\n<td>Data de emissão do documento. Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>competenceDate</td>\n<td>string</td>\n<td>Data de competência do documento (utilizada no relatório DRE). Formato: <strong>yyyy-MM-dd</strong></td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>documentNumber</td>\n<td>string</td>\n<td>Número do documento</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>digitableLine</td>\n<td>string</td>\n<td>Linha digitável do boleto</td>\n<td>Não</td>\n<td>Todos</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da despesa criada</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["bill"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"aaad2172-fb61-4e59-90c9-a487cc64c093","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"dueDate\": \"2024-10-01\",\n    \"amount\": 15.99,\n    \"costCenters\": [\n        {\n            \"id\": 1,\n            \"percentage\": 100\n        }\n    ],\n    \"subcategoryId\": 1,\n    \"supplierId\": 1,\n    \"description\": \"Comissão vendedor Johnny Cage\",\n    \"accountId\": 15,\n    \"documentDate\": \"2024-09-15\",\n    \"competenceDate\": \"2024-10-01\",\n    \"documentNumber\": \"155687841324849214\",\n    \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n    \"cac\": {\n        \"isIncluded\": false,\n        \"percentage\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 19:41:15 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1239\n}"},{"id":"c3414b8a-41bb-479d-aba5-fdf5198aa076","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"dueDate\": \"01/10/2024\",\n    \"amount\": 15.99,\n    \"costCenters\": [\n        {\n            \"id\": 1,\n            \"percentage\": 100\n        }\n    ],\n    \"subcategoryId\": 1,\n    \"supplierId\": 1,\n    \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec.\",\n    \"accountId\": 15,\n    \"documentDate\": \"15/09/2024\",\n    \"competenceDate\": \"01/10/2024\",\n    \"documentNumber\": \"155687841324849214\",\n    \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n    \"cac\": {\n        \"isIncluded\": false,\n        \"percentage\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 19:50:36 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"CNXSESSID=d0a06b8fd954d5a116794257e8f8ee30; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"369"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"description\",\n            \"messages\": [\n                \"Description is too long (maximum is 255 characters)\"\n            ]\n        },\n        {\n            \"field\": \"dueDate\",\n            \"messages\": [\n                \"The format of Due Date is invalid\"\n            ]\n        },\n        {\n            \"field\": \"documentDate\",\n            \"messages\": [\n                \"The format of Document Date is invalid\"\n            ]\n        },\n        {\n            \"field\": \"competenceDate\",\n            \"messages\": [\n                \"The format of Competence Date is invalid\"\n            ]\n        }\n    ]\n}"},{"id":"a6e0409b-be95-4d9c-bab0-4a92007eef01","name":"(403) Not authorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"dueDate\": \"2024-10-01\",\n    \"amount\": 15.99,\n    \"costCenters\": [\n        {\n            \"id\": 1,\n            \"percentage\": 100\n        }\n    ],\n    \"subcategoryId\": 1,\n    \"supplierId\": 1,\n    \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n    \"accountId\": 15,\n    \"documentDate\": \"2024-09-15\",\n    \"competenceDate\": \"2024-10-01\",\n    \"documentNumber\": \"155687841324849214\",\n    \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n    \"cac\": {\n        \"isIncluded\": false,\n        \"percentage\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 20:06:06 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"9cdfb368-7dee-4cd7-9e8c-e1d883ebcbf9","name":"(404) Not found Subcategory ID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"dueDate\": \"2024-10-01\",\n    \"amount\": 15.99,\n    \"costCenters\": [\n        {\n            \"id\": 1,\n            \"percentage\": 100\n        }\n    ],\n    \"subcategoryId\": 1156,\n    \"supplierId\": 1,\n    \"description\": \"Comissão vendedor Johnny Cage\",\n    \"accountId\": 15,\n    \"documentDate\": \"2024-09-15\",\n    \"competenceDate\": \"2024-10-01\",\n    \"documentNumber\": \"155687841324849214\",\n    \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n    \"cac\": {\n        \"isIncluded\": false,\n        \"percentage\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 19:41:46 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"29"},{"key":"Content-Length","value":"44"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Subcategory \\\"1156\\\" not found\"\n}"},{"id":"4628445b-4449-4cab-84c1-5acb49d2183b","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"companyId\": 3,\n    \"dueDate\": \"2024-10-01\",\n    \"amount\": 15.99,\n    \"costCenters\": [\n        {\n            \"id\": 1,\n            \"percentage\": 80\n        },\n        {\n            \"id\": 2,\n            \"percentage\": 10\n        }\n    ],\n    \"subcategoryId\": 1,\n    \"supplierId\": 1,\n    \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n    \"accountId\": 15,\n    \"documentDate\": \"2024-09-15\",\n    \"competenceDate\": \"2024-10-01\",\n    \"documentNumber\": \"155687841324849214\",\n    \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n    \"cac\": {\n        \"isIncluded\": false,\n        \"percentage\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 13:07:16 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"45"},{"key":"Content-Length","value":"244"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"BILL_01\",\n            \"message\": \"It is only possible to assign one cost center to the Bill\"\n        },\n        {\n            \"code\": \"BILL_02\",\n            \"message\": \"The sum of the Bill Cost Center percentages must be 100\"\n        }\n    ]\n}"}],"_postman_id":"22a58ade-f580-49d1-8c53-87e4bfdf7575"},{"name":"/bill/:id","id":"b3697b86-2d7c-4b01-bd7d-6cfe82e51c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill/:id","description":"<p>Recuperação dos dados de Despesa. Abaixo exibimos uma tabela do que será retornado dado o tipo de versão do software Conexa.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Conexa's Product</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>billId</td>\n<td>integer</td>\n<td>ID da despesa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>parentBillId</td>\n<td>integer</td>\n<td>ID da despesa pai (caso de quitação parcial)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>originalBillId</td>\n<td>integer</td>\n<td>ID da despesa original (caso de quitação parcial)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>chargeId</td>\n<td>integer</td>\n<td>ID da cobrança que gerou a despesa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>decimal</td>\n<td>Valor da despesa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paidAmount</td>\n<td>decimal</td>\n<td>Valor da despesa quitada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>string</td>\n<td>Data de vencimento. Formato: <strong>Y-m-d</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>competenceDate</td>\n<td>string</td>\n<td>Data de competência. Formato: <strong>Y-m-d</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentDate</td>\n<td>string</td>\n<td>Data da quitação. Formato: <strong>Y-m-d</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>documentDate</td>\n<td>string</td>\n<td>Data da emissão. Formato: <strong>Y-m-d</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Status, podendo ser: <strong>unpaid</strong>, <strong>cancelled</strong>, <strong>paid</strong>, <strong>received</strong> ou <strong>scheduled</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Tipo da despesa, podendo ser: <strong>fixed</strong> ou <strong>loose</strong></td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Descrição da despesa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>digitableLine</td>\n<td>string</td>\n<td>Linha digital do boleto da despesa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>documentNumber</td>\n<td>string</td>\n<td>Número do documento da despesa</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>installmentId</td>\n<td>integer</td>\n<td>ID da parcela (caso seja uma despesa parcelada)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>installmentNumber</td>\n<td>integer</td>\n<td>Número da parcela (caso seja uma despesa parcelada)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cac</td>\n<td>object</td>\n<td>Objeto referente ao CAC</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>cac.isIncluded</td>\n<td>boolean</td>\n<td>Flag se a despesa foi incluída no CAC</td>\n<td>-</td>\n</tr>\n<tr>\n<td>cac.percentage</td>\n<td>decimal</td>\n<td>Valor cheio da porcentagem</td>\n<td>-</td>\n</tr>\n<tr>\n<td>isReconciled</td>\n<td>boolean</td>\n<td>Flag se a despesa está conciliada</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>recurrentBillId</td>\n<td>integer</td>\n<td>ID da despesa fixa ou recorrente</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>paymentMethodId</td>\n<td>integer</td>\n<td>ID do meio de pagamento</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da unidade</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>supplierId</td>\n<td>integer</td>\n<td>ID do fornecedor</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>accountId</td>\n<td>integer</td>\n<td>ID da conta</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>categoryId</td>\n<td>integer</td>\n<td>ID da categoria</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>subcategoryId</td>\n<td>integer</td>\n<td>ID da subcategoria</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenters</td>\n<td>array of objects</td>\n<td>lorem_ipsun_dolor</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>costCenters[].id</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n<td>-</td>\n</tr>\n<tr>\n<td>costCenters[].percentage</td>\n<td>decimal</td>\n<td>Valor cheio da porcentagem</td>\n<td>-</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de cadastro. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data da última modificação. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Todos</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["bill",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"1230","key":"id"}]}},"response":[{"id":"c39c8a5d-bfe9-4440-b93d-63b175ef4334","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bill",":id"],"variable":[{"key":"id","value":"1230"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 Aug 2024 20:15:15 GMT"},{"key":"Server","value":"Apache/2.4.59 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"705"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"billId\": 1230,\n    \"parentBillId\": null,\n    \"originalBillId\": null,\n    \"chargeId\": null,\n    \"paidAmount\": 750,\n    \"paymentDate\": \"2025-10-22\",\n    \"status\": \"paid\",\n    \"type\": \"loose\",\n    \"installmentId\": null,\n    \"installmentNumber\": 1,\n    \"isReconciled\": false,\n    \"categoryId\": 1,\n    \"recurrentBillId\": null,\n    \"paymentMethodId\": 5,\n    \"createdAt\": \"2024-08-24T16:35:21-03:00\",\n    \"updatedAt\": \"2025-10-22T16:00:15-03:00\",\n    \"amount\": 750,\n    \"dueDate\": \"2024-09-10\",\n    \"competenceDate\": \"2024-09-01\",\n    \"documentDate\": \"2024-08-28\",\n    \"description\": \"Mensalidade do melhor sistema financeiro para empresas de serviços recorrentes: Conexa!\",\n    \"digitableLine\": null,\n    \"documentNumber\": \"20240901159\",\n    \"cac\": {\n        \"isIncluded\": true,\n        \"percentage\": 49\n    },\n    \"companyId\": 3,\n    \"supplierId\": 1,\n    \"accountId\": 15,\n    \"subcategoryId\": 4,\n    \"costCenters\": [\n        {\n            \"id\": 6,\n            \"percentage\": 100\n        }\n    ]\n}"},{"id":"f67a019f-8c4c-4c99-84ad-c1d93a4c9c42","name":"(200) Success - Despesa quitada parcialmente","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bill",":id"],"variable":[{"key":"id","value":"1234"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 Aug 2024 20:21:48 GMT"},{"key":"Server","value":"Apache/2.4.59 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"766"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"billId\": 1234,\n    \"parentBillId\": 1233,\n    \"originalBillId\": 1233,\n    \"chargeId\": null,\n    \"paidAmount\": 39.99,\n    \"paymentDate\": \"2024-08-29\",\n    \"status\": \"paid\",\n    \"type\": \"loose\",\n    \"installmentId\": 6,\n    \"installmentNumber\": 3,\n    \"isReconciled\": false,\n    \"categoryId\": 1,\n    \"recurrentBillId\": null,\n    \"paymentMethodId\": 2,\n    \"createdAt\": \"2024-10-30T00:00:00-03:00\",\n    \"updatedAt\": null,\n    \"amount\": 39.99,\n    \"dueDate\": \"2024-10-30\",\n    \"competenceDate\": null,\n    \"documentDate\": null,\n    \"description\": \"( 3 / 3 ) - O valor original desta despesa era de R$ 50,00 e passou a ser de R$ 39,99 devido a uma quitação parcial, gerando a despesa de nº 1235 no valor de R$ 10,01.\",\n    \"digitableLine\": null,\n    \"documentNumber\": null,\n    \"cac\": {\n        \"isIncluded\": false,\n        \"percentage\": 0\n    },\n    \"companyId\": 3,\n    \"supplierId\": 3,\n    \"accountId\": 15,\n    \"subcategoryId\": 1,\n    \"costCenters\": []\n}"},{"id":"5e6a579e-c0f3-45dd-bc1d-4d92bef8f6e8","name":"(403) Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bill",":id"],"variable":[{"key":"id","value":"1231"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 22:31:21 GMT"},{"key":"Server","value":"Apache/2.4.59 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"a476b85f-50e2-4591-9564-b9d9baad85a3","name":"(404) Not Found or Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bill/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bill",":id"],"variable":[{"key":"id","value":"1231"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 22:29:34 GMT"},{"key":"Server","value":"Apache/2.4.59 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"78"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Bill does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"b3697b86-2d7c-4b01-bd7d-6cfe82e51c0d"},{"name":"/bills","id":"30daa573-f997-4563-aa0b-8907de63ea1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bills?limit=10","description":"<p>Listagem paginada de Despesas.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Despesas contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#b3697b86-2d7c-4b01-bd7d-6cfe82e51c0d\">GET /bill/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["bills"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das despesas</p>\n","type":"text/plain"},"key":"id[]","value":"1220,1221,1222"},{"disabled":true,"description":{"content":"<p>IDs das unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"3"},{"disabled":true,"description":{"content":"<p>ID do fornecedor (informe \"null\" caso queria filtrar por despesas sem fornecedor)</p>\n","type":"text/plain"},"key":"supplierId","value":"null"},{"disabled":true,"description":{"content":"<p>ID da categoria da despesa</p>\n","type":"text/plain"},"key":"categoryId","value":"2"},{"disabled":true,"description":{"content":"<p>ID da subcategoria da despesa</p>\n","type":"text/plain"},"key":"subcategoryId","value":"50,24"},{"disabled":true,"description":{"content":"<p>Status da despesa. Podendo ser: paid, unpaid, cancelled, received ou scheduled</p>\n","type":"text/plain"},"key":"status","value":"paid"},{"disabled":true,"description":{"content":"<p>Data de vencimento: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"dueDateFrom","value":"2024-10-01"},{"disabled":true,"description":{"content":"<p>Data de vencimento: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"dueDateTo","value":"2024-10-31"},{"disabled":true,"description":{"content":"<p>Data de emissão: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"issueDateFrom","value":"2024-08-31"},{"disabled":true,"description":{"content":"<p>Data de emissão: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"issueDateTo","value":"2024-08-31"},{"disabled":true,"description":{"content":"<p>Data de competência: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"competenceDateFrom","value":"2024-09-01"},{"disabled":true,"description":{"content":"<p>Data de competência: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"competenceDateTo","value":"2024-09-30"},{"disabled":true,"description":{"content":"<p>Data de quitação: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"paymentDateFrom","value":"2024-07-20"},{"disabled":true,"description":{"content":"<p>Data de quitação: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd</p>\n","type":"text/plain"},"key":"paymentDateTo","value":"2024-07-30"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"ac858774-e395-4135-97c0-7df8f8d12636","name":"(200) Success - Sem filtro","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bills?limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bills"],"query":[{"key":"id[]","value":"1220,1221,1222","description":"IDs das despesas","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das unidades","type":"text","disabled":true},{"key":"supplierId","value":"null","description":"ID do fornecedor (informe \"null\" caso queria filtrar por despesas sem fornecedor)","type":"text","disabled":true},{"key":"categoryId","value":"2","description":"ID da categoria da despesa","type":"text","disabled":true},{"key":"subcategoryId","value":"50,24","description":"ID da subcategoria da despesa","type":"text","disabled":true},{"key":"status","value":"paid","description":"Status da despesa. Podendo ser: paid, unpaid, cancelled, received ou scheduled","type":"text","disabled":true},{"key":"dueDateFrom","value":"2024-10-01","description":"Data de vencimento: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"dueDateTo","value":"2024-10-31","description":"Data de vencimento: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateFrom","value":"2024-08-31","description":"Data de emissão: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateTo","value":"2024-08-31","description":"Data de emissão: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateFrom","value":"2024-09-01","description":"Data de competência: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateTo","value":"2024-09-30","description":"Data de competência: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateFrom","value":"2024-07-20","description":"Data de quitação: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateTo","value":"2024-07-30","description":"Data de quitação: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Sep 2024 20:43:07 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"billId\": 1267,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-06-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1268,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-07-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1269,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-08-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1270,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-09-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1271,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-10-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1272,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-11-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1273,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2025-12-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1274,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-01-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1275,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-02-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1276,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-03-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1277,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-04-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1278,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-05-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1279,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-06-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1280,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": \"2025-08-15T16:05:06-03:00\",\n            \"amount\": 0,\n            \"dueDate\": \"2026-07-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1291,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-08-28T18:49:37-03:00\",\n            \"updatedAt\": \"2025-08-28T18:50:03-03:00\",\n            \"amount\": 500,\n            \"dueDate\": \"2025-09-01\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-09-01\",\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 13,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1324,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-10-27T11:27:22-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1326,\n            \"parentBillId\": 1325,\n            \"originalBillId\": 1325,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-10-27T15:28:52-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 5.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2025-10-27\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 3,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 50\n                },\n                {\n                    \"id\": 7,\n                    \"percentage\": 50\n                }\n            ]\n        },\n        {\n            \"billId\": 1327,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-10-27T15:30:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2025-10-27\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 50\n                },\n                {\n                    \"id\": 7,\n                    \"percentage\": 50\n                }\n            ]\n        },\n        {\n            \"billId\": 1337,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-11-27T18:36:23-03:00\",\n            \"updatedAt\": \"2025-12-17T10:24:04-03:00\",\n            \"amount\": 300,\n            \"dueDate\": \"2020-12-18\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"ENVIO TEV\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 100\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 11,\n            \"costCenters\": [\n                {\n                    \"id\": 11,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1249,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 1,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:13:59-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 30,\n            \"dueDate\": \"2025-07-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Pacotes de água e Coca-Cola\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 4,\n            \"supplierId\": 6,\n            \"accountId\": 2,\n            \"subcategoryId\": 11,\n            \"costCenters\": [\n                {\n                    \"id\": 3,\n                    \"percentage\": 100\n                }\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"c1486107-05fa-4af0-bea9-6abf5fad9c22","name":"(200) Success - Filtro de paginação","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bills?limit=10&offset=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bills"],"query":[{"key":"id[]","value":"1220,1221,1222","description":"IDs das despesas","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das unidades","type":"text","disabled":true},{"key":"supplierId","value":"null","description":"ID do fornecedor (informe \"null\" caso queria filtrar por despesas sem fornecedor)","type":"text","disabled":true},{"key":"categoryId","value":"2","description":"ID da categoria da despesa","type":"text","disabled":true},{"key":"subcategoryId","value":"50,24","description":"ID da subcategoria da despesa","type":"text","disabled":true},{"key":"status","value":"paid","description":"Status da despesa. Podendo ser: paid, unpaid, cancelled, received ou scheduled","type":"text","disabled":true},{"key":"dueDateFrom","value":"2024-10-01","description":"Data de vencimento: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"dueDateTo","value":"2024-10-31","description":"Data de vencimento: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateFrom","value":"2024-08-31","description":"Data de emissão: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateTo","value":"2024-08-31","description":"Data de emissão: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateFrom","value":"2024-09-01","description":"Data de competência: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateTo","value":"2024-09-30","description":"Data de competência: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateFrom","value":"2024-07-20","description":"Data de quitação: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateTo","value":"2024-07-30","description":"Data de quitação: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"10","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Sep 2024 19:51:17 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"3748"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"billId\": 1277,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-04-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1278,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-05-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1279,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 1000,\n            \"dueDate\": \"2026-06-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1280,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": \"2025-08-15T16:05:06-03:00\",\n            \"amount\": 0,\n            \"dueDate\": \"2026-07-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1291,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-08-28T18:49:37-03:00\",\n            \"updatedAt\": \"2025-08-28T18:50:03-03:00\",\n            \"amount\": 500,\n            \"dueDate\": \"2025-09-01\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-09-01\",\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 13,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1324,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-10-27T11:27:22-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1326,\n            \"parentBillId\": 1325,\n            \"originalBillId\": 1325,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-10-27T15:28:52-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 5.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2025-10-27\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 3,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 50\n                },\n                {\n                    \"id\": 7,\n                    \"percentage\": 50\n                }\n            ]\n        },\n        {\n            \"billId\": 1327,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-10-27T15:30:46-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2025-10-27\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 50\n                },\n                {\n                    \"id\": 7,\n                    \"percentage\": 50\n                }\n            ]\n        },\n        {\n            \"billId\": 1337,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-11-27T18:36:23-03:00\",\n            \"updatedAt\": \"2025-12-17T10:24:04-03:00\",\n            \"amount\": 300,\n            \"dueDate\": \"2020-12-18\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"ENVIO TEV\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 100\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 11,\n            \"costCenters\": [\n                {\n                    \"id\": 11,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1249,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 1,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-07-23T18:13:59-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 30,\n            \"dueDate\": \"2025-07-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Pacotes de água e Coca-Cola\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 4,\n            \"supplierId\": 6,\n            \"accountId\": 2,\n            \"subcategoryId\": 11,\n            \"costCenters\": [\n                {\n                    \"id\": 3,\n                    \"percentage\": 100\n                }\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 10,\n        \"hasNext\": false\n    }\n}"},{"id":"46f14c23-c80c-4c58-bfbc-360e30957dba","name":"(200) Success - Filtro de despesas quitadas com vencimento a partir de","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bills?status=paid&dueDateFrom=2024-10-01&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bills"],"query":[{"key":"id[]","value":"1220,1221,1222","description":"IDs das despesas","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das unidades","type":"text","disabled":true},{"key":"supplierId","value":"null","description":"ID do fornecedor (informe \"null\" caso queria filtrar por despesas sem fornecedor)","type":"text","disabled":true},{"key":"categoryId","value":"2","description":"ID da categoria da despesa","type":"text","disabled":true},{"key":"subcategoryId","value":"50,24","description":"ID da subcategoria da despesa","type":"text","disabled":true},{"key":"status","value":"paid","description":"Status da despesa. Podendo ser: paid, unpaid, cancelled, received ou scheduled"},{"key":"dueDateFrom","value":"2024-10-01","description":"Data de vencimento: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd"},{"key":"dueDateTo","value":"2024-10-31","description":"Data de vencimento: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateFrom","value":"2024-08-31","description":"Data de emissão: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateTo","value":"2024-08-31","description":"Data de emissão: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateFrom","value":"2024-09-01","description":"Data de competência: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateTo","value":"2024-09-30","description":"Data de competência: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateFrom","value":"2024-07-20","description":"Data de quitação: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateTo","value":"2024-07-30","description":"Data de quitação: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Sep 2024 19:55:05 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"1616"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"billId\": 1233,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 950,\n            \"paymentDate\": \"2024-08-29\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": 6,\n            \"installmentNumber\": 3,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 2,\n            \"createdAt\": \"2024-10-30T00:00:00-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 950,\n            \"dueDate\": \"2024-10-30\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"( 3 / 3 ) - O valor original desta despesa era de R$ 1.000,00 e passou a ser de R$ 950,00 devido a uma quitação parcial, gerando a despesa de nº 1234 no valor de R$ 50,00.\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 3,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1234,\n            \"parentBillId\": 1233,\n            \"originalBillId\": 1233,\n            \"chargeId\": null,\n            \"paidAmount\": 39.99,\n            \"paymentDate\": \"2024-08-29\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": 6,\n            \"installmentNumber\": 3,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 2,\n            \"createdAt\": \"2024-10-30T00:00:00-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 39.99,\n            \"dueDate\": \"2024-10-30\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"( 3 / 3 ) - O valor original desta despesa era de R$ 50,00 e passou a ser de R$ 39,99 devido a uma quitação parcial, gerando a despesa de nº 1235 no valor de R$ 10,01.\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 3,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1235,\n            \"parentBillId\": 1234,\n            \"originalBillId\": 1233,\n            \"chargeId\": null,\n            \"paidAmount\": 10.01,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": 6,\n            \"installmentNumber\": 3,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-01T00:00:00-03:00\",\n            \"updatedAt\": \"2025-10-22T16:03:42-03:00\",\n            \"amount\": 10.01,\n            \"dueDate\": \"2024-10-30\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-08-29\",\n            \"description\": \"( 3 / 3 )\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 3,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1236,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 150,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-31T00:00:00-03:00\",\n            \"updatedAt\": \"2025-10-22T16:02:42-03:00\",\n            \"amount\": 150,\n            \"dueDate\": \"2024-10-31\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1237,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 500,\n            \"paymentDate\": \"2024-10-01\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 19,\n            \"createdAt\": \"2024-10-04T00:00:00-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 500,\n            \"dueDate\": \"2024-10-04\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1238,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 100,\n            \"paymentDate\": \"2024-10-01\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 3,\n            \"createdAt\": \"2024-10-03T00:00:00-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 100,\n            \"dueDate\": \"2024-10-03\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1239,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.99,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-08T16:41:15-03:00\",\n            \"updatedAt\": \"2025-10-22T16:00:39-03:00\",\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Comissão vendedor Johnny Cage\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1240,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.99,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-08T16:53:20-03:00\",\n            \"updatedAt\": \"2025-10-22T16:00:48-03:00\",\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1241,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.99,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-08T17:07:19-03:00\",\n            \"updatedAt\": \"2025-10-22T16:01:03-03:00\",\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1242,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.99,\n            \"paymentDate\": \"2024-10-14\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-14T10:08:31-03:00\",\n            \"updatedAt\": \"2024-10-14T10:09:32-03:00\",\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1243,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.99,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-14T10:26:50-03:00\",\n            \"updatedAt\": \"2025-10-22T16:01:14-03:00\",\n            \"amount\": 15.99,\n            \"dueDate\": \"2024-10-01\",\n            \"competenceDate\": \"2024-10-01\",\n            \"documentDate\": \"2024-09-15\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\n            \"digitableLine\": \"00000.00000 00000.000000 00000.000000 0 00000000000000\",\n            \"documentNumber\": \"155687841324849214\",\n            \"cac\": {\n                \"isIncluded\": true,\n                \"percentage\": 30\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1244,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 100,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-01-08T22:46:52-03:00\",\n            \"updatedAt\": \"2025-10-22T16:02:57-03:00\",\n            \"amount\": 100,\n            \"dueDate\": \"2025-01-08\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 10,\n            \"costCenters\": [\n                {\n                    \"id\": 7,\n                    \"percentage\": 33.34\n                },\n                {\n                    \"id\": 9,\n                    \"percentage\": 33.33\n                },\n                {\n                    \"id\": 10,\n                    \"percentage\": 33.33\n                }\n            ]\n        },\n        {\n            \"billId\": 1245,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300333,\n            \"paidAmount\": 115.22,\n            \"paymentDate\": \"2025-07-03\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 4,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-03T09:18:11-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 115.22,\n            \"dueDate\": \"2025-07-03\",\n            \"competenceDate\": \"2023-10-01\",\n            \"documentDate\": \"2025-07-03\",\n            \"description\": \"Taxa/Tarifa por pagamento da cobrança 300333 através de Cartão de Crédito\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 29,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1246,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300492,\n            \"paidAmount\": 0.07,\n            \"paymentDate\": \"2025-07-18\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 24,\n            \"createdAt\": \"2025-07-18T20:19:26-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.07,\n            \"dueDate\": \"2025-07-18\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-07-18\",\n            \"description\": \"Taxa do Pix Gerencianet - ref. quitação da cobrança: 300492, transação: c75373e4f73da76e8fac495a8ef81a94\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1247,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300501,\n            \"paidAmount\": 0.81,\n            \"paymentDate\": \"2025-07-21\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 4,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-21T17:29:54-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.81,\n            \"dueDate\": \"2025-07-21\",\n            \"competenceDate\": \"2025-03-25\",\n            \"documentDate\": \"2025-07-21\",\n            \"description\": \"Taxa/Tarifa por pagamento da cobrança 300501 através de Cartão de Crédito\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 29,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1248,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300491,\n            \"paidAmount\": 4.89,\n            \"paymentDate\": \"2025-07-21\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 4,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-21T17:41:28-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 4.89,\n            \"dueDate\": \"2025-07-21\",\n            \"competenceDate\": \"2024-11-28\",\n            \"documentDate\": \"2025-07-21\",\n            \"description\": \"Taxa/Tarifa por pagamento da cobrança 300491 através de Cartão de Crédito\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 29,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1262,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 1000,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": \"2025-10-22T16:01:27-03:00\",\n            \"amount\": 1000,\n            \"dueDate\": \"2025-01-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1263,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 1000,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": \"2025-10-22T16:03:05-03:00\",\n            \"amount\": 1000,\n            \"dueDate\": \"2025-02-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1264,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 1000,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": \"2025-10-22T16:03:15-03:00\",\n            \"amount\": 1000,\n            \"dueDate\": \"2025-03-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1265,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 1000,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"fixed\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": 2,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-23T18:14:46-03:00\",\n            \"updatedAt\": \"2025-10-22T16:03:25-03:00\",\n            \"amount\": 1000,\n            \"dueDate\": \"2025-04-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Sistema top, top, top\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": 1,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"7931173a-3dfc-48d5-8c83-4b3464d22269","name":"(200) Success - Filtro de despesas que não possuem fornecedor","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bills?supplierId=null&limit=20","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bills"],"query":[{"key":"id[]","value":"1220,1221,1222","description":"IDs das despesas","type":"text","disabled":true},{"key":"companyId[]","value":"3","description":"IDs das unidades","type":"text","disabled":true},{"key":"supplierId","value":"null","description":"ID do fornecedor (informe \"null\" caso queria filtrar por despesas sem fornecedor)"},{"key":"categoryId","value":"2","description":"ID da categoria da despesa","type":"text","disabled":true},{"key":"subcategoryId","value":"50,24","description":"ID da subcategoria da despesa","type":"text","disabled":true},{"key":"status","value":"paid","description":"Status da despesa. Podendo ser: paid, unpaid, cancelled, received ou scheduled","type":"text","disabled":true},{"key":"dueDateFrom","value":"2024-10-01","description":"Data de vencimento: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"dueDateTo","value":"2024-10-31","description":"Data de vencimento: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateFrom","value":"2024-08-31","description":"Data de emissão: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"issueDateTo","value":"2024-08-31","description":"Data de emissão: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateFrom","value":"2024-09-01","description":"Data de competência: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"competenceDateTo","value":"2024-09-30","description":"Data de competência: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateFrom","value":"2024-07-20","description":"Data de quitação: define a data a partir de quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"paymentDateTo","value":"2024-07-30","description":"Data de quitação: define a data até quando as despesas serão buscadas. Formato: yyyy-MM-dd","type":"text","disabled":true},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Sep 2024 20:02:47 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Length","value":"5770"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"billId\": 1219,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300111,\n            \"paidAmount\": 0.89,\n            \"paymentDate\": \"2023-08-03\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 6,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 2,\n            \"createdAt\": \"2023-08-03T00:00:00-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.89,\n            \"dueDate\": \"2023-08-03\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2023-08-03\",\n            \"description\": \"Taxa do Pix Gerencianet - ref. quitação da cobrança: 300111, transação: c3cad4b1ce445916c381ea1a65abfc3a\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 14,\n            \"subcategoryId\": 38,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1220,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.02,\n            \"paymentDate\": \"2024-10-01\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 2,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-01-31T00:00:00-03:00\",\n            \"updatedAt\": \"2025-08-14T12:26:48-03:00\",\n            \"amount\": 15.02,\n            \"dueDate\": \"2024-01-31\",\n            \"competenceDate\": \"2025-08-15\",\n            \"documentDate\": null,\n            \"description\": \"Comissão do vendedor Hiago\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 3,\n            \"subcategoryId\": 50,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1221,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 15.02,\n            \"paymentDate\": \"2024-10-01\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 2,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 3,\n            \"createdAt\": \"2024-02-01T00:00:00-03:00\",\n            \"updatedAt\": \"2025-08-14T17:09:38-03:00\",\n            \"amount\": 15.02,\n            \"dueDate\": \"2024-02-03\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"Comissão do vendedor Hiago\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 50,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1222,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 5,\n            \"paymentDate\": \"2024-10-01\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 2,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-02-01T00:00:00-03:00\",\n            \"updatedAt\": \"2025-08-14T17:10:57-03:00\",\n            \"amount\": 5,\n            \"dueDate\": \"2024-02-03\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2024-02-01\",\n            \"description\": \"Comissão do vendedor Hiago\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 50,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1226,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 100,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": 5,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 9,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-04-01T00:00:00-03:00\",\n            \"updatedAt\": \"2025-10-22T15:59:48-03:00\",\n            \"amount\": 100,\n            \"dueDate\": \"2024-04-01\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": \"( 1 / 3 )\",\n            \"digitableLine\": null,\n            \"documentNumber\": \"202409011591212\",\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 5,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 48,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1227,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 100,\n            \"paymentDate\": \"2025-08-28\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": 5,\n            \"installmentNumber\": 2,\n            \"isReconciled\": false,\n            \"categoryId\": 9,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-05-01T00:00:00-03:00\",\n            \"updatedAt\": \"2025-08-28T18:33:49-03:00\",\n            \"amount\": 100,\n            \"dueDate\": \"2024-05-01\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2024-04-25\",\n            \"description\": \"( 2 / 3 )\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 5,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 48,\n            \"costCenters\": [\n                {\n                    \"id\": 7,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1236,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 150,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2024-10-31T00:00:00-03:00\",\n            \"updatedAt\": \"2025-10-22T16:02:42-03:00\",\n            \"amount\": 150,\n            \"dueDate\": \"2024-10-31\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 6,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1238,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 100,\n            \"paymentDate\": \"2024-10-01\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 3,\n            \"createdAt\": \"2024-10-03T00:00:00-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 100,\n            \"dueDate\": \"2024-10-03\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 4,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1244,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": 100,\n            \"paymentDate\": \"2025-10-22\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-01-08T22:46:52-03:00\",\n            \"updatedAt\": \"2025-10-22T16:02:57-03:00\",\n            \"amount\": 100,\n            \"dueDate\": \"2025-01-08\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 10,\n            \"costCenters\": [\n                {\n                    \"id\": 7,\n                    \"percentage\": 33.34\n                },\n                {\n                    \"id\": 9,\n                    \"percentage\": 33.33\n                },\n                {\n                    \"id\": 10,\n                    \"percentage\": 33.33\n                }\n            ]\n        },\n        {\n            \"billId\": 1245,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300333,\n            \"paidAmount\": 115.22,\n            \"paymentDate\": \"2025-07-03\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 4,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-03T09:18:11-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 115.22,\n            \"dueDate\": \"2025-07-03\",\n            \"competenceDate\": \"2023-10-01\",\n            \"documentDate\": \"2025-07-03\",\n            \"description\": \"Taxa/Tarifa por pagamento da cobrança 300333 através de Cartão de Crédito\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 29,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1246,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300492,\n            \"paidAmount\": 0.07,\n            \"paymentDate\": \"2025-07-18\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 24,\n            \"createdAt\": \"2025-07-18T20:19:26-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.07,\n            \"dueDate\": \"2025-07-18\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-07-18\",\n            \"description\": \"Taxa do Pix Gerencianet - ref. quitação da cobrança: 300492, transação: c75373e4f73da76e8fac495a8ef81a94\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1247,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300501,\n            \"paidAmount\": 0.81,\n            \"paymentDate\": \"2025-07-21\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 4,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-21T17:29:54-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.81,\n            \"dueDate\": \"2025-07-21\",\n            \"competenceDate\": \"2025-03-25\",\n            \"documentDate\": \"2025-07-21\",\n            \"description\": \"Taxa/Tarifa por pagamento da cobrança 300501 através de Cartão de Crédito\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 29,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1248,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300491,\n            \"paidAmount\": 4.89,\n            \"paymentDate\": \"2025-07-21\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 4,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 5,\n            \"createdAt\": \"2025-07-21T17:41:28-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 4.89,\n            \"dueDate\": \"2025-07-21\",\n            \"competenceDate\": \"2024-11-28\",\n            \"documentDate\": \"2025-07-21\",\n            \"description\": \"Taxa/Tarifa por pagamento da cobrança 300491 através de Cartão de Crédito\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 29,\n            \"costCenters\": []\n        },\n        {\n            \"billId\": 1283,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300536,\n            \"paidAmount\": 0.01,\n            \"paymentDate\": \"2025-08-15\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 24,\n            \"createdAt\": \"2025-08-15T16:50:01-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.01,\n            \"dueDate\": \"2025-08-15\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-08-15\",\n            \"description\": \"Taxa do Pix Gerencianet - ref. quitação da cobrança: 300536, transação: 852df4655e1f125b7132e532520427d1\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1284,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-08-15T20:00:51-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 50,\n            \"dueDate\": \"2025-08-30\",\n            \"competenceDate\": null,\n            \"documentDate\": null,\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 4,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 49,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1286,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300523,\n            \"paidAmount\": 9.86,\n            \"paymentDate\": \"2025-09-17\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 6,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 26,\n            \"createdAt\": \"2025-08-23T10:48:16-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 9.86,\n            \"dueDate\": \"2025-09-17\",\n            \"competenceDate\": \"2025-05-01\",\n            \"documentDate\": \"2025-09-17\",\n            \"description\": \"Taxa do Cartão de Crédito (Cielo) - ref. cobrança nº: 300523\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 4,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 38,\n            \"costCenters\": [\n                {\n                    \"id\": 11,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1288,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300525,\n            \"paidAmount\": 68.49,\n            \"paymentDate\": \"2025-09-17\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 6,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 26,\n            \"createdAt\": \"2025-08-23T10:57:59-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 68.49,\n            \"dueDate\": \"2025-09-17\",\n            \"competenceDate\": \"2025-07-01\",\n            \"documentDate\": \"2025-09-17\",\n            \"description\": \"Taxa do Cartão de Crédito (Cielo) - ref. cobrança nº: 300525\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 4,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 38,\n            \"costCenters\": [\n                {\n                    \"id\": 11,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1289,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300487,\n            \"paidAmount\": 4.2,\n            \"paymentDate\": \"2025-09-25\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 24,\n            \"createdAt\": \"2025-08-26T10:59:25-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 4.2,\n            \"dueDate\": \"2025-09-25\",\n            \"competenceDate\": \"2024-11-06\",\n            \"documentDate\": \"2025-09-25\",\n            \"description\": \"Taxa do Cartão de Crédito (Cielo) - ref. cobrança nº: 300487\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 11,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1290,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": 300541,\n            \"paidAmount\": 0.01,\n            \"paymentDate\": \"2025-08-27\",\n            \"status\": \"paid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": 24,\n            \"createdAt\": \"2025-08-27T22:00:16-03:00\",\n            \"updatedAt\": null,\n            \"amount\": 0.01,\n            \"dueDate\": \"2025-08-27\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-08-27\",\n            \"description\": \"Taxa do Pix Gerencianet - ref. quitação da cobrança: 300541, transação: 735180e2b9b46f0cc1dfed659129bca8\",\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 1,\n            \"subcategoryId\": 1,\n            \"costCenters\": [\n                {\n                    \"id\": 1,\n                    \"percentage\": 100\n                }\n            ]\n        },\n        {\n            \"billId\": 1291,\n            \"parentBillId\": null,\n            \"originalBillId\": null,\n            \"chargeId\": null,\n            \"paidAmount\": null,\n            \"paymentDate\": null,\n            \"status\": \"unpaid\",\n            \"type\": \"loose\",\n            \"installmentId\": null,\n            \"installmentNumber\": 1,\n            \"isReconciled\": false,\n            \"categoryId\": 1,\n            \"recurrentBillId\": null,\n            \"paymentMethodId\": null,\n            \"createdAt\": \"2025-08-28T18:49:37-03:00\",\n            \"updatedAt\": \"2025-08-28T18:50:03-03:00\",\n            \"amount\": 500,\n            \"dueDate\": \"2025-09-01\",\n            \"competenceDate\": null,\n            \"documentDate\": \"2025-09-01\",\n            \"description\": null,\n            \"digitableLine\": null,\n            \"documentNumber\": null,\n            \"cac\": {\n                \"isIncluded\": false,\n                \"percentage\": 0\n            },\n            \"companyId\": 3,\n            \"supplierId\": null,\n            \"accountId\": 15,\n            \"subcategoryId\": 13,\n            \"costCenters\": [\n                {\n                    \"id\": 9,\n                    \"percentage\": 100\n                }\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"533b1d6c-2ec7-4e66-a83b-1c1822078616","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/bills?id[]=1220,1221,1222&categoryId=2&subcategoryId=50,24&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["bills"],"query":[{"key":"id[]","value":"1220,1221,1222","description":"IDs das despesas"},{"key":"categoryId","value":"2","description":"ID da categoria da despesa"},{"key":"subcategoryId","value":"50,24","description":"ID da subcategoria da despesa"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Sep 2024 17:56:46 GMT"},{"key":"Server","value":"Apache/2.4.61 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"48"},{"key":"Content-Length","value":"120"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"subcategoryId\",\n            \"messages\": [\n                \"Subcategory Id must be a number\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"30daa573-f997-4563-aa0b-8907de63ea1b"}],"id":"3183f3ea-9420-48a4-b4c2-843d0c2c1130","description":"<p>Endpoints que correspondem a Despesa no sistema Conexa.</p>\n","_postman_id":"3183f3ea-9420-48a4-b4c2-843d0c2c1130","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Bill Category","item":[{"name":"/billCategory/:id","id":"fbcfc3c6-a280-4ab3-9af4-be139e44ee12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategory/:id","description":"<p>Recuperação dos dados da Categoria da Despesa.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>billCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de despesa</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da categoria de despesa</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Indica se a categoria de despesa está ativa</td>\n</tr>\n<tr>\n<td>subcategories</td>\n<td>array of objects</td>\n<td>Array de objetos com as subcategorias da</td>\n</tr>\n<tr>\n<td>subcategories[].id</td>\n<td>integer</td>\n<td>ID da subcategoria</td>\n</tr>\n<tr>\n<td>subcategories[].name</td>\n<td>string</td>\n<td>Nome da subcategoria</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["billCategory",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"13","key":"id"}]}},"response":[{"id":"0ad5ebad-6c3e-4336-8e26-f3f94ab402f5","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billCategory",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 03 Feb 2026 00:41:02 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=bf8bfb419851a802695d521e084da92c; expires=Tue, 03 Feb 2026 02:41:02 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"billCategoryId\": 2,\n    \"name\": \"DESPESA COM PESSOAL\",\n    \"isActive\": true,\n    \"subcategories\": [\n        {\n            \"id\": 22,\n            \"name\": \"Assistência Médica\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Bolsa Estágio\"\n        },\n        {\n            \"id\": 50,\n            \"name\": \"Comissão\"\n        },\n        {\n            \"id\": 59,\n            \"name\": \"dfasdas\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Diversos\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Encargos Sociais: FGTS/INSS\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Férias/Décimo Terceiro Salário\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Indenização Trabalhista\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Serviços Temporários\"\n        },\n        {\n            \"id\": 57,\n            \"name\": \"Trest\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Vale Transporte/Auxilio Transporte\"\n        }\n    ]\n}"},{"id":"698c14dd-282a-4a42-8403-9f009e810fd4","name":"(403) Resource not available in your system","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billCategory",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 03 Feb 2026 13:23:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"CNXSESSID=b31c079cb39c4c4d621b295608ccd7c6; expires=Tue, 03 Feb 2026 15:23:09 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"API V2 is not available in your system.\"\n}"},{"id":"94e1eeb4-9d20-4a9e-bb34-a4df48c599f5","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billCategory",":id"],"variable":[{"key":"id","value":"300459"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 03 Feb 2026 00:40:02 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This BillCategory does not exist or you have no permission to access it\"\n}"}],"_postman_id":"fbcfc3c6-a280-4ab3-9af4-be139e44ee12"},{"name":"/billCategories","id":"689294d1-a061-462d-9a14-57839a5132f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategories?limit=10","description":"<p>Listagem paginada de Categorias de Despesa.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Categorias de Despesa contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#fbcfc3c6-a280-4ab3-9af4-be139e44ee12\">GET /billCategory/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["billCategories"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p> IDs das categorias de despesas</p>\n","type":"text/plain"},"key":"id[]","value":"1,2,3"},{"disabled":true,"description":{"content":"<p>Nome da categoria</p>\n","type":"text/plain"},"key":"name","value":"IMPOSTO E TAXAS"},{"disabled":true,"description":{"content":"<p>Status de ativação (1 = ativo, 0 = inativo)</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"ff6bdf55-ed17-40c2-8ea4-d48bfa9c45da","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategories?name=IMPOSTO E TAXAS&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billCategories"],"query":[{"key":"name","value":"IMPOSTO E TAXAS","description":"Nome da categoria"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 23:14:14 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"billCategoryId\": 6,\n            \"name\": \"IMPOSTO E TAXAS\",\n            \"isActive\": true,\n            \"subcategories\": [\n                {\n                    \"id\": 58,\n                    \"name\": \"AVA\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Contribuição Sindical\"\n                },\n                {\n                    \"id\": 37,\n                    \"name\": \"Impostos\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Multas Fiscais\"\n                },\n                {\n                    \"id\": 38,\n                    \"name\": \"Taxas\"\n                }\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"eedcdb31-4c20-4a76-aa47-32bcf6c12e7d","name":"(200) Success - Empty results","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategories?id[]=1,2,3&name=IMPOSTO E TAXAS&isActive=1&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billCategories"],"query":[{"key":"id[]","value":"1,2,3","description":" IDs das categorias de despesas"},{"key":"name","value":"IMPOSTO E TAXAS","description":"Nome da categoria"},{"key":"isActive","value":"1","description":"Status de ativação (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 23:15:25 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"51"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"15870d6f-7a8d-4e54-8980-7b119e15e428","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billCategories?id[]=2,taxa&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billCategories"],"query":[{"key":"id[]","value":"2,taxa","description":" IDs das categorias de despesas"},{"key":"name","value":"IMPOSTO E TAXAS","description":"Nome da categoria","disabled":true},{"key":"isActive","value":"1","description":"Status de ativação (1 = ativo, 0 = inativo)","disabled":true},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 23:16:38 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"47"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"id\",\n            \"messages\": [\n                \"Index 1 must be integer\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"689294d1-a061-462d-9a14-57839a5132f0"}],"id":"2152a09a-cc01-4942-bb41-645a09b953ec","_postman_id":"2152a09a-cc01-4942-bb41-645a09b953ec","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Bill Subcategory","item":[{"name":"/billSubcategory/:id","id":"8e49f22b-fc21-4843-b0e3-118b6475391d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategory/:id","description":"<p>Recuperação dos dados da Subcategoria da Despesa.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>billSubcategoryId</td>\n<td>integer</td>\n<td>ID da subcategoria de despesa</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da subcategoria de despesa</td>\n</tr>\n<tr>\n<td>billCategoryId</td>\n<td>integer</td>\n<td>ID da categoria de despesa vinculada</td>\n</tr>\n<tr>\n<td>dreCategory</td>\n<td>string/null</td>\n<td>Categoria do DRE¹</td>\n</tr>\n<tr>\n<td>accountingCode</td>\n<td>integer/null</td>\n<td>Código para o software contábil. Retorna o código sintético configurado ou o código individual da subcategoria</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Indica se está ativo</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Demonstrativo de Resultados do Exercício (DRE) vinculada à subcategoria, tendo os possíveis valores: <strong>\"Não exibir no DRE\"</strong>, <strong>\"Custo dos Serviços Prestados\"</strong>, <strong>\"Custo das Vendas de Produtos\"</strong>, <strong>\"Impostos Sobre Vendas\"</strong>, <strong>\"Despesas Administrativas\"</strong>, <strong>\"Despesas Comerciais\"</strong>, <strong>\"Despesas Financeiras\"</strong>, <strong>\"Despesas Operacionais\"</strong>, <strong>\"Empréstimos e Dívidas\"</strong>, <strong>\"Investimentos em Imobilizado\"</strong>, <strong>\"Outras Despesas Não Operacionais\"</strong>.</p>\n","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["billSubcategory",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"description":{"content":"<p>ID da subcategoria da despesa</p>\n","type":"text/plain"},"type":"any","value":"47","key":"id"}]}},"response":[{"id":"5c1fc276-b10d-40dd-90e1-a11bfbc7830e","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billSubcategory",":id"],"variable":[{"key":"id","value":"47"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 09 Feb 2026 14:54:02 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=050f9b7a10b3878bde93a267bcb08fb8; expires=Mon, 09 Feb 2026 16:54:02 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"billSubcategoryId\": 47,\n    \"name\": \"Retirada Pró-labore\",\n    \"billCategoryId\": 8,\n    \"dreCategory\": \"Despesas Administrativas\",\n    \"accountingCode\": null,\n    \"isActive\": true\n}"},{"id":"da627176-d4e3-4e1b-ac5d-6cbc39206778","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billSubcategory",":id"],"variable":[{"key":"id","value":"470"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 09 Feb 2026 14:54:31 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"31"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Bill Subcategory \\\"470\\\" not found\"\n}"}],"_postman_id":"8e49f22b-fc21-4843-b0e3-118b6475391d"},{"name":"/billSubcategories","id":"4862b3ea-21ff-44de-9d8c-e9010d679719","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategories?limit=10","description":"<p>Listagem paginada de Subcategorias de Despesa.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Subcategorias de Despesa contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#8e49f22b-fc21-4843-b0e3-118b6475391d\">GET /billSubcategory/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["billSubcategories"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das subcategorias de despesas</p>\n","type":"text/plain"},"key":"id[]","value":"3,4"},{"disabled":true,"description":{"content":"<p>Nome da subcategoria</p>\n","type":"text/plain"},"key":"name","value":"   Retirada Pró-labore"},{"disabled":true,"description":{"content":"<p>IDs das categorias de depessas</p>\n","type":"text/plain"},"key":"billCategoryId[]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Opções de Categoria de DRE, podendo ser: Não exibir no DRE, Custo dos Serviços Prestados, Custo das Vendas de Produtos, Impostos Sobre Vendas, Despesas Administrativas, Despesas Comerciais, Despesas Financeiras, Despesas Operacionais, Empréstimos e Dívidas, Investimentos em Imobilizado ou Outras Despesas Não Operacionais</p>\n","type":"text/plain"},"key":"dreCategory","value":"Não exibir no DRE"},{"disabled":true,"description":{"content":"<p>Status de ativação (1 para ativo e 0 para inativo)</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"62232530-8372-449a-894f-276784cb176e","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategories?dreCategory=Não exibir no dre&limit=20&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billSubcategories"],"query":[{"key":"id[]","value":"3,4","description":"IDs das subcategorias de despesas","type":"text","disabled":true},{"key":"name","value":"   Retirada Pró-labore","description":"Nome da subcategoria","type":"text","disabled":true},{"key":"billCategoryId[]","value":"1,2","description":"IDs das categorias de depessas","type":"text","disabled":true},{"key":"dreCategory","value":"Não exibir no dre","description":"Opções de Categoria de DRE, podendo ser: Não exibir no DRE, Custo dos Serviços Prestados, Custo das Vendas de Produtos, Impostos Sobre Vendas, Despesas Administrativas, Despesas Comerciais, Despesas Financeiras, Despesas Operacionais, Empréstimos e Dívidas, Investimentos em Imobilizado ou Outras Despesas Não Operacionais"},{"key":"limit","value":"20","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 15:23:38 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"billSubcategoryId\": 1,\n            \"name\": \"Aluguel\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10004,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 2,\n            \"name\": \"Energia elétrica\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10001,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 3,\n            \"name\": \"Material de Escritório/Informática\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 4,\n            \"name\": \"Manutenção de Internet/Informática e Sistemas\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 5,\n            \"name\": \"Material de Limpeza/Copa\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 6,\n            \"name\": \"Serviços de Limpeza e Manutenção\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 7,\n            \"name\": \"Telefone\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 8,\n            \"name\": \"Cursos e Treinamentos\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 9,\n            \"name\": \"Taxas e Custas: JUCEB, Cartório, etc.\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 10,\n            \"name\": \"Correios\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 11,\n            \"name\": \"Alimentação e Refeição\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10010,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 12,\n            \"name\": \"Viagens e Estadias\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10009,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 13,\n            \"name\": \"Associações e Sindicatos\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10008,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 14,\n            \"name\": \"Diversos\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10007,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 15,\n            \"name\": \"Prejuízos - Cliente\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 10006,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 16,\n            \"name\": \"Salário\",\n            \"billCategoryId\": 1,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": 1000,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 17,\n            \"name\": \"Indenização Trabalhista\",\n            \"billCategoryId\": 2,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 18,\n            \"name\": \"Encargos Sociais: FGTS/INSS\",\n            \"billCategoryId\": 2,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 19,\n            \"name\": \"Vale Transporte/Auxilio Transporte\",\n            \"billCategoryId\": 2,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        },\n        {\n            \"billSubcategoryId\": 20,\n            \"name\": \"Bolsa Estágio\",\n            \"billCategoryId\": 2,\n            \"dreCategory\": \"Despesas Administrativas\",\n            \"accountingCode\": null,\n            \"isActive\": true\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 20,\n        \"offset\": 0,\n        \"hasNext\": true\n    }\n}"},{"id":"d69408d5-ee51-4dd9-bc9e-d8d5da68295b","name":"(200) Success - Empty results","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategories?id[]=3,4&name=   Retirada Pró-labore&billCategoryId[]=1,2&dreCategory=Não exibir no dre&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billSubcategories"],"query":[{"key":"id[]","value":"3,4","description":"IDs das subcategorias de despesas"},{"key":"name","value":"   Retirada Pró-labore","description":"Nome da subcategoria"},{"key":"billCategoryId[]","value":"1,2","description":"IDs das categorias de depessas"},{"key":"dreCategory","value":"Não exibir no dre","description":"Opções de Categoria de DRE, podendo ser: Não exibir no DRE, Custo dos Serviços Prestados, Custo das Vendas de Produtos, Impostos Sobre Vendas, Despesas Administrativas, Despesas Comerciais, Despesas Financeiras, Despesas Operacionais, Empréstimos e Dívidas, Investimentos em Imobilizado ou Outras Despesas Não Operacionais"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 15:32:28 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"fa55bc9c-8572-4de3-a3e1-86f196c396bf","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/billSubcategories?dreCategory=Despesas com Trade&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["billSubcategories"],"query":[{"key":"id[]","value":"3,4","description":"IDs das subcategorias de despesas","type":"text","disabled":true},{"key":"name","value":"   Retirada Pró-labore","description":"Nome da subcategoria","type":"text","disabled":true},{"key":"billCategoryId[]","value":"1,2","description":"IDs das categorias de depessas","type":"text","disabled":true},{"key":"dreCategory","value":"Despesas com Trade","description":"Opções de Categoria de DRE, podendo ser: Não exibir no DRE, Custo dos Serviços Prestados, Custo das Vendas de Produtos, Impostos Sobre Vendas, Despesas Administrativas, Despesas Comerciais, Despesas Financeiras, Despesas Operacionais, Empréstimos e Dívidas, Investimentos em Imobilizado ou Outras Despesas Não Operacionais"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 15:33:10 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"18"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"dreCategory\",\n            \"messages\": [\n                \"Dre Category is not on the list (Não exibir no DRE, Custo dos Serviços Prestados, Custo das Vendas de Produtos, Impostos Sobre Vendas, Despesas Administrativas, Despesas Comerciais, Despesas Financeiras, Despesas Operacionais, Empréstimos e Dívidas, Investimentos em Imobilizado, Outras Despesas Não Operacionais)\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"4862b3ea-21ff-44de-9d8c-e9010d679719"}],"id":"727f2104-26cf-4a04-bc86-1045d787116f","_postman_id":"727f2104-26cf-4a04-bc86-1045d787116f","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Supplier","item":[{"name":"/supplier","id":"9de9a6da-cfc4-48c8-a419-b484e0ebc777","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fake Company ABC\",\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"issuingAuthority\": \"SSP BA\"\n    },\n    \"legalPerson\": {\n        \"legalName\": \"Fake Company ABC Ltda\",\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3355\"],\n    \"emails\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"contactPersonNames\": [\"Maria\", \"José\", \"João\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier","description":"<p>Criação de um fornecedor no sistema Conexa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome ou nome fantasia</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>fieldOfActivity</td>\n<td>string</td>\n<td>Ramo de atividade</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string</td>\n<td>Celular</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td>Site</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>naturalPerson</td>\n<td>object</td>\n<td>Dados referentes a pessoa física</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>naturalPerson.cpf</td>\n<td>string</td>\n<td>CPF</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>naturalPerson.rg</td>\n<td>string</td>\n<td>RG</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>naturalPerson.issuingAuthority</td>\n<td>string</td>\n<td>Órgão expedidor</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>legalPerson</td>\n<td>object</td>\n<td>Dados referentes a pessoa jurídica</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>legalPerson.legalName</td>\n<td>string</td>\n<td>Razão social</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>legalPerson.cnpj</td>\n<td>string</td>\n<td>CNPJ</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>legalPerson.stateInscription</td>\n<td>string</td>\n<td>Inscrição estadual</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>legalPerson.municipalInscription</td>\n<td>string</td>\n<td>Inscrição municipal</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Endereço do fornecedor</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>CEP</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>string</td>\n<td>Sigla do estado (UF)</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Cidade</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Logradouro</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string</td>\n<td>Número</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>array of string</td>\n<td>Lista com os telefones de contato</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>emails</td>\n<td>array of string</td>\n<td>Lista com e-mails de contato</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>contactPersonNames</td>\n<td>array of string</td>\n<td>Lista de pessoas de contato</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID do fornecedor criado</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["supplier"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"ca38d41e-55ac-4e1f-80ee-490f7f0de021","name":"(201) Success - Pessoa Jurídica","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fake Company ABC\",\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"legalPerson\": {\n        \"legalName\": \"Fake Company ABC Ltda\",\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3355\"],\n    \"emails\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"contactPersonNames\": [\"José\", \"João\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sun, 20 Jul 2025 14:08:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5\n}"},{"id":"c579040a-317f-4163-9c78-e385bb8c76ee","name":"(201) Success - Pessoa Física","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Júlia Alvarez\",\n    \"fieldOfActivity\": \"Contadora\",\n    \"notes\": \"Contadora da Av. Albert Einstein\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"juliaalvarezcontadora123.app\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"issuingAuthority\": \"SSP BA\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3355\"],\n    \"emails\" : [\"admin@contadora123.com\", \"juliaalvarez@contadora123.com\"],\n    \"contactPersonNames\": [\"Júlia\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sun, 20 Jul 2025 14:05:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4\n}"},{"id":"40c3e9d0-4e35-4d82-947f-644e5c6a180b","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fake Company A\",\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079\",\n        \"rg\": \"30.340.779-7\",\n        \"issuingAuthority\": \"SSP BA\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3355\"],\n    \"emails\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"contactPersonNames\": [\"Maria\", \"José\", \"João\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sun, 20 Jul 2025 14:01:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"17"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"naturalPerson.cpf\",\n            \"messages\": [\n                \"Invalid CPF\"\n            ]\n        }\n    ]\n}"},{"id":"9bec5c78-a6a1-45bf-aa44-96371983e7e1","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fake Company A\",\n    \"fieldOfActivity\": \"Indústria\",\n    \"notes\": \"Uma empresa que produz droides de batalha, incluindo os Droidekas\",\n    \"cellNumber\": \"11988997766\",\n    \"website\": \"fakeabc.app\",\n    \"naturalPerson\": {\n        \"cpf\": \"516.079.209-05\",\n        \"rg\": \"30.340.779-7\",\n        \"issuingAuthority\": \"SSP BA\"\n    },\n    \"legalPerson\": {\n        \"legalName\": \"Empresa Fake ABC Ltda\",\n        \"cnpj\": \"99.557.155/0001-90\",\n        \"stateInscription\": \"4569\",\n        \"municipalInscription\": \"145263\"\n    },\n    \"address\": {\n        \"zipCode\":\"13058-111\", \n        \"state\":  \"SP\",\n        \"city\": \"Campinas\",\n        \"street\": \"Rua Alziro Arten\",\n        \"number\": \"443\",\n        \"neighborhood\": \"Conjunto Habitacional Parque da Floresta\",\n        \"additionalDetails\": \"Sala 4, Térreo\"\n    },\n    \"phones\": [\"(75) 2222-5455\", \"(75) 3885-3355\"],\n    \"emails\" : [\"admin@fakeabc.com\", \"crm@fakeabc.com\"],\n    \"contactPersonNames\": [\"Maria\", \"José\", \"João\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sun, 20 Jul 2025 14:00:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"48"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"SUPPLIER_01\",\n            \"message\": \"The supplier cannot be a natural person and a legal person at the same time.\"\n        }\n    ]\n}"}],"_postman_id":"9de9a6da-cfc4-48c8-a419-b484e0ebc777"},{"name":"/supplier/:id","id":"f33aeefb-ca28-45ac-820b-2f9ef3d6c8e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier/:id","description":"<p>Recuperação dos dados de Fornecedor.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>supplierId</td>\n<td>integer</td>\n<td>ID do fornecedor</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome ou nome fantasia</td>\n</tr>\n<tr>\n<td>fieldOfActivity</td>\n<td>string/null</td>\n<td>Ramo de atividade</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string/null</td>\n<td>Observações</td>\n</tr>\n<tr>\n<td>cellNumber</td>\n<td>string/null</td>\n<td>Número de celular</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string/null</td>\n<td>Website</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string/null</td>\n<td>Tipo do fornecedor, podendo ser: <strong>legalPerson</strong> (pessoa jurídica) ou <strong>naturalPerson</strong> (pessoa física)</td>\n</tr>\n<tr>\n<td>naturalPerson</td>\n<td>object/null</td>\n<td>Informações da pessoa física (se aplicável)</td>\n</tr>\n<tr>\n<td>naturalPerson.cpf</td>\n<td>string/null</td>\n<td>CPF</td>\n</tr>\n<tr>\n<td>naturalPerson.rg</td>\n<td>string/null</td>\n<td>RG</td>\n</tr>\n<tr>\n<td>naturalPerson.issuingAuthority</td>\n<td>string/null</td>\n<td>Órgão expedidor</td>\n</tr>\n<tr>\n<td>legalPerson</td>\n<td>object/null</td>\n<td>Informações da pessoa jurídica (se aplicável)</td>\n</tr>\n<tr>\n<td>legalPerson.legalName</td>\n<td>string/null</td>\n<td>Razão social</td>\n</tr>\n<tr>\n<td>legalPerson.cnpj</td>\n<td>string/null</td>\n<td>CNPJ</td>\n</tr>\n<tr>\n<td>legalPerson.stateInscription</td>\n<td>string/null</td>\n<td>Inscrição estadual</td>\n</tr>\n<tr>\n<td>legalPerson.municipalInscription</td>\n<td>string/null</td>\n<td>Inscrição municipal</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Endereço</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string/null</td>\n<td>CEP</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string/null</td>\n<td>Cidade</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>string/null</td>\n<td>Estado</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string/null</td>\n<td>Rua</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string/null</td>\n<td>Número</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string/null</td>\n<td>Bairro</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string/null</td>\n<td>Complemento</td>\n</tr>\n<tr>\n<td>phones</td>\n<td>array/null</td>\n<td>Lista de números de telefone</td>\n</tr>\n<tr>\n<td>emails</td>\n<td>array/null</td>\n<td>Lista de endereços de e-mail</td>\n</tr>\n<tr>\n<td>contactPersonNames</td>\n<td>array/null</td>\n<td>Lista de nomes de pessoas de contato</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>string</td>\n<td>Origem do cadastro</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Se o fornecedor está ativo</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data de criação do fornecedor. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string/null</td>\n<td>Data de atualização do fornecedor. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["supplier",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"7","key":"id"}]}},"response":[{"id":"bdc6c982-cb70-4dc8-875d-159280be0491","name":"(200) Success - Legal Person","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["supplier",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 18 Feb 2026 22:31:06 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"supplierId\": 1,\n    \"name\": \"CONEXA\",\n    \"fieldOfActivity\": \"Desenvolvimento e licenciamento de programas de computador não-customizáveis\",\n    \"notes\": null,\n    \"cellNumber\": \"75991927676\",\n    \"website\": null,\n    \"legalPerson\": {\n        \"legalName\": \"WEBFEIRA ESCRITORIO VIRTUAL E TECNOLOGIA WEB LTDA\",\n        \"cnpj\": \"17992846000158\",\n        \"stateInscription\": null,\n        \"municipalInscription\": null\n    },\n    \"address\": {\n        \"zipCode\": \"44076200\",\n        \"city\": \"Feira de Santana\",\n        \"state\": \"BA\",\n        \"street\": \"Rua São Domingos\",\n        \"number\": \"475\",\n        \"neighborhood\": \"Capuchinhos\",\n        \"additionalDetails\": null\n    },\n    \"phones\": [\n        \"08000090039\"\n    ],\n    \"emails\": [\n        \"lorem.ipsun@dolor.cirius\"\n    ],\n    \"contactPersonNames\": null,\n    \"type\": \"legalPerson\",\n    \"origin\": \"Sistema\",\n    \"createdAt\": \"2015-08-22T11:34:51-03:00\",\n    \"updatedAt\": \"2017-07-27T16:51:17-03:00\",\n    \"isActive\": true\n}"},{"id":"18f051de-7f59-486a-b361-fdb050dd9fbb","name":"(200) Success - Natural Person","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["supplier",":id"],"variable":[{"key":"id","value":"7"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 18 Feb 2026 22:45: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-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"supplierId\": 7,\n    \"name\": \"Maria Clara Silva Filho\",\n    \"fieldOfActivity\": \"Segurança\",\n    \"notes\": null,\n    \"cellNumber\": \"75999999999\",\n    \"website\": \"mcsfilho.lorem.ipsum\",\n    \"naturalPerson\": {\n        \"cpf\": \"76904244496\",\n        \"rg\": \"250096134\",\n        \"issuingAuthority\": \"DETRAN\"\n    },\n    \"address\": {\n        \"zipCode\": \"70702905\",\n        \"city\": \"Brasília\",\n        \"state\": \"DF\",\n        \"street\": \"SHN Quadra 2 Bloco H\",\n        \"number\": \"475\",\n        \"neighborhood\": \"Asa Norte\",\n        \"additionalDetails\": null\n    },\n    \"phones\": null,\n    \"emails\": [\n        \"mcsfilho@lorem.ipsum\"\n    ],\n    \"contactPersonNames\": [\n        \"Maria Clara\",\n        \"Antônio Claro\"\n    ],\n    \"type\": \"naturalPerson\",\n    \"origin\": \"API\",\n    \"createdAt\": \"2025-10-28T07:54:38-03:00\",\n    \"updatedAt\": null,\n    \"isActive\": true\n}"},{"id":"83d593c5-044c-41d4-b1d4-a69f4823d718","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/supplier/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["supplier",":id"],"variable":[{"key":"id","value":"103"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 18 Feb 2026 22:32: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-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"40"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Supplier \\\"103\\\" not found\"\n}"}],"_postman_id":"f33aeefb-ca28-45ac-820b-2f9ef3d6c8e7"},{"name":"/suppliers","id":"c529b751-25b8-4916-be7f-298f45e8dfb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/suppliers?limit=10","description":"<p>Listagem paginada de Fornecedores.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Fornecedores contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#f33aeefb-ca28-45ac-820b-2f9ef3d6c8e7\">GET /supplier/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["suppliers"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos fornecedores</p>\n","type":"text/plain"},"key":"id[]","value":"1,7"},{"disabled":true,"description":{"content":"<p>Nome ou nome fantasia</p>\n","type":"text/plain"},"key":"name","value":"Conexa"},{"disabled":true,"description":{"content":"<p>Razão Social</p>\n","type":"text/plain"},"key":"legalName","value":"Webfeira"},{"disabled":true,"description":{"content":"<p>CNPJ</p>\n","type":"text/plain"},"key":"cnpj","value":"17992846000158"},{"disabled":true,"description":{"content":"<p>CPF</p>\n","type":"text/plain"},"key":"cpf","value":"994.735.490-32"},{"disabled":true,"description":{"content":"<p>E-mail</p>\n","type":"text/plain"},"key":"email","value":"lorem.ipsun@dolor.cirius"},{"disabled":true,"description":{"content":"<p>Status do fornecedor (ativo = 1 e inativo=0)</p>\n","type":"text/plain"},"key":"isActive","value":"1"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"e267b9c3-9835-4c02-9fde-9b0a9c0342f7","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/suppliers?name=Conexa&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["suppliers"],"query":[{"key":"name","value":"Conexa","description":"Nome ou nome fantasia"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Mar 2026 13:34:26 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"supplierId\": 1,\n            \"name\": \"CONEXA\",\n            \"fieldOfActivity\": \"Desenvolvimento e licenciamento de programas de computador não-customizáveis\",\n            \"notes\": null,\n            \"cellNumber\": \"75991927676\",\n            \"website\": null,\n            \"legalPerson\": {\n                \"legalName\": \"WEBFEIRA ESCRITORIO VIRTUAL E TECNOLOGIA WEB LTDA\",\n                \"cnpj\": \"17992846000158\",\n                \"stateInscription\": null,\n                \"municipalInscription\": null\n            },\n            \"address\": {\n                \"zipCode\": \"44076200\",\n                \"city\": \"Feira de Santana\",\n                \"state\": \"BA\",\n                \"street\": \"Rua São Domingos\",\n                \"number\": \"475\",\n                \"neighborhood\": \"Capuchinhos\",\n                \"additionalDetails\": null\n            },\n            \"phones\": [\n                \"08000090039\"\n            ],\n            \"emails\": [\n                \"lorem.ipsun@dolor.cirius\"\n            ],\n            \"contactPersonNames\": null,\n            \"type\": \"legalPerson\",\n            \"origin\": \"Sistema\",\n            \"createdAt\": \"2015-08-22T11:34:51-03:00\",\n            \"updatedAt\": \"2017-07-27T16:51:17-03:00\",\n            \"isActive\": true\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"5beacffe-b3e7-428b-9880-e6e2ca0fd4bf","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/suppliers?cpf=11122233344&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["suppliers"],"query":[{"key":"cpf","value":"11122233344","description":"CPF"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Feb 2026 20:35:15 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"cpf\",\n            \"messages\": [\n                \"Invalid CPF\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"c529b751-25b8-4916-be7f-298f45e8dfb7"}],"id":"be862555-beb6-494c-b3f3-1da0d3333848","_postman_id":"be862555-beb6-494c-b3f3-1da0d3333848","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Cost Center","item":[{"name":"/costCenter/:id","id":"31a4a637-c3e8-40c7-884c-d5b68e6abc88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/costCenter/:id","description":"<p>Recuperação dos dados do Centro de Custo.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>costCenterId</td>\n<td>integer</td>\n<td>ID do centro de custo</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data-hora de criação. Padrão ISO 8601 (Y-m-d\\TH:i:sP)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string/null</td>\n<td>Data-hora da última atualização. Padrão ISO 8601 (Y-m-d\\TH:i:sP)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["costCenter",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"description":{"content":"<p>ID do centro de custo</p>\n","type":"text/plain"},"type":"any","value":"8","key":"id"}]}},"response":[{"id":"65c5aa83-54e1-4dd8-b12a-7eef9d6d417d","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/costCenter/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["costCenter",":id"],"variable":[{"key":"id","value":"8","description":"ID do centro de custo"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 09 Feb 2026 15:15:25 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Set-Cookie","value":"CNXSESSID=050f9b7a10b3878bde93a267bcb08fb8; expires=Mon, 09 Feb 2026 17:15:25 GMT; Max-Age=7200; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"costCenterId\": 8,\n    \"name\": \"CC PagSeguro\",\n    \"createdAt\": \"2026-02-09T12:15:25-03:00\",\n    \"updatedAt\": null\n}"},{"id":"9761ff92-29f8-45c8-bfcc-7baf33b5571e","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/costCenter/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["costCenter",":id"],"variable":[{"key":"id","value":"80","description":"ID do centro de custo"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 09 Feb 2026 15:16:40 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"CostCenter \\\"80\\\" not found\"\n}"}],"_postman_id":"31a4a637-c3e8-40c7-884c-d5b68e6abc88"},{"name":"/costCenters","id":"1b83fce3-8412-4122-9df1-beb270629468","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/costCenters?limit=10","description":"<p>Listagem paginada de Centros de Custo.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Centros de Custo contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#31a4a637-c3e8-40c7-884c-d5b68e6abc88\">GET /costCenter/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["costCenters"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs dos centros de custo</p>\n","type":"text/plain"},"key":"id[]","value":"1,2,3,4"},{"disabled":true,"description":{"content":"<p>Nome do centro de custo</p>\n","type":"text/plain"},"key":"name","value":"CC Cielo"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"82fe857f-262b-4f06-82fe-7c181304d264","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/costCenters?name=CC Cielo&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["costCenters"],"query":[{"key":"name","value":"CC Cielo","description":"Nome do centro de custo"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 23:24:06 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"31"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"costCenterId\": 11,\n            \"name\": \"CC Cielo\",\n            \"createdAt\": \"2026-02-10T20:24:06-03:00\",\n            \"updatedAt\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"6b33ccdb-71fa-44ad-aa8c-b600837439f9","name":"(200) Success - Empty results","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/costCenters?id[]=1,2,3&name=CC Cielo&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["costCenters"],"query":[{"key":"id[]","value":"1,2,3","description":"IDs dos centros de custo"},{"key":"name","value":"CC Cielo","description":"Nome do centro de custo"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 23:23:37 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"}],"_postman_id":"1b83fce3-8412-4122-9df1-beb270629468"}],"id":"d85d5c26-9e9c-4a64-84ac-3dbdc1a738d7","_postman_id":"d85d5c26-9e9c-4a64-84ac-3dbdc1a738d7","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Account","item":[{"name":"/account/:id","id":"8aa6b53f-f82a-4955-bbe4-164e20845464","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/account/:id","description":"<p>Recuperação dos dados de Conta Bancária.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da conta</td>\n</tr>\n<tr>\n<td>companyId</td>\n<td>integer</td>\n<td>ID da empresa proprietária da conta</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da conta</td>\n</tr>\n<tr>\n<td>movementBlockUntil</td>\n<td>string/null</td>\n<td>Data até quando a movimentação está bloqueada. Formato: <strong>YYYY-MM-DD</strong></td>\n</tr>\n<tr>\n<td>automaticBankReconciliation</td>\n<td>boolean</td>\n<td>Indica se possui conciliação bancária automática</td>\n</tr>\n<tr>\n<td>accountingCode</td>\n<td>integer/null</td>\n<td>Código contábil para integração com software contábil</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>Status ativo/inativo da conta</td>\n</tr>\n<tr>\n<td>syncedAt</td>\n<td>string/null</td>\n<td>Data-hora da última sincronização. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data-hora de criação. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string/null</td>\n<td>Data-hora da última atualização. Padrão ISO 8601 (Y-m-dTH:i:sP)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["account",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"3","key":"id"}]}},"response":[{"id":"4f3e5499-d422-40cb-b8fb-bae1c73f2981","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/account/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["account",":id"],"variable":[{"key":"id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 11 Feb 2026 00:07:01 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"accountId\": 3,\n    \"companyId\": 3,\n    \"name\": \"Itaú (AG:1111- CC:11111-1)\",\n    \"movementBlockUntil\": null,\n    \"automaticBankReconciliation\": false,\n    \"accountingCode\": 1232,\n    \"isActive\": true,\n    \"syncedAt\": null,\n    \"createdAt\": \"2017-12-12T15:45:49-03:00\",\n    \"updatedAt\": null\n}"},{"id":"1908c7eb-bd5e-459b-992c-eb22b93ba34c","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/account/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["account",":id"],"variable":[{"key":"id","value":"39"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 10 Feb 2026 22:50:09 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Account \\\"39\\\" not found\"\n}"}],"_postman_id":"8aa6b53f-f82a-4955-bbe4-164e20845464"},{"name":"/accounts","id":"b30b34eb-f997-472d-b689-ffabf303dcc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/accounts?limit=10","description":"<p>Listagem paginada de Contas.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Contas contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#8aa6b53f-f82a-4955-bbe4-164e20845464\">GET /account/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["accounts"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das contas</p>\n","type":"text/plain"},"key":"id[]","value":"3,7,22"},{"disabled":true,"description":{"content":"<p>IDs das unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"4"},{"disabled":true,"description":{"content":"<p>Nome da conta</p>\n","type":"text/plain"},"key":"name","value":"Caixa"},{"disabled":true,"description":{"content":"<p>Status de atividade (1 = ativo, 0 = inativo)</p>\n","type":"text/plain"},"key":"isActive","value":"0"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"571c4a30-58ae-4142-948e-a222c516fd23","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/accounts?id[]=3,7,22&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["accounts"],"query":[{"key":"id[]","value":"3,7,22"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Feb 2026 14:24:41 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"accountId\": 3,\n            \"companyId\": 3,\n            \"name\": \"Itaú (AG:1111- CC:11111-1)\",\n            \"movementBlockUntil\": null,\n            \"automaticBankReconciliation\": false,\n            \"accountingCode\": null,\n            \"isActive\": true,\n            \"syncedAt\": null,\n            \"createdAt\": \"2017-12-12T15:45:49-03:00\",\n            \"updatedAt\": \"2026-02-26T11:16:16-03:00\"\n        },\n        {\n            \"accountId\": 7,\n            \"companyId\": 3,\n            \"name\": \"Caixa (AG:- CC:-)\",\n            \"movementBlockUntil\": null,\n            \"automaticBankReconciliation\": false,\n            \"accountingCode\": null,\n            \"isActive\": true,\n            \"syncedAt\": null,\n            \"createdAt\": \"2019-07-29T14:43:58-03:00\",\n            \"updatedAt\": \"2026-02-26T11:16:16-03:00\"\n        },\n        {\n            \"accountId\": 22,\n            \"companyId\": 3,\n            \"name\": \"Efí Cwk\",\n            \"movementBlockUntil\": null,\n            \"automaticBankReconciliation\": false,\n            \"accountingCode\": null,\n            \"isActive\": true,\n            \"syncedAt\": null,\n            \"createdAt\": \"2025-10-21T16:46:42-03:00\",\n            \"updatedAt\": \"2026-02-26T11:16:16-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"3f1ace5f-41b1-4eae-8c34-cab421b23d58","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/accounts?isActive=true&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["accounts"],"query":[{"key":"isActive","value":"true","description":"Status de atividade (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Thu, 26 Feb 2026 14:31:25 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"isActive\",\n            \"messages\": [\n                \"Is Active must be either 1 or 0\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"b30b34eb-f997-472d-b689-ffabf303dcc8"}],"id":"253dc726-fe21-48c7-b3b9-3741e7e8a95d","_postman_id":"253dc726-fe21-48c7-b3b9-3741e7e8a95d","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Company","item":[{"name":"/company/:id","id":"36bc9f4d-4494-4d04-a93c-b43012bb3448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/company/:id","description":"<p>Recuperação dos dados de uma Unidade no sistema Conexa.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tradeName</td>\n<td>string</td>\n<td>Nome fantasia</td>\n</tr>\n<tr>\n<td>legalName</td>\n<td>string</td>\n<td>Razão social</td>\n</tr>\n<tr>\n<td>cnpj</td>\n<td>string</td>\n<td>CNPJ (somente números)</td>\n</tr>\n<tr>\n<td>address</td>\n<td>object</td>\n<td>Objeto de endereço</td>\n</tr>\n<tr>\n<td>address.zipCode</td>\n<td>string</td>\n<td>Código de Endereçamento Postal (CEP)</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>string</td>\n<td>Logradouro</td>\n</tr>\n<tr>\n<td>address.number</td>\n<td>string</td>\n<td>Número</td>\n</tr>\n<tr>\n<td>address.neighborhood</td>\n<td>string</td>\n<td>Bairro</td>\n</tr>\n<tr>\n<td>address.additionalDetails</td>\n<td>string</td>\n<td>Complemento do endereço</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>string</td>\n<td>Nome da cidade</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>object</td>\n<td>Objeto do estado</td>\n</tr>\n<tr>\n<td>address.state.id</td>\n<td>string</td>\n<td>ID do estado</td>\n</tr>\n<tr>\n<td>address.state.name</td>\n<td>string</td>\n<td>Nome do estado</td>\n</tr>\n<tr>\n<td>address.state.abbreviation</td>\n<td>string</td>\n<td>Sigla do estado</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Número de telefone</td>\n</tr>\n<tr>\n<td>notificationEmails</td>\n<td>array of string</td>\n<td>Lista de e-mails para notificações</td>\n</tr>\n<tr>\n<td>backupEmails</td>\n<td>array of string</td>\n<td>Lista de e-mails de backup</td>\n</tr>\n<tr>\n<td>timeZone</td>\n<td>string</td>\n<td>Fuso horário (ex.: \"America/Sao_Paulo\")</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações sobre a unidade</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Indica se a unidade está ativa</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data e hora de cadastro. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data e hora da última modificação. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["company",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"description":{"content":"<p>ID da unidade</p>\n","type":"text/plain"},"type":"any","value":"3","key":"id"}]}},"response":[{"id":"0b80b6e8-42f8-448a-aeb5-4c47870f9413","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/company/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["company",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"3","description":"ID da unidade"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 15 Aug 2025 23:58:24 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"tradeName\": \"Coworking Modelo\",\n    \"legalName\": \"Coworking Modelo\",\n    \"cnpj\": \"17992846000158\",\n    \"address\": {\n        \"zipCode\": \"44001-232\",\n        \"city\": \"Feira de Santana\",\n        \"state\": {\n            \"id\": 5,\n            \"name\": \"Bahia\",\n            \"abbreviation\": \"BA\"\n        },\n        \"street\": \"RUA BARAO DO RIO BRANCO\",\n        \"number\": \"1348\",\n        \"neighborhood\": \"Centro\",\n        \"additionalDetails\": \"Sala 106\"\n    },\n    \"phone\": null,\n    \"notificationEmails\": [\n        \"lorem.ipsum@dolor.fames\"\n    ],\n    \"backupEmails\": null,\n    \"timeZone\": \"America/Bahia\",\n    \"notes\": null,\n    \"active\": true,\n    \"createdAt\": \"2023-09-22T00:00:00-03:00\",\n    \"updatedAt\": \"2025-08-15T11:14:53-03:00\"\n}"},{"id":"c3d9f2c1-b068-4f09-ab5b-fc25f7aff8cc","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/company/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["company",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"7","description":"ID da unidade"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Sat, 16 Aug 2025 00:03:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Company does not exist or you have no permission to access it\"\n}"}],"_postman_id":"36bc9f4d-4494-4d04-a93c-b43012bb3448"},{"name":"/companies","id":"834a216f-3771-429f-8f29-c10f44b33ea3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/companies?limit=10","description":"<p>Listagem paginada de Unidades.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Unidades contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#36bc9f4d-4494-4d04-a93c-b43012bb3448\">GET /company/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["companies"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs da unidades</p>\n","type":"text/plain"},"key":"id[]","value":"3,4"},{"disabled":true,"description":{"content":"<p>Nome fantasia da unidade</p>\n","type":"text/plain"},"key":"tradeName","value":"Modelo"},{"disabled":true,"description":{"content":"<p>Razão social da unidade</p>\n","type":"text/plain"},"key":"legalName","value":"Modelo Ltda"},{"disabled":true,"description":{"content":"<p>CNPJ da unidade</p>\n","type":"text/plain"},"key":"cnpj","value":"17.992.846/0001-58"},{"disabled":true,"description":{"content":"<p>Cidade da unidade</p>\n","type":"text/plain"},"key":"city","value":"Feira de Santana"},{"disabled":true,"description":{"content":"<p>Status de atividade (1 = ativo, 0 = inativo)</p>\n","type":"text/plain"},"key":"active","value":"1"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"62d24115-b1da-4d35-860c-6171c1e6dabd","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/companies?id[]=3,4&active=1&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["companies"],"query":[{"key":"id[]","value":"3,4","description":"IDs da unidades"},{"key":"active","value":"1","description":"Status de atividade (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 26 Aug 2025 12:13:26 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"companyId\": 3,\n            \"tradeName\": \"Modelo\",\n            \"legalName\": \"Conexa Modelo Ltda\",\n            \"cnpj\": \"17992846000158\",\n            \"address\": {\n                \"zipCode\": \"44001-232\",\n                \"city\": \"Feira de Santana\",\n                \"state\": {\n                    \"id\": 5,\n                    \"name\": \"Bahia\",\n                    \"abbreviation\": \"BA\"\n                },\n                \"street\": \"RUA BARAO DO RIO BRANCO\",\n                \"number\": \"1348\",\n                \"neighborhood\": \"Centro\",\n                \"additionalDetails\": \"Sala 106\"\n            },\n            \"phone\": null,\n            \"notificationEmails\": [\n                \"lorem@ipsun.dolor\"\n            ],\n            \"backupEmails\": null,\n            \"timeZone\": \"America/Bahia\",\n            \"notes\": null,\n            \"active\": true,\n            \"createdAt\": \"2023-09-22T00:00:00-03:00\",\n            \"updatedAt\": \"2025-08-26T09:12:03-03:00\"\n        },\n        {\n            \"companyId\": 4,\n            \"tradeName\": \"MODEL GROUP\",\n            \"legalName\": \"MODEL GROUP LTDA\",\n            \"cnpj\": \"11222333000178\",\n            \"address\": {\n                \"zipCode\": \"44076-200\",\n                \"city\": \"Feira de Santana\",\n                \"state\": {\n                    \"id\": 5,\n                    \"name\": \"Bahia\",\n                    \"abbreviation\": \"BA\"\n                },\n                \"street\": \"Rua São Domingos\",\n                \"number\": \"475\",\n                \"neighborhood\": \"Cauchinhos\",\n                \"additionalDetails\": \"SALA 02\"\n            },\n            \"phone\": \"75992957347\",\n            \"notificationEmails\": [\n                \"lorem@ipsun.dolor\",\n                \"condimentum.ultrices@placerat.purus\"\n            ],\n            \"backupEmails\": null,\n            \"timeZone\": \"America/Sao_Paulo\",\n            \"notes\": null,\n            \"active\": true,\n            \"createdAt\": \"2024-05-14T18:58:22-03:00\",\n            \"updatedAt\": \"2025-08-26T09:11:16-03:00\"\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"7164c7cf-b628-4c89-b255-ee27d2246693","name":"(200) Success - Empty result","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/companies?id[]=3,4&tradeName=Modelo&legalName=Modelo Ltda&cnpj=17.992.846/0001-58&city=Feira de Santana&active=1&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["companies"],"query":[{"key":"id[]","value":"3,4","description":"IDs da unidades"},{"key":"tradeName","value":"Modelo","description":"Nome fantasia da unidade"},{"key":"legalName","value":"Modelo Ltda","description":"Razão social da unidade"},{"key":"cnpj","value":"17.992.846/0001-58","description":"CNPJ"},{"key":"city","value":"Feira de Santana","description":"Cidade da unidade"},{"key":"active","value":"1","description":"Status de atividade (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 26 Aug 2025 12:04:57 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"b6649f7b-00ae-4dff-9a5d-9452fd1cf0db","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/companies?cnpj=17992846000158&active=test&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["companies"],"query":[{"key":"cnpj","value":"17992846000158","description":"CNPJ"},{"key":"active","value":"test","description":"Status de atividade (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 26 Aug 2025 12:23:34 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"46"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"active\",\n            \"messages\": [\n                \"Active must be either 1 or 0\"\n            ]\n        }\n    ]\n}"},{"id":"e4904a23-4e1b-4454-8db4-77fbc4349165","name":"(401) Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/companies?id[]=3,4&tradeName=Modelo&legalName=Modelo Ltda&cnpj=17.992.846/0001-58&city=Feira de Santana&active=1&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["companies"],"query":[{"key":"id[]","value":"3,4","description":"IDs da unidades"},{"key":"tradeName","value":"Modelo","description":"Nome fantasia da unidade"},{"key":"legalName","value":"Modelo Ltda","description":"Razão social da unidade"},{"key":"cnpj","value":"17.992.846/0001-58","description":"CNPJ"},{"key":"city","value":"Feira de Santana","description":"Cidade da unidade"},{"key":"active","value":"1","description":"Status de atividade (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 26 Aug 2025 12:04:17 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"CNXSESSID=ec10177083f8e007bffa3abd2317f15b; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authentication required\"\n}"}],"_postman_id":"834a216f-3771-429f-8f29-c10f44b33ea3"}],"id":"ff2c1ebc-492b-437f-a9a5-a180bce60335","description":"<p>Endpoints que correspondem a Unidade no sistema Conexa.</p>\n","_postman_id":"ff2c1ebc-492b-437f-a9a5-a180bce60335","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Service Category","item":[{"name":"/serviceCategory/:id","id":"296e68aa-98e6-46bf-a56f-6e1a83db0b9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategory/:id","description":"<p>Recuperação dos dados de Categoria de Serviço.</p>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serviceCategoryId</td>\n<td>int</td>\n<td>ID do registro</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Nome da categoria</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>companies</td>\n<td>array of objects</td>\n<td>Unidades às quais a categoria pertence</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>companies[].id</td>\n<td>int</td>\n<td>ID da unidade</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>companies[].name</td>\n<td>string/null</td>\n<td>Nome fantasia (preferencialmente) ou razão social da unidade</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string/null</td>\n<td>Descrição da categoria</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>municipalIbsPercentage</td>\n<td>decimal</td>\n<td>Porcentagem do IBS municipal (Novo Imposto da reforma tributária)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>stateIbsPercentage</td>\n<td>decimal</td>\n<td>Porcentagem do IBS Estadual (Novo Imposto da reforma tributária)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>cbsPercentage</td>\n<td>decimal</td>\n<td>Porcentagem do CBS (Novo Imposto da reforma tributária)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>cnaeCode</td>\n<td>string/null</td>\n<td>Código CNAE - Classificação Nacional de Atividades Econômicas</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>nbsCode</td>\n<td>string/null</td>\n<td>Código NBS - Nomenclatura Brasileira de Serviços</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>municipalServiceCode</td>\n<td>string/null</td>\n<td>Código de Serviço do Município</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>municipalTaxCode</td>\n<td>string/null</td>\n<td>Código de Tributação do Município</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>operationIndicatorCode</td>\n<td>string/null</td>\n<td>Código do Indicador de Operação (CIndOp)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>taxClassificationCode</td>\n<td>string/null</td>\n<td>Código de Classificação Tributária (cClassTrib)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>taxSituationCode</td>\n<td>string/null</td>\n<td>Código de Situação tributária (CST) - Geralmente composto pelos 3 primeiros dígitos do cClassTrib</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>bool</td>\n<td>Indica se a categoria está ativa ou não</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>municipalBenefitCode</td>\n<td>string/null</td>\n<td>Código de Benefício Municipal do Portal Nacional</td>\n<td>Se o município utiliza a NFSe Nacional</td>\n</tr>\n<tr>\n<td>commissionPercentage</td>\n<td>decimal</td>\n<td>Porcentagem de comissão</td>\n<td>Se o módulo de Comissão estiver ativado</td>\n</tr>\n<tr>\n<td>nfsePercentage</td>\n<td>decimal</td>\n<td>Porcentagem da Nota Fiscal</td>\n<td>Depende de configuração do sistema</td>\n</tr>\n<tr>\n<td>receiptPercentage</td>\n<td>decimal</td>\n<td>Porcentagem do Recibo</td>\n<td>Depende de configuração do sistema</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["serviceCategory",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"15","key":"id"}]}},"response":[{"id":"1ab35910-b9ad-435a-83f7-9a0ac5d6a9a8","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["serviceCategory",":id"],"variable":[{"key":"id","value":"4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 06 Mar 2026 14:49:16 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceCategoryId\": 4,\n    \"stateIbsPercentage\": 0,\n    \"municipalIbsPercentage\": 0,\n    \"cbsPercentage\": 0,\n    \"companies\": [\n        {\n            \"companyId\": 3,\n            \"tradeName\": \"Modelo\"\n        },\n        {\n            \"companyId\": 4,\n            \"tradeName\": \"ARCUS GROUP\"\n        },\n        {\n            \"companyId\": 5,\n            \"tradeName\": \"Teste\"\n        },\n        {\n            \"companyId\": 9,\n            \"tradeName\": \"WF (Desativada)\"\n        },\n        {\n            \"companyId\": 12,\n            \"tradeName\": \"LIZON SPORTS\"\n        },\n        {\n            \"companyId\": 14,\n            \"tradeName\": \"SEP\"\n        }\n    ],\n    \"isActive\": true,\n    \"municipalBenefitCode\": \"5116\",\n    \"name\": \"Serviços Gráficos\",\n    \"description\": \"Serviços de escritório virtual\",\n    \"cnaeCode\": \"82.11-3-00\",\n    \"nbsCode\": \"118032900\",\n    \"municipalServiceCode\": \"12.07\",\n    \"municipalTaxCode\": \"03.03\",\n    \"taxSituationCode\": null,\n    \"taxClassificationCode\": null,\n    \"operationIndicatorCode\": null,\n    \"commissionPercentage\": 0,\n    \"nfsePercentage\": 100,\n    \"receiptPercentage\": 0\n}"},{"id":"ef3510f0-5be7-4733-bf8c-4caf6b217ed4","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategory/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["serviceCategory",":id"],"variable":[{"key":"id","value":"150"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 25 Feb 2026 21:30:30 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"35"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This ServiceCategory does not exist or you have no permission to access it\"\n}"}],"_postman_id":"296e68aa-98e6-46bf-a56f-6e1a83db0b9f"},{"name":"/serviceCategories","id":"c627f38c-8d8b-4efb-9840-b8d61ca26fb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategories?limit=10","description":"<p>Listagem paginada de Categorias de Serviço.</p>\n<p>Os itens definidos como array podem ter multiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Categorias de Serviço contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#296e68aa-98e6-46bf-a56f-6e1a83db0b9f\">GET /serviceCategory/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["serviceCategories"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das categorias de serviço</p>\n","type":"text/plain"},"key":"id[]","value":"14,15"},{"disabled":true,"description":{"content":"<p>IDs das unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"3,4"},{"disabled":true,"description":{"content":"<p>Nome da categoria de serviço</p>\n","type":"text/plain"},"key":"name","value":"CS1"},{"disabled":true,"description":{"content":"<p>Nome da cidade</p>\n","type":"text/plain"},"key":"city","value":"rio de janeiro"},{"disabled":true,"description":{"content":"<p>Código CNAE</p>\n","type":"text/plain"},"key":"cnaeCode","value":"6110803"},{"disabled":true,"description":{"content":"<p>Código de Serviço do Município</p>\n","type":"text/plain"},"key":"municipalServiceCode","value":"071002"},{"disabled":true,"description":{"content":"<p>Código de Tributo do Município</p>\n","type":"text/plain"},"key":"municipalTaxCode","value":"03.03"},{"disabled":true,"description":{"content":"<p>Código NBS</p>\n","type":"text/plain"},"key":"nbsCode","value":"118032900"},{"disabled":true,"description":{"content":"<p>Descrição da Categoria de Serviço</p>\n","type":"text/plain"},"key":"description","value":"serviços de locação"},{"disabled":true,"description":{"content":"<p>Status de atividade (1 = ativo, 0 = inativo)</p>\n","type":"text/plain"},"key":"isActive","value":"12"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"f65660fe-76d2-4866-8b42-48c09996b5e4","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategories?name=CS1&city=rio de janeiro&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["serviceCategories"],"query":[{"key":"name","value":"CS1","description":"Nome da categoria de serviço"},{"key":"city","value":"rio de janeiro","description":"Nome da cidade"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 06 Mar 2026 17:02:57 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"42"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"serviceCategoryId\": 12,\n            \"stateIbsPercentage\": 0,\n            \"municipalIbsPercentage\": 0,\n            \"cbsPercentage\": 0,\n            \"companies\": [\n                {\n                    \"companyId\": 3,\n                    \"tradeName\": \"Modelo\"\n                }\n            ],\n            \"isActive\": true,\n            \"municipalBenefitCode\": null,\n            \"name\": \"CS1 - Serviço de Apoio Administrativo\",\n            \"description\": null,\n            \"cnaeCode\": \"82.11-3-00\",\n            \"nbsCode\": null,\n            \"municipalServiceCode\": \"5521\",\n            \"municipalTaxCode\": \"123\",\n            \"taxSituationCode\": null,\n            \"taxClassificationCode\": null,\n            \"operationIndicatorCode\": null,\n            \"commissionPercentage\": 0,\n            \"nfsePercentage\": 100,\n            \"receiptPercentage\": 0\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"2f522b04-c1a2-46da-9b8d-5940fa825439","name":"(200) Success - Empty results","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategories?description=serviço de locação&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["serviceCategories"],"query":[{"key":"description","value":"serviço de locação","description":"Descrição da Categoria de Serviço"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 06 Mar 2026 17:09:15 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"5560a5f3-ad89-4c4a-acd0-13289387c8af","name":"(400) Field validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/serviceCategories?id[]=14,15&companyId[]=lorem&isActive=12&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["serviceCategories"],"query":[{"key":"id[]","value":"14,15","description":"IDs das categorias de serviço"},{"key":"companyId[]","value":"lorem","description":"IDs das unidades"},{"key":"isActive","value":"12","description":"Status de atividade (1 = ativo, 0 = inativo)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 06 Mar 2026 18:31:21 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"44"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"companyId\",\n            \"messages\": [\n                \"Index 0 must be integer\"\n            ]\n        },\n        {\n            \"field\": \"isActive\",\n            \"messages\": [\n                \"Is Active must be either 1 or 0\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"c627f38c-8d8b-4efb-9840-b8d61ca26fb4"}],"id":"97a13d98-1c5f-4bcb-86d8-a3fd391aba1d","_postman_id":"97a13d98-1c5f-4bcb-86d8-a3fd391aba1d","description":"","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Conexa Coworking","item":[{"name":"Booking","item":[{"name":"/room/booking","id":"6e5d0dc0-3d62-44d2-aca9-3f9eb6787056","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"roomId\": \t4140,\n    \"date\": \"2025-12-25\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking","description":"<p>Cadastro de uma <strong>Reseva de Sala de Reunião</strong> no sistema Conexa.</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente</td>\n</tr>\n<tr>\n<td>personId</td>\n<td>integer</td>\n<td>ID do solicitante</td>\n</tr>\n<tr>\n<td>roomId</td>\n<td>integer</td>\n<td>ID da sala de reunião</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Data da reserva. Formato: <strong>yyyy-MM-dd</strong></td>\n</tr>\n<tr>\n<td>startTime</td>\n<td>string</td>\n<td>Hora de início da reserva. Formato <strong>HH:mm</strong></td>\n</tr>\n<tr>\n<td>finalTime</td>\n<td>string</td>\n<td>Hora de término da reserva. Formato <strong>HH:mm</strong></td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n</tr>\n<tr>\n<td>sendCustomerEmail</td>\n<td>boolean</td>\n<td>Flag para envio do e-mail de atualização da reserva para o cliente</td>\n</tr>\n<tr>\n<td>sendRequesterEmail</td>\n<td>boolean</td>\n<td>Flag para envio do e-mail de atualização da reserva para o solicitante</td>\n</tr>\n<tr>\n<td>visitors</td>\n<td>array of objects</td>\n<td>Lista de convidados da reserva</td>\n</tr>\n<tr>\n<td>visitors[].name</td>\n<td>string</td>\n<td>Nome do convidado</td>\n</tr>\n<tr>\n<td>visitors[].email</td>\n<td>string</td>\n<td>E-mail do convidado</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>integer</td>\n<td>ID da reserva</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["room","booking"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"b04ec710-8a29-4c24-bb53-04baeb251fed","name":"(201) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"roomId\": \t4140,\n    \"date\": \"2025-12-25\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:13:14 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"30"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 143191\n}"},{"id":"2a169504-5a18-4f5c-a41a-4952189693e4","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"roomId\": \t41401,\n    \"date\": \"2025-12-25\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": \"1\",\n    \"sendRequesterEmail\": \"1\",\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:15:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"sendCustomerEmail\",\n            \"messages\": [\n                \"Send Customer Email must be boolean\"\n            ]\n        },\n        {\n            \"field\": \"sendRequesterEmail\",\n            \"messages\": [\n                \"Send Requester Email must be boolean\"\n            ]\n        }\n    ]\n}"},{"id":"13499a3d-4d01-4b8e-ab46-396113568d71","name":"(403) Forbidden","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"roomId\": \t4140,\n    \"date\": \"2025-12-25\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:12:44 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The booking endpoint is only available for authorized customers. To request access, contact Conexa support via chat or by sending an email to suporte@conexa.app\"\n}"},{"id":"57d99058-3017-4519-9929-146810ce2f95","name":"(404) Not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"roomId\": \t41401,\n    \"date\": \"2025-12-25\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01: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":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"9"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Room does not exist or you have no permission to access it\"\n}"},{"id":"c4bbb422-ade2-4a81-96da-14e15ed06552","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"roomId\": \t4140,\n    \"date\": \"2025-12-25\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:13:48 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"E_UNAVAILABLE_ROOM_ALREADY_BOOKED\",\n            \"message\": \"Room already booked for this time\"\n        }\n    ]\n}"}],"_postman_id":"6e5d0dc0-3d62-44d2-aca9-3f9eb6787056"},{"name":"/room/booking/:id","id":"d87c6ea5-6ebe-4661-9248-cf59b69dd343","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","description":"<p>Recuperação dos dados de uma Reserva de Sala na Conexa.</p>\n<h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bookingId</td>\n<td>integer</td>\n<td>ID único da reserva</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>saleId</td>\n<td>integer</td>\n<td>ID da venda associada</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>place</td>\n<td>object</td>\n<td>Objeto contendo informações do local/sala</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>place.id</td>\n<td>integer</td>\n<td>ID da sala</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>place.name</td>\n<td>string</td>\n<td>Nome da sala</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>integer</td>\n<td>ID do cliente responsável pela reserva</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>personId</td>\n<td>integer/null</td>\n<td>ID da pessoa responsável pela reserva</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>idRecurringBooking</td>\n<td>integer/null</td>\n<td>ID da reserva recorrente (se aplicável)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Status da reserva, podendo ser: <strong>'notBilled'</strong>, <strong>'billed'</strong>, <strong>'billedCancelled'</strong>, <strong>'partiallyPaid'</strong>, <strong>'paid'</strong>, <strong>'cancelled'</strong>, <strong>'deductedFromQuota'</strong></td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string/null</td>\n<td>Observações/anotações da reserva</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>string</td>\n<td>Data e hora de criação da reserva (ISO 8601)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>string</td>\n<td>Data e hora da última atualização (ISO 8601)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>completed</td>\n<td>boolean</td>\n<td>Indica se a reserva foi concluída</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>canceled</td>\n<td>boolean</td>\n<td>Indica se a reserva foi cancelada</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>cancellationReason</td>\n<td>string/null</td>\n<td>Motivo do cancelamento (se aplicável)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>deviceAccessReleased</td>\n<td>boolean</td>\n<td>Indica se o acesso por dispositivo foi liberado</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>isOnlinePayment</td>\n<td>boolean</td>\n<td>Indica se o pagamento foi realizado online</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>isBilled</td>\n<td>boolean</td>\n<td>Indica se a reserva foi faturada</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td>string</td>\n<td>Data e hora de início da reserva (ISO 8601)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>finalTime</td>\n<td>string</td>\n<td>Data e hora de término da reserva (ISO 8601)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>visitorPassword</td>\n<td>string/null</td>\n<td>Senha para visitante (se aplicável)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>internetPassword</td>\n<td>string/null</td>\n<td>Senha para acesso à internet (se aplicável)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>settings</td>\n<td>object</td>\n<td>Objeto com configurações específicas da sala</td>\n<td>Não*</td>\n</tr>\n<tr>\n<td>settings.temperature</td>\n<td>decimal/null</td>\n<td>Temperatura configurada para o ambiente (em °C)</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>settings.roomPassword</td>\n<td>string/null</td>\n<td>Senha de acesso físico à sala</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>visitors</td>\n<td>array of objects</td>\n<td>Lista de objetos dos visitantes da reserva</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>visitor[].id</td>\n<td>integer</td>\n<td>Identificador único do visitante</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>visitors[].name</td>\n<td>string</td>\n<td>Nome do visitante</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>visitors[].email</td>\n<td>string</td>\n<td>E-mail do visitante</td>\n<td>Sim</td>\n</tr>\n</tbody>\n</table>\n</div><p>* O campo <code>settings</code> só é retornado para domínios habilitados no sistema.</p>\n","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["room","booking",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"143184","key":"id"}]}},"response":[{"id":"4ec53c76-45e3-43a8-8387-068608e17992","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"variable":[{"key":"id","value":"143184"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 12 Nov 2025 11:01:57 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"status\": \"paid\",\n    \"bookingId\": 143184,\n    \"saleId\": 189571,\n    \"place\": {\n        \"id\": 4121,\n        \"name\": \"Sala de Reunião Compacta\"\n    },\n    \"customerId\": 450,\n    \"personId\": 408,\n    \"idRecurringBooking\": null,\n    \"notes\": \"Deixar o ar-condicionado à 23º\",\n    \"createdAt\": \"2025-11-12T07:58:45-03:00\",\n    \"updatedAt\": \"2025-11-12T08:00:01-03:00\",\n    \"completed\": false,\n    \"cancellationReason\": null,\n    \"deviceAccessReleased\": false,\n    \"isOnlinePayment\": true,\n    \"isBilled\": true,\n    \"startTime\": \"2025-11-12T10:00:00-03:00\",\n    \"finalTime\": \"2025-11-12T12:00:00-03:00\",\n    \"visitorPassword\": null,\n    \"internetPassword\": \"9MC4H2\",\n    \"settings\": {\n        \"temperature\": 23,\n        \"roomPassword\": \"4155\"\n    },\n    \"visitors\": [\n        {\n            \"id\": 1,\n            \"name\": \"Maya Luzia Ester Teixeira\",\n            \"email\": \"maya.lorem@ipsun.dolor\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Sophie Elaine Souza\",\n            \"email\": \"sophie.lorem@ipsun.dolor\"\n        }\n    ]\n}"},{"id":"f8f649b4-e79e-4f6e-b6d2-c487ac197dca","name":"(403) Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"variable":[{"key":"id","value":"143184"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:03:54 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The booking endpoint is only available for authorized customers. To request access, contact Conexa support via chat or by sending an email to suporte@conexa.app\"\n}"},{"id":"8a9f0d7f-f5ae-40a9-932e-5d3b5bb63680","name":"(404) Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"variable":[{"key":"id","value":"143186"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 12 Nov 2025 11:04:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Booking does not exist or you have no permission to access it\"\n}"},{"id":"f020afbb-611a-4af7-9738-29f1edb44a9d","name":"(422) Unable to process","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"variable":[{"key":"id","value":"143185"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Wed, 12 Nov 2025 11:01:31 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"6"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"BOOKING_02\",\n            \"message\": \"This is not a room booking\"\n        }\n    ]\n}"}],"_postman_id":"d87c6ea5-6ebe-4661-9248-cf59b69dd343"},{"name":"/room/booking/:id","id":"e0440327-4d8c-4381-9720-37e883a091aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"roomId\": \t4140,\n    \"date\": \"2025-12-22\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"sendVisitorsEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","description":"<p>Edição de campos de uma <strong>Reseva de Sala de Reunião</strong> no sistema Conexa.</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personId</td>\n<td>integer</td>\n<td>ID do solicitante</td>\n</tr>\n<tr>\n<td>roomId</td>\n<td>integer</td>\n<td>ID da sala de reunião</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Data da reserva. Formato: <strong>yyyy-MM-dd</strong></td>\n</tr>\n<tr>\n<td>startTime</td>\n<td>string</td>\n<td>Hora de início da reserva. Formato <strong>HH:mm</strong></td>\n</tr>\n<tr>\n<td>finalTime</td>\n<td>string</td>\n<td>Hora de término da reserva. Formato <strong>HH:mm</strong></td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n</tr>\n<tr>\n<td>sendCustomerEmail</td>\n<td>boolean</td>\n<td>Flag para envio do e-mail de atualização da reserva para o cliente</td>\n</tr>\n<tr>\n<td>sendRequesterEmail</td>\n<td>boolean</td>\n<td>Flag para envio do e-mail de atualização da reserva para o solicitante</td>\n</tr>\n<tr>\n<td>sendVisitorsEmail</td>\n<td>boolean</td>\n<td>Flag para envio do e-mail de atualização da reserva para o convidado</td>\n</tr>\n<tr>\n<td>visitors</td>\n<td>array of objects</td>\n<td>Lista de convidados da reserva</td>\n</tr>\n<tr>\n<td>visitors[].name</td>\n<td>string</td>\n<td>Nome do convidado</td>\n</tr>\n<tr>\n<td>visitors[].email</td>\n<td>string</td>\n<td>E-mail do convidado</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#d87c6ea5-6ebe-4661-9248-cf59b69dd343\">GET /room/booking/:id</a></p>\n","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["room","booking",":id"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"type":"any","value":"142510","key":"id"}]}},"response":[{"id":"6e95d7cb-b625-4b41-b907-e914a0480e10","name":"(200) Success","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"roomId\": \t4121,\n    \"date\": \"2025-12-22\",\n    \"startTime\": \"15:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"sendVisitorsEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"142510"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 00:19:41 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"status\": \"billed\",\n    \"bookingId\": 142510,\n    \"saleId\": 186981,\n    \"place\": {\n        \"id\": 4121,\n        \"name\": \"Sala de Reunião Compacta\"\n    },\n    \"customerId\": 450,\n    \"personId\": 458,\n    \"idRecurringBooking\": null,\n    \"notes\": \"Atualização observações\",\n    \"createdAt\": \"2023-10-25T14:55:27-03:00\",\n    \"updatedAt\": \"2023-10-25T14:55:28-03:00\",\n    \"completed\": false,\n    \"cancellationReason\": null,\n    \"deviceAccessReleased\": false,\n    \"isOnlinePayment\": false,\n    \"isBilled\": true,\n    \"startTime\": \"2025-12-22T15:00:00-03:00\",\n    \"finalTime\": \"2025-12-22T16:00:00-03:00\",\n    \"visitorPassword\": null,\n    \"internetPassword\": \"F8Z5TW\",\n    \"settings\": {\n        \"temperature\": 23,\n        \"roomPassword\": \"3518\"\n    },\n    \"visitors\": [\n        {\n            \"id\": 3,\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}"},{"id":"728f67ff-a440-46bf-b335-e95f9aa61760","name":"(400) Field validation error","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"roomId\": \t4121,\n    \"date\": \"22/12/2025\",\n    \"startTime\": \"15:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"sendVisitorsEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"142510"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 00:22:45 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"date\",\n            \"messages\": [\n                \"The format of Date is invalid\"\n            ]\n        },\n        {\n            \"field\": \"startTime\",\n            \"messages\": [\n                \"The format of Start Time is invalid\"\n            ]\n        }\n    ]\n}"},{"id":"2fd8ffa5-bdd0-4908-b7c1-ee34391fea59","name":"(403) Forbidden","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"roomId\": \t4140,\n    \"date\": \"2025-12-22\",\n    \"startTime\": \"08:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"sendVisitorsEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"142510"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:04:47 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"97"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The booking endpoint is only available for authorized customers. To request access, contact Conexa support via chat or by sending an email to suporte@conexa.app\"\n}"},{"id":"5851cd27-2acd-4759-8c69-98cfc55e58d1","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"roomId\": \t4121,\n    \"date\": \"2025-12-22\",\n    \"startTime\": \"15:00\",\n    \"finalTime\": \"16:00\",\n    \"notes\": \"Atualização observações\",\n    \"sendCustomerEmail\": true,\n    \"sendRequesterEmail\": true,\n    \"sendVisitorsEmail\": true,\n    \"visitors\": [\n        {\n            \"name\": \"Convidado Fake\",\n            \"email\": \"convidadofake1@gmail.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id"],"query":[{"key":"","value":null,"disabled":true}],"variable":[{"key":"id","value":"142510"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 00:19:41 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"E_CHANGE_BILLED_RESERVATION_ROOM\",\n            \"message\": \"It is not possible to change the room of a billed booking\"\n        }\n    ]\n}"}],"_postman_id":"e0440327-4d8c-4381-9720-37e883a091aa"},{"name":"/room/booking/:id/cancel","id":"f8deaaa4-0cd5-4de2-8fd4-b6b13fa79fbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/cancel","description":"<p>Cancela uma Reserva de Sala na Conexa.</p>\n<h3 id=\"body\">Body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cancelSale</td>\n<td>boolean</td>\n<td>Indicativo se deseja cancelar a reserva e a venda associada. Default: <strong>true</strong></td>\n<td>Não</td>\n</tr>\n<tr>\n<td>sendEmailCustomer</td>\n<td>boolean</td>\n<td>Indicativo se deve enviar um e-mail para o cliente. Default: <strong>true</strong></td>\n<td>Não</td>\n</tr>\n<tr>\n<td>sendEmailRequester</td>\n<td>boolean</td>\n<td>Indicativo se deve enviar um e-mail para o solicitante. Default: <strong>true</strong></td>\n<td>Não</td>\n</tr>\n<tr>\n<td>sendEmailVisitors</td>\n<td>boolean</td>\n<td>Indicativo se deve enviar um e-mail para o convidado. Default: <strong>true</strong></td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<p>Mesmo modelo de dados retornado em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#d87c6ea5-6ebe-4661-9248-cf59b69dd343\">GET /room/booking/:id</a></p>\n","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["room","booking",":id","cancel"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"142495","key":"id"}]}},"response":[{"id":"d0834a90-e79e-439e-9dba-2155e8468303","name":"(200) Success","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/cancel","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","cancel"],"variable":[{"key":"id","value":"142495"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 17 Nov 2025 20:28:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"status\": \"cancelled\",\n    \"bookingId\": 142495,\n    \"saleId\": 186801,\n    \"place\": {\n        \"id\": 4133,\n        \"name\": \"Dailys\"\n    },\n    \"customerId\": 596,\n    \"personId\": null,\n    \"idRecurringBooking\": 447,\n    \"notes\": null,\n    \"createdAt\": \"2023-09-19T19:03:19-03:00\",\n    \"updatedAt\": \"2023-09-19T19:03:19-03:00\",\n    \"completed\": false,\n    \"cancellationReason\": null,\n    \"deviceAccessReleased\": false,\n    \"isOnlinePayment\": false,\n    \"isBilled\": false,\n    \"startTime\": \"2023-12-04T19:00:00-03:00\",\n    \"finalTime\": \"2023-12-04T20:00:00-03:00\",\n    \"visitorPassword\": null,\n    \"internetPassword\": \"NJ52T2\",\n    \"settings\": {\n        \"temperature\": 23,\n        \"roomPassword\": \"2962\"\n    },\n    \"visitors\": null\n}"},{"id":"979ae807-6eaf-4929-bab1-633e74dd7ec6","name":"(403) Forbidden","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/cancel","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","cancel"],"variable":[{"key":"id","value":"142495"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:04:21 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"32"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The booking endpoint is only available for authorized customers. To request access, contact Conexa support via chat or by sending an email to suporte@conexa.app\"\n}"},{"id":"346f856d-acc1-4b27-bbb7-91de3bbc4f12","name":"(404) Not Found","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/cancel","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","cancel"],"variable":[{"key":"id","value":"518"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 17 Nov 2025 20:26:56 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Booking does not exist or you have no permission to access it\"\n}"},{"id":"f84790c3-da48-4399-b4f3-1743c6857977","name":"(422) Unable to process","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/cancel","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","cancel"],"variable":[{"key":"id","value":"143184"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 17 Nov 2025 20:27:44 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"12"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"BOOKING_05\",\n            \"message\": \"This booking has been invoiced and cannot be cancelled\"\n        }\n    ]\n}"}],"_postman_id":"f8deaaa4-0cd5-4de2-8fd4-b6b13fa79fbc"},{"name":"/room/bookings","id":"de948903-1ace-4830-ad89-40a04a4317f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/bookings?limit=10","description":"<p>Listagem paginada de Reservas de Sala.</p>\n<p>Os itens definidos como array podem ter múltiplos valores atribuídos separados por vírgula.</p>\n<blockquote>\n<p><strong>ATENÇÃO:</strong> Para utilizar a nova paginação, é <strong>obrigatório informar o parâmetro <code>limit</code></strong>. Caso não seja informado, a API continuará utilizando o modelo anterior - que será descontinuada em <strong>01 de agosto de 2026</strong>.</p>\n</blockquote>\n<h3 id=\"response\">Response:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Warn</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>Lista de Reservas de Sala contendo o mesmo modelo de dados presente em <a href=\"https://documenter.getpostman.com/view/25182821/2s93RZMpcB#d87c6ea5-6ebe-4661-9248-cf59b69dd343\">GET /room/booking/:id</a></td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>object</td>\n<td>Paginação</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.limit</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.offset</td>\n<td>integer</td>\n<td>Posição inicial da busca</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.hasNext</td>\n<td>boolean</td>\n<td>Indica se existem mais registros para a próxima página</td>\n<td>-</td>\n</tr>\n<tr>\n<td>pagination.itemPerPage</td>\n<td>integer</td>\n<td>Quantidades de itens retornados</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.currentPage</td>\n<td>integer</td>\n<td>Página atual da requisição</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalPages</td>\n<td>integer</td>\n<td>Total de páginas existentes</td>\n<td>Deprecated</td>\n</tr>\n<tr>\n<td>pagination.totalItems</td>\n<td>integer</td>\n<td>Total de itens existêntes (incluindo os listados e não listados na requisição)</td>\n<td>Deprecated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}},"urlObject":{"path":["room","bookings"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>IDs das reservas</p>\n","type":"text/plain"},"key":"id[]","value":"143063, 142600"},{"disabled":true,"description":{"content":"<p>IDs das unidades</p>\n","type":"text/plain"},"key":"companyId[]","value":"4,5"},{"disabled":true,"description":{"content":"<p>IDs dos clientes</p>\n","type":"text/plain"},"key":"customerId[]","value":"450,216"},{"disabled":true,"description":{"content":"<p>IDs das salas</p>\n","type":"text/plain"},"key":"roomId[]","value":"4140, 4141"},{"disabled":true,"description":{"content":"<p>Filtra por reservas ativas ou não ( 1 para ativas e 0 para inativas)</p>\n","type":"text/plain"},"key":"isActive","value":"0"},{"disabled":true,"description":{"content":"<p>Status da venda/cobrança da reserva. Podendo ser: billed, notBilled, billedCancelled, partiallyPaid, paid, cancelled ou deductedFromQuota</p>\n","type":"text/plain"},"key":"status","value":"notBilled"},{"disabled":true,"description":{"content":"<p>Data e hora da reserva: define uma data e hora a partir de quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"bookingDateTimeFrom","value":"2025-11-28T00:00:00-03:00"},{"disabled":true,"description":{"content":"<p>Data e hora da reserva: define a data e hora até quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"bookingDateTimeTo","value":"2025-11-28T23:59:59-03:00"},{"disabled":true,"description":{"content":"<p>Data e hora de criação: define a data e hora a partir de quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtFrom","value":"2025-11-27T08:00:00-03:00"},{"disabled":true,"description":{"content":"<p>Data e hora de criação: define a data e hora até quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)</p>\n","type":"text/plain"},"key":"createdAtTo","value":"2025-11-28T12:00:00-03:00"},{"description":{"content":"<p>Quantidade de registros retornados (1 a 100)</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Posição inicial da busca. Recomendação: offset atual + limit</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"eaf33a74-c3fd-4bef-aaf6-aa19a0f0093a","name":"(200) Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/bookings?createdAtTo=2025-11-28T12:00:00-03:00&limit=10&offset=0","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","bookings"],"query":[{"key":"createdAtTo","value":"2025-11-28T12:00:00-03:00","description":"Data e hora de criação: define a data e hora até quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 28 Nov 2025 13:13:16 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"isActive\": true,\n            \"status\": \"notBilled\",\n            \"bookingId\": 1,\n            \"saleId\": 13,\n            \"place\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\"\n            },\n            \"customerId\": 14,\n            \"personId\": 1,\n            \"idRecurringBooking\": null,\n            \"notes\": null,\n            \"createdAt\": \"2017-12-08T14:54:32-03:00\",\n            \"updatedAt\": \"2017-12-08T14:56:28-03:00\",\n            \"completed\": true,\n            \"cancellationReason\": null,\n            \"deviceAccessReleased\": false,\n            \"isOnlinePayment\": false,\n            \"isBilled\": false,\n            \"startTime\": \"2017-12-08T10:30:00-03:00\",\n            \"finalTime\": \"2017-12-08T13:15:00-03:00\",\n            \"visitorPassword\": null,\n            \"internetPassword\": \"WHY9Q6\",\n            \"settings\": {\n                \"temperature\": null,\n                \"roomPassword\": null\n            },\n            \"visitors\": null\n        },\n        {\n            \"isActive\": true,\n            \"status\": \"notBilled\",\n            \"bookingId\": 2,\n            \"saleId\": 14,\n            \"place\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\"\n            },\n            \"customerId\": 14,\n            \"personId\": 1,\n            \"idRecurringBooking\": null,\n            \"notes\": null,\n            \"createdAt\": \"2017-12-08T14:57:26-03:00\",\n            \"updatedAt\": \"2017-12-11T15:02:02-03:00\",\n            \"completed\": true,\n            \"cancellationReason\": null,\n            \"deviceAccessReleased\": false,\n            \"isOnlinePayment\": false,\n            \"isBilled\": false,\n            \"startTime\": \"2017-12-08T16:00:00-03:00\",\n            \"finalTime\": \"2017-12-08T17:00:00-03:00\",\n            \"visitorPassword\": null,\n            \"internetPassword\": \"5UYMN8\",\n            \"settings\": {\n                \"temperature\": null,\n                \"roomPassword\": null\n            },\n            \"visitors\": null\n        },\n        {\n            \"isActive\": true,\n            \"status\": \"paid\",\n            \"bookingId\": 3,\n            \"saleId\": 40,\n            \"place\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\"\n            },\n            \"customerId\": 23,\n            \"personId\": 6,\n            \"idRecurringBooking\": null,\n            \"notes\": null,\n            \"createdAt\": \"2017-12-20T18:11:33-03:00\",\n            \"updatedAt\": \"2017-12-21T17:11:31-03:00\",\n            \"completed\": true,\n            \"cancellationReason\": null,\n            \"deviceAccessReleased\": false,\n            \"isOnlinePayment\": false,\n            \"isBilled\": true,\n            \"startTime\": \"2017-12-21T08:00:00-03:00\",\n            \"finalTime\": \"2017-12-21T17:00:00-03:00\",\n            \"visitorPassword\": null,\n            \"internetPassword\": \"0F4KZ3\",\n            \"settings\": {\n                \"temperature\": null,\n                \"roomPassword\": null\n            },\n            \"visitors\": null\n        },\n        {\n            \"isActive\": true,\n            \"status\": \"notBilled\",\n            \"bookingId\": 4,\n            \"saleId\": 42,\n            \"place\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\"\n            },\n            \"customerId\": 14,\n            \"personId\": 1,\n            \"idRecurringBooking\": null,\n            \"notes\": null,\n            \"createdAt\": \"2017-12-21T11:29:23-03:00\",\n            \"updatedAt\": \"2017-12-27T10:40:13-03:00\",\n            \"completed\": true,\n            \"cancellationReason\": null,\n            \"deviceAccessReleased\": false,\n            \"isOnlinePayment\": false,\n            \"isBilled\": false,\n            \"startTime\": \"2017-12-25T08:00:00-03:00\",\n            \"finalTime\": \"2017-12-25T14:00:00-03:00\",\n            \"visitorPassword\": null,\n            \"internetPassword\": \"T5OAXK\",\n            \"settings\": {\n                \"temperature\": null,\n                \"roomPassword\": null\n            },\n            \"visitors\": null\n        },\n        {\n            \"isActive\": true,\n            \"status\": \"notBilled\",\n            \"bookingId\": 216,\n            \"saleId\": 289,\n            \"place\": {\n                \"id\": 2106,\n                \"name\": \"Sala de Reunião 1\"\n            },\n            \"customerId\": 14,\n            \"personId\": 1,\n            \"idRecurringBooking\": null,\n            \"notes\": null,\n            \"createdAt\": \"2018-01-09T18:30:52-03:00\",\n            \"updatedAt\": \"2018-01-11T10:10:50-03:00\",\n            \"completed\": true,\n            \"cancellationReason\": null,\n            \"deviceAccessReleased\": false,\n            \"isOnlinePayment\": false,\n            \"isBilled\": false,\n            \"startTime\": \"2018-01-10T09:00:00-03:00\",\n            \"finalTime\": \"2018-01-10T18:00:00-03:00\",\n            \"visitorPassword\": null,\n            \"internetPassword\": \"UEPDL1\",\n            \"settings\": {\n                \"temperature\": null,\n                \"roomPassword\": null\n            },\n            \"visitors\": null\n        }\n    ],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"8a9db219-c859-4a9e-b8f2-9e3913b8d174","name":"(200) Success - Empty results","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/bookings?createdAtFrom=2025-11-28T08:00:00-03:00&createdAtTo=2025-11-28T12:00:00-03:00&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","bookings"],"query":[{"key":"createdAtFrom","value":"2025-11-28T08:00:00-03:00","description":"Data e hora de criação: define a data e hora a partir de quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)"},{"key":"createdAtTo","value":"2025-11-28T12:00:00-03:00","description":"Data e hora de criação: define a data e hora até quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 28 Nov 2025 13:11:34 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"pagination\": {\n        \"limit\": 10,\n        \"offset\": 0,\n        \"hasNext\": false\n    }\n}"},{"id":"49611bb2-7369-4d66-8628-d928c1e97921","name":"(400) Query params validation error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/bookings?customerId[]=Company Ltda&bookingDateTimeFrom=2025-11-28&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","bookings"],"query":[{"key":"customerId[]","value":"Company Ltda","description":"IDs dos clientes"},{"key":"bookingDateTimeFrom","value":"2025-11-28","description":"Data e hora da reserva: define uma data e hora a partir de quando as reservas serão buscadas. Formato: W3C (Y-m-d\\TH:i:sP)"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Fri, 28 Nov 2025 14:06:50 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"40"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"customerId\",\n            \"messages\": [\n                \"Index 0 must be integer\"\n            ]\n        },\n        {\n            \"field\": \"bookingDateTimeFrom\",\n            \"messages\": [\n                \"The format of bookingDateTimeFrom should be Y-m-d\\\\TH:i:sP\"\n            ]\n        }\n    ]\n}"},{"id":"c43033fb-6d22-41c6-a888-79df5a251fea","name":"(403) Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/bookings?id[]=143063, 142600&limit=10","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","bookings"],"query":[{"key":"id[]","value":"143063, 142600","description":"IDs das reservas"},{"key":"limit","value":"10","description":"Quantidade de registros retornados (1 a 100)","type":"text"},{"key":"offset","value":"0","description":"Posição inicial da busca. Recomendação: offset atual + limit","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Mon, 22 Dec 2025 01:02:57 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The booking endpoint is only available for authorized customers. To request access, contact Conexa support via chat or by sending an email to suporte@conexa.app\"\n}"}],"_postman_id":"de948903-1ace-4830-ad89-40a04a4317f7"}],"id":"0f10b732-2fbd-46a0-8664-7cad59369fe1","description":"<p>Endpoints que correspondem a Reserva de Sala no sistema Conexa.</p>\n<p><strong>Obs.:</strong> para ter acesso à esses endpoints entre em contato com o nossa equipe de atendimento!</p>\n<h3 id=\"códigos-de-erro-422---unable-to-process\">Códigos de Erro (422 - Unable to process)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Message</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BOOKING_02</td>\n<td>This is not a room booking</td>\n</tr>\n<tr>\n<td>BOOKING_03</td>\n<td>It is not possible to cancel a booking made through Marketplace</td>\n</tr>\n<tr>\n<td>BOOKING_04</td>\n<td>This booking has already been cancelled</td>\n</tr>\n<tr>\n<td>BOOKING_05</td>\n<td>This booking has been invoiced and cannot be cancelled</td>\n</tr>\n<tr>\n<td>BOOKING_06</td>\n<td>It is not possible to cancel a reservation less than :hoursInAdvanceh in advance</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0f10b732-2fbd-46a0-8664-7cad59369fe1","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Check-in","item":[{"name":"/checkin","id":"71c6a6a7-18c9-4438-b123-e04ea60aceae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-in via integração\",\n    \"datetime\": \"2024-04-23T08:01:00-03:00\",\n    \"checkoutDatetime\": \"2024-04-23T13:39:48-03:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin","description":"<blockquote>\n<p>⚠️ Disponível apenas para Conexa Coworking </p>\n</blockquote>\n<p>Registro de Check-In (data e hora atuais) através do ID da pessoa (<code>personId</code>) e do ID do espaço de trabalho (<code>workSpaceId</code>) no sistema Conexa.</p>\n<p>ℹ️ É permitido realizar um Check-In retroativo, porém é necessário informar horário de Check-Out!</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personId</td>\n<td>integer</td>\n<td>ID da pessoa</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>workspaceId</td>\n<td>integer</td>\n<td>ID do espaço de trabalho</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>datetime</td>\n<td>string</td>\n<td>Data e hora do check-in. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>checkoutDatetime</td>\n<td>string</td>\n<td>Data e hora do check-out, sendo no mesmo dia que o check-in. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Sim, quando <code>datetime</code> é informado</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["checkin"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"bac7bbdf-dc82-4c14-bc93-f327f05241ae","name":"(204) Success - Check-in data e hora atuais","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-in via integração\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 20 Apr 2024 14:44:44 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"1b56b075-be90-4bd3-85e2-47019070bbb3","name":"(204) Success - Check-in retroativo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-in via integração\",\n    \"datetime\": \"2024-04-18T08:00:00-03:00\",\n    \"checkoutDatetime\": \"2024-04-18T13:39:48-03:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 20 Apr 2024 14:34:23 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"713cd8e5-fae0-4000-8629-7823f501130b","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"notes\": \"Check-in via integração\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Apr 2024 20:45:27 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"115"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"workspaceId\",\n            \"messages\": [\n                \"Workspace ID cannot be blank\"\n            ]\n        }\n    ]\n}"},{"id":"a5a9fcdd-f4c3-47d8-be67-9ef1b6b1e257","name":"(403) Not authorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-in via integração\",\n    \"datetime\": \"2024-04-18T08:00:00-03:00\",\n    \"checkoutDatetime\": \"2024-04-18T13:39:48-03:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Apr 2024 14:46:42 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"60"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not authorized to perform this action.\"\n}"},{"id":"590c812d-0bbf-47fe-939b-f56ad7b7cd19","name":"(404) Not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-in via integração\",\n    \"datetime\": \"2024-04-08T13:38:00-03:00\",\n    \"checkoutDatetime\": \"2024-04-08T13:39:48-03:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Apr 2024 13:26:25 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"85"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Workstation does not exist or you have no permission to access it.\"\n}"},{"id":"12a2f700-b5ea-40c2-b09f-498b9ef9f8a1","name":"(422) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-in via integração\",\n    \"datetime\": \"2024-04-08T13:38:00-03:00\",\n    \"checkoutDatetime\": \"2024-04-08T13:39:48-03:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkin"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Apr 2024 13:35:46 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"190"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"CHECKIN_04\",\n            \"message\": \"There is already a check-in/check-out record for this Person in the space at that time\"\n        }\n    ]\n}"}],"_postman_id":"71c6a6a7-18c9-4438-b123-e04ea60aceae"}],"id":"59a164ce-8b18-4968-9bf5-12da8d66c76e","description":"<p>Endpoints que correspondem a Check-In no sistema Conexa.</p>\n","_postman_id":"59a164ce-8b18-4968-9bf5-12da8d66c76e","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Check-out","item":[{"name":"/checkout","id":"2de3678e-91b9-4234-8bea-7365c30a1388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"notes\": \"Check-out via integração\",\n    \"datetime\": \"2024-04-25T19:00:00-03:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkout","description":"<p>Registro de Check-Out através do ID da pessoa (<code>personId</code>), ID do espaço de trabalho (<code>workSpaceId</code>) e da data e hora (<code>datetime</code>) no sistema Conexa. Caso não seja informado o <code>datetime</code>, será utilizado data e hora atuais.</p>\n<p>ℹ️ É permitido realizar um Check-Out pendente, informando a data e horário de Check-Out no parâmetro <code>datetime</code>!</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personId</td>\n<td>integer</td>\n<td>ID da pessoa</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>workspaceId</td>\n<td>integer</td>\n<td>ID do espaço de trabalho</td>\n<td>Sim</td>\n</tr>\n<tr>\n<td>datetime</td>\n<td>string</td>\n<td>Data e hora do check-out. Formato: W3C (<strong>Y-m-d\\TH:i:sP</strong>)</td>\n<td>Não</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>Observações</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["checkout"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[]}},"response":[{"id":"7280d406-0976-402f-9c14-a5a89e685787","name":"(204) Success - Check-out data e hora atuais","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkout"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 25 Apr 2024 20:58:21 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"fd05a624-3e67-4594-9f2b-70f0f9e22a7b","name":"(204) Success - Check-out retroativo de um check-in","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"datetime\": \"2024-04-20T16:00:00-03:00\",\n    \"notes\": \"Check-out via integração\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkout"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 25 Apr 2024 21:00:27 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null},{"id":"8ad5005e-f35e-4664-876d-9f6671927768","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582,\n    \"datetime\": \"2024-04-20 16:00\",\n    \"notes\": \"Check-out via integração\"\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkout"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Apr 2024 21:01:50 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"131"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"datetime\",\n            \"messages\": [\n                \"The format of datetime should be Y-m-d\\\\TH:i:sP\"\n            ]\n        }\n    ]\n}"},{"id":"6c1fc90e-d14a-4414-bd63-89f9d9047ba8","name":"(404) Not found check-in","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"personId\": 458,\n    \"workspaceId\": 2582\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/checkout"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Apr 2024 20:55:47 GMT"},{"key":"Server","value":"Apache/2.4.56 (Debian)"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"81"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Checkin does not exist or you have no permission to access it.\"\n}"}],"_postman_id":"2de3678e-91b9-4234-8bea-7365c30a1388"},{"name":"/room/booking/:id/checkout","id":"26403bcd-bfc2-4c65-9a4b-19c8fbf0100e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sendEmail\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/checkout","description":"<p>Registro de Check-Out de Sala através do ID da reserva (<code>bookingId</code>) no sistema Conexa.</p>\n<h4 id=\"body\">Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Index</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sendEmail</td>\n<td>boolean</td>\n<td>Flag que envia o checkout por email ao cliente e solicitante (caso exista na reserva)</td>\n<td>Não</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["room","booking",":id","checkout"],"host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"query":[],"variable":[{"type":"any","value":"140871","key":"id"}]}},"response":[{"id":"af363e0e-f560-45db-b368-2bd0e484a4a2","name":"(204) Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sendEmail\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/checkout","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","checkout"],"variable":[{"key":"id","value":"140918"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 11 Nov 2025 14:59:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":null},{"id":"c61e6732-438e-40c1-9b86-0166b54859d2","name":"(204) Success - Empty body","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/checkout","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","checkout"],"variable":[{"key":"id","value":"140871"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 11 Nov 2025 15:03:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":null},{"id":"c12f6839-3150-4612-853e-fa7db55fcf0c","name":"(400) Field validation error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sendEmail\": \"true\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/checkout","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","checkout"],"variable":[{"key":"id","value":"140918"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 11 Nov 2025 15:00:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Field validation error\",\n    \"errors\": [\n        {\n            \"field\": \"sendEmail\",\n            \"messages\": [\n                \"Send Email must be boolean\"\n            ]\n        }\n    ]\n}"},{"id":"064d7a12-4775-438a-8517-4ebdd98f0879","name":"(404) Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sendEmail\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/checkout","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","checkout"],"variable":[{"key":"id","value":"1409185"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 11 Nov 2025 15:01:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"98"},{"key":"X-Rate-Limit-Reset","value":"14"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This Booking does not exist or you have no permission to access it\"\n}"},{"id":"27cec07b-19b7-4206-9a21-a9447a60c0ce","name":"(412) Unable to process","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sendEmail\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2/room/booking/:id/checkout","host":["https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"],"path":["room","booking",":id","checkout"],"variable":[{"key":"id","value":"140918"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.22.1"},{"key":"Date","value":"Tue, 11 Nov 2025 15:02:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"It was not possible to process your request\",\n    \"errors\": [\n        {\n            \"code\": \"BOOKING_01\",\n            \"message\": \"This booking has already been completed\"\n        }\n    ]\n}"}],"_postman_id":"26403bcd-bfc2-4c65-9a4b-19c8fbf0100e"}],"id":"03589e74-48cf-4bde-8d41-e35cc87347ee","description":"<p>Endpoints que correspondem a Check-Out, tanto em Ambiente Compartilhado quanto em Sala de Reunião, no sistema Conexa.</p>\n","_postman_id":"03589e74-48cf-4bde-8d41-e35cc87347ee","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}}],"id":"a0d1403d-7509-4b2c-a29b-54aaeff73a10","description":"<p>Endpoints de uso exclusivo do produto Conexa Coworking</p>\n","_postman_id":"a0d1403d-7509-4b2c-a29b-54aaeff73a10","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}},{"name":"Webhooks","item":[],"id":"08096d2f-79fd-4cdc-8518-d83eaf071daa","description":"<p>É possível encontrar a documentação completa sobre os webhooks na nossa central de ajuda, <a href=\"https://ajuda.conexa.app/pt/articles/6390204-webhooks-personalizados\">clicando aqui</a>.</p>\n<p>Para a documentação dos eventos, <a href=\"https://ajuda.conexa.app/pt/articles/6372148-documentacao-dos-eventos-webhooks\">clique aqui.</a></p>\n","_postman_id":"08096d2f-79fd-4cdc-8518-d83eaf071daa","auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"},"isInherited":true,"source":{"_postman_id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","id":"d3b5983d-12f3-4f8a-b536-933c3fb87707","name":"API v2 Conexa","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"}},"event":[{"listen":"prerequest","script":{"id":"96f26fc0-dee8-4965-a503-b84446b28df3","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"fe8e4129-ad6a-4524-bfbf-ec4b1176b7a9","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://YOUR_SUBDOMAIN.conexa.app/index.php/api/v2"},{"key":"accessToken","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MzAzMjI5MjksImp0aSI6IjdLZmFYcjg1MTdZUnk3cUxQcjExdGhmU2JCS1I4RVhVNDNSb1ZTRjR6dDg9IiwiaXNzIjoibm9tZWNsaWVudGUiLCJuYmYiOjE3MzAzMjI5MjksImV4cCI6MTczMDM1MTcyOSwiZGF0YSI6eyJpZCI6MSwidHlwZSI6ImFkbWluIiwicGVyc29uQ3VzdG9tZXJJZCI6bnVsbH19.wUPA-2RoQQws9U3BQl7C1BluiHkkKFm2_y6SOBOk6C0"}]}