{"info":{"_postman_id":"705e6f98-a80d-4281-b7bd-bf4cbe1ed48d","name":"CrewSourcing API","description":"<html><head></head><body><p><img src=\"https://i.imgur.com/X2C1kdJ.jpg\" alt=\"image\"></p>\n<p>Welcome to UtilityGO! CrewSourcing API. Here are some pre-made requests for you to explore the API using <a href=\"https://getpostman.com\">Postman</a>.</p>\n<h2 id=\"getting-started\">Getting Started</h2>\n<p>UtilityGO! CrewSourcing API exposes the entire web/mobile client infrastructure via a standardized programmatic interface. Using UtilityGO! CrewSourcing API, you can do just about anything you can do on both the web and mobile applications, while using your programming language of choice. The UtilityGO! CrewSourcing API is a RESTful API based on HTTP requests and JSON responses.</p>\n<p>The easiest way to start using the UtilityGO! CrewSourcing API is by clicking the <strong>Run in Postman</strong> button above. <a href=\"https://www.getpostman.com/\">Postman</a> is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection.</p>\n<h1 id=\"setup\">Setup</h1>\n<p>You'll need to <a href=\"https://www.getpostman.com/docs/environments\">create an environment in Postman</a>, select that environment, and enter your target <strong>Utility-ID</strong> in the <code>Setup/Environment Setup</code> pre-request script (<a href=\"http://www.getpostman.com/docs/pre_request_scripts\">documentation on pre-request scripts</a>) to set the required environment variables.</p>\n<h2 id=\"environments--utilities\">Environments &amp; Utilities</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Base API Url</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Development</td>\n<td><a href=\"https://crewsourcing-api-dev.widergydev.com\">https://crewsourcing-api-dev.widergydev.com</a></td>\n</tr>\n<tr>\n<td>QA</td>\n<td><a href=\"https://crewsourcing-api-qa.widergydev.com\">https://crewsourcing-api-qa.widergydev.com</a></td>\n</tr>\n<tr>\n<td>Stage</td>\n<td><a href=\"https://crewsourcing-api-stage.widergydev.com\">https://crewsourcing-api-stage.widergydev.com</a></td>\n</tr>\n<tr>\n<td>Production</td>\n<td><a href=\"https://crewsourcing-api.widergy.com\">https://crewsourcing-api.widergy.com</a></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Utility</th>\n<th>ID</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Camuzzi</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><p>Notes:</p>\n<ul>\n<li>Data created or modified in each environment will not affect the other.</li>\n<li>Data created or modified in each Utility will not affect the other.</li>\n<li>Data cannot be transfered from one environment/Utility to the other.</li>\n</ul>\n<h2 id=\"making-your-first-call\">Making Your First Call</h2>\n<p>Making your first call test that you have the environment variables setup by making a <code>GET</code> request to <code>/health_check/all</code> with the <code>Utility-ID</code> header set to your target utility. You should get a <code>HTTP 200 OK</code> response if your variables are correct and the API is healthy :)</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The API uses <a href=\"https://jwt.io/introduction/\">JWT</a> token based authentication for both <em>User</em> &amp; <em>Consumer</em> (consider <em>clients</em>) models.</p>\n<h2 id=\"sessions\">Sessions</h2>\n<p>When you <a href=\"\">create a session</a>, it generates an <code>access_token</code> and <code>renew_id</code> for a given <em>client</em> credentials.</p>\n<p>An <code>access_token</code> is unique to a given <em>client</em> and device. This <code>access_token</code> is used in every authenticated endpoint by passing the <code>Authorization</code> header to the request. The <code>renew_id</code> is unique per <em>client</em> and device, and is unique for the <code>access_token</code>. The <code>renew_id</code> will be used in the <a href=\"\">renew_token endpoint</a>. The <code>renew_id</code> changes only when the <em>client</em> is unauthorized and requests a new <code>access_token</code> again.</p>\n<h3 id=\"renewing-a-session\">Renewing A Session</h3>\n<p>If a <em>client</em> has authorized their account but you no longer have a valid <code>access_token</code> for them, then a new one can be generated by using the <code>renew_id</code>.</p>\n<p>When your application receives a <code>renew_id</code>, it is important to store it for future use. If your application loses the <code>renew_id</code>, you will have to prompt the <em>client</em> for their login information again.</p>\n<p>When a response from server returns the custom http header <code>X-Expiration-Warning</code> it means the expiration date of the token is near and it's recommended to get a new <code>access_token</code> with a renew call. If the token is not renewed in a certain time, then the <code>access_token</code> will not longer be valid and the <em>client</em> must generate a new one. Despite the <a href=\"\">renew_token endpoint</a>, the server always unauthorizes a <em>client</em> after certain time.</p>\n<h1 id=\"making-your-requests\">Making your requests</h1>\n<p>Congrats! You must have the client's <code>access_token</code> at this point and you're ready to start making API requests to their behalf. All that's required for this is to set the required headers in your requests:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Utility-ID:    &lt;YOUR-TARGET-UTILITY-ID&gt;\nAuthorization: &lt;YOUR-ACCESS-TOKEN&gt;\n</code></pre><h2 id=\"public-resoruces\">Public resoruces</h2>\n<p>For public read-only and anonymous resources, such as creating a user, requesting a user's password reset, etc. all you need to do is send the <code>Utility-ID</code> header with your target utility in your requests.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Utility-ID: &lt;YOUR-TARGET-UTILITY-ID&gt;\n</code></pre><h2 id=\"endpoints\">Endpoints</h2>\n<p>The API is accessed by making HTTP requests to a specific version endpoint URL, in which GET, POST, PUT, PATCH, DELETE calls contain information about what you wish to access. Every endpoint is accessed via SSL-enabled HTTPS.</p>\n<h3 id=\"pagination\">Pagination</h3>\n<p>In several cases, if the API action is plural, you can page it via query string parameters.</p>\n<p>NOTE: check each endpoint specification to know if it allows pagination.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query String Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>optional</td>\n<td>Page number of the result set (default: 1)</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>optional</td>\n<td>Limit the number of results per page. (default: 20, max: n/a)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://utilitygo-crewsourcing-api-dev.widergydev.com/api/v1/accounts?page=2&amp;page_size=30\n</code></pre><h2 id=\"responses\">Responses</h2>\n<p>Responses are always in JSON. There's no support for other formats like XML.</p>\n<p>Here are the <a href=\"https://httpstatuses.com/\">HTTP Status Codes</a> mostly used by this API. </p>\n<p><code>200 OK</code>: The request has succeeded.</p>\n<p><code>201 Created</code>: The request has been fulfilled and has resulted in one or more new resources being created.</p>\n<p><code>202 Accepted</code>: The request has been accepted for processing, but the processing has not been completed.</p>\n<p><code>204 No Content</code>: The server has successfully fulfilled the request and that there is no additional content to send in the response payload body.</p>\n<p><code>400 Bad Request</code>: The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, etc.).</p>\n<p><code>401 Unauthorized</code>: The request has been refused because it lacks valid authentication credentials for the target resource.</p>\n<p><code>403 Forbidden</code>: The server understood the request but refuses to authorize it.</p>\n<p><code>404 Not Found</code>: The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.</p>\n<p><code>422 Unprocessable Entity</code>: The server understood the request but was unable to process the contained instructions.</p>\n<p><code>500 Internal Server Error</code>: The server encountered an unexpected condition that prevented it from fulfilling the request.</p>\n<p><code>501 Not Implemented</code>: The server does not support the functionality required to fulfill the request.</p>\n<p><code>504 Gateway Timeout</code>: The server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access in order to complete the request.</p>\n<h2 id=\"errors\">Errors</h2>\n<p>Depending the case, the API will stop processing a request as soon as a problem is encountered, or in some cases it will continue processing and encounter multiple problems. For instance, it might process multiple attributes and then return multiple validation problems in a single response.</p>\n<p>When the API encounters multiple problems for a single request, the most generally applicable HTTP error will be used in the response. For instance, <code>400 Bad Request</code> might be appropriate for multiple 4xx errors or <code>500 Internal Server Error</code> might be appropriate for multiple 5xx errors.</p>\n<h3 id=\"error-objects\">Error Objects</h3>\n<p>Error objects provide additional information about problems encountered while performing an operation. Error objects will be returned as an array keyed by <code>errors</code> in the top level of the response body.</p>\n<p>An error object will have the following members:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: \\\"email\\\"\"\n        }\n    ]   \n}\n</code></pre>\n<ul>\n<li><code>status</code>: the HTTP status code applicable to this problem, expressed as a integer value.</li>\n<li><code>code</code>: an application-specific error code, expressed as a string value.</li>\n<li><code>message</code>: a human-readable explanation specific to this occurrence of the problem.</li>\n<li><code>meta</code>: non-standard meta-information about the error.</li>\n</ul>\n<p>We've developed a JavaScript based <a href=\"https://github.com/widergy/web-utils\">utils library</a> which has a built-in function to handle these kind of error responses. Check it out!</p>\n<h1 id=\"polling\">Polling</h1>\n<p>For the most part, one common issue we face at the time of interacting with the API is making requests that depend on the utilities external service’s response. Let’s say we have to log a user into our application and the login process goes as follows:</p>\n<p><img src=\"https://cdn-images-1.medium.com/max/1600/1*qmatI22gPiI87bFtdSSV0w.gif\" alt=\"image\"></p>\n<p>Although this is a valid way of logging in a user, it has several drawbacks:</p>\n<ul>\n<li>Response time now depends on an external resource we do not control.</li>\n<li>If the external server is slow, our server might suffer from a DOS (Denial of Service) without even having a malicious client trying to force it.</li>\n<li>Our entire application will seem to be slow because threads will be consuming most of their time in this slow request.</li>\n</ul>\n<p>We decided to tackle this issue with the following architecture:</p>\n<p><img src=\"https://cdn-images-1.medium.com/max/1600/1*B1L_xA13Rnlqn1xGPhorMA.gif\" alt=\"image\"></p>\n<p><strong>1.</strong> The client makes a request to our server.</p>\n<p><strong>2.</strong> The server queues a task to process the requested action and returns a job_id to the client.</p>\n<p><strong>3.</strong> While the task is being processed, our endpoint returns 202 (Accepted) each time the client requests the job’s status.</p>\n<p><strong>4.</strong> Once the job is processed, the server responds with the job result.</p>\n<p>With this approach, our server’s response time doesn’t depend on external resources we do not control. Hence, we don’t have the drawbacks presented in the previous section. On the other hand, this requires the client to implement a busy-waiting loop, adding complexity to their code.</p>\n<p>Luckily, for JavaScript based interactions, at Widergy we've develop the <a href=\"https://github.com/widergy/polling-handling\">polling-handling library</a> which let you start consuming these endpoints much faster 🚀. Check it out!</p>\n<p>NOTE: check each endpoint specification to know if it implements polling or not.</p>\n<h2 id=\"questions--comments--suggestions\">Questions / Comments / Suggestions</h2>\n<p>If you have any questions or comments, please let us know at <a href=\"mailto:widergydev@widergy.com\">widergydev@widergy.com</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Setup","slug":"setup"},{"content":"Authentication","slug":"authentication"},{"content":"Making your requests","slug":"making-your-requests"},{"content":"Polling","slug":"polling"}],"owner":"3397322","collectionId":"705e6f98-a80d-4281-b7bd-bf4cbe1ed48d","publishedId":"S1LvV8AU","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"07DB7C"},"publishDate":"2025-03-28T13:05:33.000Z"},"item":[{"name":"Setup","item":[{"name":"Environment setup","event":[{"listen":"prerequest","script":{"id":"71fb777a-13c6-4909-9c4e-f4ccb93e9dca","exec":["// Set the target utility\r","// Utility-ID Camuzzi:   1\r","pm.environment.set(\"utility-id\", \"1\");\r","\r","// Set the target environment. This is currently set to development\r","// Local        http://localhost:3000\r","// Development: https://crewsourcing-api-dev.widergydev.com\r","// QA-CO:       https://crewsourcing-api-qa-co.widergydev.com\r","// QA-EV:       https://crewsourcing-api-qa-ev.widergydev.com\r","// Stage:       https://crewsourcing-api-stage.widergydev.com\r","// Production:  https://crewsourcing-api.widergy.com\r","pm.environment.set(\"base-api-url\", \"https://crewsourcing-api-stage.widergydev.com\");\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2dd19323-3bbc-4965-89e9-15b0ac5a611b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://postman-echo.com/get","description":"<p>Setup your utility environment for all further requests in the Pre-request script.</p>\n<p>You should only need to run this one time as these values will be stored in your Postman environment.</p>\n","urlObject":{"protocol":"https","path":["get"],"host":["postman-echo","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2dd19323-3bbc-4965-89e9-15b0ac5a611b"},{"name":"Health check","event":[{"listen":"test","script":{"id":"6018d4e3-b21b-40f2-bb9e-c073c3ccd1d6","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;",""],"type":"text/javascript"}}],"id":"8af08d24-e33c-4eb1-8609-4340c5f93a69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/health_check/all","description":"<p>Test that calls to your utility environment succeed.</p>\n<p>This endpoint returns the health status of the API.</p>\n","urlObject":{"path":["health_check","all"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"d4e2a2c4-5fad-4410-9828-ff66a1ad3822","name":"Health check - OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":{"raw":"{{base-api-url}}/health_check/all","host":["{{base-api-url}}"],"path":["health_check","all"],"variable":[{"value":"database_migrations_email","key":"checks"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"36","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 26 Dec 2018 14:53:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Last-Modified","value":"Wed, 26 Dec 2018 14:53:38 GMT","name":"Last-Modified","description":"The last modified date for the requested object, in RFC 2822 format"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"c9ac7151-ec41-49dc-aa57-557d9358611d","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.533493","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n\t\"healthy\":true,\n\t\"message\":\"success\"\n}"}],"_postman_id":"8af08d24-e33c-4eb1-8609-4340c5f93a69"},{"name":"Create","event":[{"listen":"test","script":{"id":"a3955f32-0fd2-40d4-a2c8-1631833443d6","exec":["var jsonData = pm.response.json();","pm.environment.set(\"user-access-token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"c2f92e63-9d10-4f5f-8d77-b79de570cb65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"1"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan_perez@example.com\",\n\t\"password\": \"12345678\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions","description":"<p>This endpoint's body will accept either <code>email</code> or <code>document_type</code>, <code>document_number</code> and <code>gender</code> depending on the utility's user identification strategy, plus the user's <code>password</code>.</p>\n","urlObject":{"path":["api","v1","users","sessions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"16583baf-01da-4222-b576-eb45cfe67eb7","name":"Create - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"1"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"santiago.nahmod@widergy.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c928b633-24bd-4cc1-b3a9-016dc9607612"},{"key":"X-Runtime","value":"0.323779"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: password\"\n        }\n    ]\n}"},{"id":"81ada694-01d7-4386-b3bc-268173b19ebe","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null,\n\t\"gender\": null,\n\t\"password\": \"12345678a\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"461","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 18:36:51 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"0939e26a8f9083d95e5e98e0cbcfb6a2\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"f4233e04-14a6-4486-9cc2-b96d9a2dc7fe","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.165660","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"access_token\":\"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjozMjgxLCJ2ZXJpZmljYXRpb25fY29kZSI6IjIxVXNZekw0UnNWMnlMdzR6MzRhOE5fM1NRaG1xMnpjQ2FraHRFRHpqem1XYnZNNjRDeG9oNURaZmFQYWVZVjYiLCJyZW5ld19pZCI6IjExZ29RSzZiamtDY3EzQmNCUjRwLWVWZXl6cHdSOXhFIiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTU4NDQ3MDIxMSwiZXhwaXJhdGlvbl9kYXRlIjoxNTgxNDQ2MjExLCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTU0OTk5NjYxMX0.NQB7ssny85IHLh8LbRIGLjuTndLZvsQszXAFjtaVW3U\",\n\t\"renew_id\":\"11goQK6bjkCcq3BcBR4p-eVeyzpwR9xE\"\n}"}],"_postman_id":"c2f92e63-9d10-4f5f-8d77-b79de570cb65"},{"name":"Utility Application Configurations","id":"28c3c654-7331-4796-9f93-f65c0c9b6534","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{camuzzi_api_token}}"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/configurations?application=mobile","urlObject":{"path":["api","v1","configurations"],"host":["{{base-api-url}}"],"query":[{"key":"application","value":"mobile"},{"disabled":true,"key":"version","value":"1.0.0"}],"variable":[]}},"response":[],"_postman_id":"28c3c654-7331-4796-9f93-f65c0c9b6534"}],"id":"5acdd4b4-8ec6-4620-851b-be26a12ac095","_postman_id":"5acdd4b4-8ec6-4620-851b-be26a12ac095","description":""},{"name":"Backoffice","item":[{"name":"Users","item":[{"name":"Sessions","item":[{"name":"Create","event":[{"listen":"test","script":{"id":"20f7fbd6-639a-4256-97be-a0d6f867d77a","exec":["var jsonData = pm.response.json();","pm.environment.set(\"backoffice-user-access-token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"877fe751-66e5-424e-a585-2dc6115dcf3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"raiquen.dipardo\",\n\t\"password\": \"Inicio.01\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/users/sessions","description":"<p>Backoffice user login.</p>\n","urlObject":{"path":["backoffice_api","v1","users","sessions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"1dc5c869-98c4-40c5-8743-6b92c0cfc5a8","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"juan.perez\",\n\t\"password\": \"12345678aA\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/users/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8c47e540080d1b6dab1dcd8f1f51fc91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"874d8035-91f8-469d-a9ac-e14149503cf1"},{"key":"X-Runtime","value":"5.528173"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjMsInZlcmlmaWNhdGlvbl9jb2RlIjoiVFB5UFM2V0xiU3Vuc2JVc1FZRFJ0Wk5KaHhOd2djQlBXZlNzYVN2eHh1RGlZVnhueHllQTN4Zk5EVExRVmJGRSIsInJlbmV3X2lkIjoieEdIRHhMaGJmYXpGRXBrVENFV2p2SkZvZEF3dDhHdHQiLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MjMwMDExLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyMDYwMTEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0NzU2NDExfQ.hJGhu6Ou5WSXHNzsnn9jGxKpSMlpRqNZfbDYvGFXLSw\",\n    \"renew_id\": \"xGHDxLhbfazFEpkTCEWjvJFodAwt8Gtt\"\n}"},{"id":"9afe560e-eeb5-49a2-bc28-e55dff4dbe8d","name":"Create - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"juan.perez\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/users/sessions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"746673ab-8c93-4301-883e-19f8462a2fd2"},{"key":"X-Runtime","value":"0.053886"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: password\"\n        }\n    ]\n}"}],"_postman_id":"877fe751-66e5-424e-a585-2dc6115dcf3b"}],"id":"0f2e2472-ee53-46cb-b249-968e193471be","_postman_id":"0f2e2472-ee53-46cb-b249-968e193471be","description":""},{"name":"Federated Sessions","item":[{"name":"Microsoft","event":[{"listen":"test","script":{"id":"20f7fbd6-639a-4256-97be-a0d6f867d77a","exec":["var jsonData = pm.response.json();","pm.environment.set(\"backoffice-user-access-token\", jsonData.access_token);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"313c52ab-edcf-44ff-8b40-6ab38a5ac074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"access_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlBjWDk4R1g0MjBUMVg2c0JEa3poUW1xZ3dNVSIsImtpZCI6IlBjWDk4R1g0MjBUMVg2c0JEa3poUW1xZ3dNVSJ9.eyJhdWQiOiIyMTdkYjQwZi0xNDJiLTRlYTktYjk5NS1jYzRlODcwMWZhMmUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC8wNGE1YmE5Mi1iMWZkLTRhMmYtOTJkNy0yZDgxY2I3ODk0ZWIvIiwiaWF0IjoxNzY3Mzc4MjE0LCJuYmYiOjE3NjczNzgyMTQsImV4cCI6MTc2NzM4MzM1OCwiYWNyIjoiMSIsImFpbyI6IkFYUUFpLzhhQUFBQTlCMkFFdlIreE13enZaREgxVXlCZGFvWnhFSmRjRFFyYmhYM3doVWJ5QUkxZFpqVG93QmVJOEFoTXJ6MnhZREFadzVBMzROaFNzNHVoV1MzQ3VFZFMwSk9ha0xjdjNqdCtNVURqUzh3SjNkQ3hnaVIwU0hERzk2L1FiMUxScXF3Q1MveXh0WHdtTUd5Y1Q4cXZIVkdydz09IiwiYW1yIjpbInB3ZCIsIm1mYSJdLCJhcHBpZCI6IjQzMDlmMTEyLThjNWMtNDViNi1hNWFkLWZmZWRkMjA4YjFjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiQXJyaWJhcyIsImdpdmVuX25hbWUiOiJQYWJsbyIsImlwYWRkciI6IjI4MDA6ODEwOjU0YzoxMDM6NzFjMjpiNmQ6MjU4ODo0YTdhIiwibmFtZSI6IkFycmliYXMsIFBhYmxvIiwib2lkIjoiYzNmYThmZTAtNzhlMC00ZjI2LWJhOGQtM2RhYjIxZjY4YmRlIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTE3NjkxMDgwMzQtMjAzMDY0MDQyOC0zMTI1NTIxMTgtNDE4NjgiLCJyaCI6IjEuQVRRQWtycWxCUDJ4TDBxUzF5MkJ5M2lVNnctMGZTRXJGS2xPdVpYTVRvY0ItaTVRQVVJMEFBLiIsInNjcCI6IkVtcGxveWVlcy5SZWFkLkFsbCIsInNpZCI6IjAwYjliYWY5LTU5MzEtOTUxNy02OTg2LWE2YWYzN2VmZDM1ZiIsInN1YiI6IjhEYmpZaS1IS2ltVlQtVkxETE9EVThlSHE3QmUzMUN5X2JuNDVvbkRnWDQiLCJ0aWQiOiIwNGE1YmE5Mi1iMWZkLTRhMmYtOTJkNy0yZDgxY2I3ODk0ZWIiLCJ1bmlxdWVfbmFtZSI6IlBhYmxvLkFycmliYXNAY2FtdXp6aWdhcy5jb20uYXIiLCJ1cG4iOiJQYWJsby5BcnJpYmFzQGNhbXV6emlnYXMuY29tLmFyIiwidXRpIjoiZk41VHhhQXRDRS05MnpJRDJ4a2lBUSIsInZlciI6IjEuMCIsInhtc19mdGQiOiJjb2lpMUtQeEgxcEtoLW03Z09sZk50WDJrTHV3RXVOMGFMdktKLVFleE9NQmRYTjNaWE4wTXkxa2MyMXoifQ.P3LtNJAiO680e7Q2175T8pFORnC-jvFLDFoxmPhLRgve31MvTMMACgv3iU-iJGf3Jd4EAadu1iG4MfmFRb9PuHO_pu5ddkg0ejefiYV5w-S27UdlZ-QeWh7PP3jD3lixLheopzv-VmToRaGntV-s2lz0g5fe1edCBcdfcYequ3XQwIjS6p82WdF6V_Xu7CfTB8G-gs0KWRY76iANLIhRb9J-oPIPvrSrO2lCXqWTKOwCpMA7JZwQyTLXLxCcCz4TYnmZf69Qg1mjkGCQmcUrDqFknXko4tnREbKH79yGHilnPiQScqugr4nXpWrrC9A7ML68iHd6qVrZbkbcErVPLQ\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/users/federated_sessions/microsoft","description":"<p>Backoffice user login.</p>\n","urlObject":{"path":["backoffice_api","v1","users","federated_sessions","microsoft"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"e908d894-5140-4373-b04e-f672f6eac6dd","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"juan.perez\",\n\t\"password\": \"12345678aA\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/users/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8c47e540080d1b6dab1dcd8f1f51fc91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"874d8035-91f8-469d-a9ac-e14149503cf1"},{"key":"X-Runtime","value":"5.528173"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjMsInZlcmlmaWNhdGlvbl9jb2RlIjoiVFB5UFM2V0xiU3Vuc2JVc1FZRFJ0Wk5KaHhOd2djQlBXZlNzYVN2eHh1RGlZVnhueHllQTN4Zk5EVExRVmJGRSIsInJlbmV3X2lkIjoieEdIRHhMaGJmYXpGRXBrVENFV2p2SkZvZEF3dDhHdHQiLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MjMwMDExLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyMDYwMTEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0NzU2NDExfQ.hJGhu6Ou5WSXHNzsnn9jGxKpSMlpRqNZfbDYvGFXLSw\",\n    \"renew_id\": \"xGHDxLhbfazFEpkTCEWjvJFodAwt8Gtt\"\n}"},{"id":"2de5b03d-c84d-45cd-9826-2551ff15aaca","name":"Create - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"juan.perez\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/users/sessions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"746673ab-8c93-4301-883e-19f8462a2fd2"},{"key":"X-Runtime","value":"0.053886"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: password\"\n        }\n    ]\n}"}],"_postman_id":"313c52ab-edcf-44ff-8b40-6ab38a5ac074"}],"id":"f8f15d8f-53ea-4d8a-92df-8bf936b2179d","_postman_id":"f8f15d8f-53ea-4d8a-92df-8bf936b2179d","description":""},{"name":"Show","id":"ddeb844c-ca10-42e4-884e-395dafad49aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/users","urlObject":{"path":["backoffice_api","v1","users"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"7e6a6c10-5feb-49a2-a758-4911d062683e","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/backoffice_users"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"a0c21139-6576-4f2a-90c6-f8d8d97e29fb\",\n    \"url\": \"http://localhost:3000/async_request/jobs/a0c21139-6576-4f2a-90c6-f8d8d97e29fb\"\n}"},{"id":"baac2bdb-cb23-4f45-8ca0-ac194cc426a8","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/backoffice_users"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"email\": \"juan_perez@example.com\",\n    \"username\": \"jperez\",\n    \"first_name\": \"JUAN\",\n    \"last_name\": \"PEREZ\"\n}"}],"_postman_id":"ddeb844c-ca10-42e4-884e-395dafad49aa"}],"id":"18a0932a-cd98-4961-a1d4-9db1a6058a03","_postman_id":"18a0932a-cd98-4961-a1d4-9db1a6058a03","description":""},{"name":"Projects","item":[{"name":"Show","id":"6f09437b-a5b6-4544-8840-3cc2040dc845","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project","urlObject":{"path":["backoffice_api","v1","project"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"47672472-b4c9-4836-ab12-0545a1936fda","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"db4de2de5a1229005deea05fc26f41e2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5de9d1cd-aa65-4c60-af19-22bcb53c0e95"},{"key":"X-Runtime","value":"0.498511"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Formulario 3.4\",\n    \"forms\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"order\": 4,\n            \"name\": \"Formulario 3.4 - Paso 1\",\n            \"code\": \"form_1\",\n            \"custom\": false,\n            \"fields\": [\n                {\n                    \"id\": 3,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 1,\n                    \"suborder\": 1,\n                    \"title\": \"Dirección\",\n                    \"code\": \"field_3\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"direction\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 4,\n                    \"type\": \"Fields::Image\",\n                    \"order\": 2,\n                    \"suborder\": 1,\n                    \"title\": \"Foto de la factura\",\n                    \"code\": \"field_4\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"photo\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 5,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 3,\n                    \"suborder\": 1,\n                    \"title\": \"Campo Requerido\",\n                    \"code\": \"field_5\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": \"Campo requerido!\",\n                    \"key\": \"required\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 6,\n                    \"type\": \"Fields::Rating\",\n                    \"order\": 4,\n                    \"suborder\": 1,\n                    \"title\": \"Satisfacción\",\n                    \"code\": \"field_6\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"rating\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Carita feliz\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-19T11:36:07.776-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.782-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_1\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Carita triste\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-19T11:36:07.787-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.792-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_2\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"type\": \"Fields::Checklist\",\n                    \"order\": 5,\n                    \"suborder\": 1,\n                    \"title\": \"Listado\",\n                    \"code\": \"field_7\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"list\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 3,\n                            \"name\": \"Check 1\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-19T11:36:07.835-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.841-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_3\"\n                        },\n                        {\n                            \"id\": 4,\n                            \"name\": \"Check 2\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-19T11:36:07.846-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.851-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_4\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"type\": \"Fields::AutoComplete\",\n                    \"order\": 6,\n                    \"suborder\": 1,\n                    \"title\": \"External Field Options\",\n                    \"code\": \"field_8\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"external_options\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": true,\n                    \"field_options\": []\n                },\n                {\n                    \"id\": 2,\n                    \"type\": \"Fields::Switch\",\n                    \"order\": 10,\n                    \"suborder\": 1,\n                    \"title\": \"Switch\",\n                    \"code\": \"field_2\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 1,\n                    \"type\": \"Fields::Checkbox\",\n                    \"order\": 11,\n                    \"suborder\": 1,\n                    \"title\": \"Checkbok\",\n                    \"code\": \"field_1\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"order\": 5,\n            \"name\": \"Formulario 3.4 - Paso 2\",\n            \"code\": \"form_2\",\n            \"custom\": false,\n            \"fields\": []\n        }\n    ],\n    \"workflows\": [\n        {\n            \"id\": 2,\n            \"utility_id\": 1,\n            \"order\": 2,\n            \"name\": \"Formulario 3.4.2\",\n            \"code\": \"workflow_3_4_2\"\n        },\n        {\n            \"id\": 3,\n            \"utility_id\": 1,\n            \"order\": 3,\n            \"name\": \"Formulario 3.4.3\",\n            \"code\": \"workflow_3_4_3\"\n        }\n    ]\n}"},{"id":"e5a888da-0276-4975-87f7-b3efd69fc091","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"185669b6-52a8-4bed-9e91-b5d1818d44a7"},{"key":"X-Runtime","value":"0.033522"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 404,\n            \"code\": \"project_not_found\",\n            \"message\": \"No se encontró ningun proyecto.\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"6f09437b-a5b6-4544-8840-3cc2040dc845"},{"name":"Index","id":"a66139ad-89df-460f-9705-a834cb99062a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/projects","urlObject":{"path":["backoffice_api","v1","projects"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"18646997-1894-4455-9433-8abb369ed795","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"908f2360e6763743f5a692d1a7b0f60e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"6c33fbd3-8ede-4cee-b358-faf0e7f7f5a3"},{"key":"X-Runtime","value":"0.048640"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Formulario 3.4\",\n        \"forms\": [\n            {\n                \"id\": 1,\n                \"workflow_id\": 1,\n                \"order\": 4,\n                \"name\": \"Formulario 3.4 - Paso 1\",\n                \"code\": \"form_1\",\n                \"custom\": false,\n                \"fields\": [\n                    {\n                        \"id\": 3,\n                        \"type\": \"Fields::Text\",\n                        \"order\": 1,\n                        \"suborder\": 1,\n                        \"title\": \"Dirección\",\n                        \"code\": \"field_3\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"direction\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 4,\n                        \"type\": \"Fields::Image\",\n                        \"order\": 2,\n                        \"suborder\": 1,\n                        \"title\": \"Foto de la factura\",\n                        \"code\": \"field_4\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"photo\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 5,\n                        \"type\": \"Fields::Text\",\n                        \"order\": 3,\n                        \"suborder\": 1,\n                        \"title\": \"Campo Requerido\",\n                        \"code\": \"field_5\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": \"Campo requerido!\",\n                        \"key\": \"required\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 7,\n                        \"type\": \"Fields::Rating\",\n                        \"order\": 4,\n                        \"suborder\": 1,\n                        \"title\": \"Satisfacción\",\n                        \"code\": \"field_7\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"rating\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false,\n                        \"field_options\": [\n                            {\n                                \"id\": 1,\n                                \"name\": \"Carita feliz\",\n                                \"order\": 1,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_1\",\n                                \"field_id\": 7,\n                                \"created_at\": \"2022-08-22T20:30:19.557-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.560-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_1\"\n                            },\n                            {\n                                \"id\": 2,\n                                \"name\": \"Carita triste\",\n                                \"order\": 2,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_2\",\n                                \"field_id\": 7,\n                                \"created_at\": \"2022-08-22T20:30:19.562-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.564-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_2\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 8,\n                        \"type\": \"Fields::Checklist\",\n                        \"order\": 5,\n                        \"suborder\": 1,\n                        \"title\": \"Listado\",\n                        \"code\": \"field_8\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"list\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false,\n                        \"field_options\": [\n                            {\n                                \"id\": 3,\n                                \"name\": \"Check 1\",\n                                \"order\": 1,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_1\",\n                                \"field_id\": 8,\n                                \"created_at\": \"2022-08-22T20:30:19.589-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.591-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_3\"\n                            },\n                            {\n                                \"id\": 4,\n                                \"name\": \"Check 2\",\n                                \"order\": 2,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_2\",\n                                \"field_id\": 8,\n                                \"created_at\": \"2022-08-22T20:30:19.593-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.596-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_4\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 9,\n                        \"type\": \"Fields::AutoComplete\",\n                        \"order\": 6,\n                        \"suborder\": 1,\n                        \"title\": \"External Field Options\",\n                        \"code\": \"field_9\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"external_options\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": true,\n                        \"field_options\": []\n                    },\n                    {\n                        \"id\": 2,\n                        \"type\": \"Fields::Switch\",\n                        \"order\": 10,\n                        \"suborder\": 1,\n                        \"title\": \"Switch\",\n                        \"code\": \"field_2\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Check\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 1,\n                        \"type\": \"Fields::Checkbox\",\n                        \"order\": 11,\n                        \"suborder\": 1,\n                        \"title\": \"Checkbok\",\n                        \"code\": \"field_1\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Check\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 6,\n                        \"type\": \"Fields::Table\",\n                        \"order\": 12,\n                        \"suborder\": 1,\n                        \"title\": \"Tabla\",\n                        \"code\": \"field_6\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Table\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    }\n                ]\n            },\n            {\n                \"id\": 2,\n                \"workflow_id\": 1,\n                \"order\": 5,\n                \"name\": \"Formulario 3.4 - Paso 2\",\n                \"code\": \"form_2\",\n                \"custom\": false,\n                \"fields\": []\n            }\n        ],\n        \"workflows\": [\n            {\n                \"id\": 2,\n                \"utility_id\": 1,\n                \"order\": 2,\n                \"name\": \"Formulario 3.4.2\",\n                \"code\": \"workflow_3_4_2\"\n            },\n            {\n                \"id\": 3,\n                \"utility_id\": 1,\n                \"order\": 3,\n                \"name\": \"Formulario 3.4.3\",\n                \"code\": \"workflow_3_4_3\"\n            }\n        ],\n        \"is_general_project\": false\n    },\n    {\n        \"name\": \"Proyecto instalación general de gas\",\n        \"forms\": [],\n        \"workflows\": [\n            {\n                \"id\": 5,\n                \"utility_id\": 1,\n                \"order\": 5,\n                \"name\": \"Formulario 3.4.2 General\",\n                \"code\": \"workflow_3_4_2_general\"\n            },\n            {\n                \"id\": 6,\n                \"utility_id\": 1,\n                \"order\": 6,\n                \"name\": \"Formulario 3.4.3 General\",\n                \"code\": \"workflow_3_4_3_general\"\n            }\n        ],\n        \"is_general_project\": true\n    }\n]"}],"_postman_id":"a66139ad-89df-460f-9705-a834cb99062a"}],"id":"0616853d-6d5a-45f4-bfc1-e0f458c27ec7","_postman_id":"0616853d-6d5a-45f4-bfc1-e0f458c27ec7","description":""},{"name":"Workflows","item":[{"name":"Index","id":"c26c76b2-2934-4b08-b46b-40e7309403d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","name":"Content-Type","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Content-Type","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/workflows","urlObject":{"path":["backoffice_api","v1","workflows"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"947319a0-38a3-441b-bd90-7e65355f5946","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","name":"Content-Type","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"44baf0628b1a65c15f40b95a4aea8232\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"37d20d3b-37f2-4049-8eba-b79f7558cb78"},{"key":"X-Runtime","value":"0.050787"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"utility_id\": 1,\n        \"order\": 1,\n        \"name\": \"Formulario 3.4\",\n        \"code\": \"workflow_3_4\"\n    },\n    {\n        \"id\": 2,\n        \"utility_id\": 1,\n        \"order\": 2,\n        \"name\": \"Formulario 3.4.2\",\n        \"code\": \"workflow_3_4_2\"\n    },\n    {\n        \"id\": 3,\n        \"utility_id\": 1,\n        \"order\": 3,\n        \"name\": \"Formulario 3.4.3\",\n        \"code\": \"workflow_3_4_3\"\n    }\n]"}],"_postman_id":"c26c76b2-2934-4b08-b46b-40e7309403d7"},{"name":"Show","id":"3307865f-408a-4ed9-96ee-dbf261283908","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflows/{{workflow-id}}","urlObject":{"path":["backoffice_api","v1","workflows","{{workflow-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"f36fa7d3-5987-48df-b9d2-967db4966d91","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflows/{{workflow-id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"utility_id\": 1,\n    \"order\": 1,\n    \"name\": \"Formulario 3.4\",\n    \"code\": \"workflow_3_4\",\n    \"forms\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"order\": 4,\n            \"name\": \"Formulario 3.4 - Paso 1\",\n            \"code\": \"form_1\",\n            \"custom\": false,\n            \"fields\": [\n                {\n                    \"id\": 3,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 1,\n                    \"suborder\": 1,\n                    \"title\": \"Dirección\",\n                    \"code\": \"field_3\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"direction\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 4,\n                    \"type\": \"Fields::Image\",\n                    \"order\": 2,\n                    \"suborder\": 1,\n                    \"title\": \"Foto de la factura\",\n                    \"code\": \"field_4\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"photo\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 5,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 3,\n                    \"suborder\": 1,\n                    \"title\": \"Campo Requerido\",\n                    \"code\": \"field_5\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": \"Campo requerido!\",\n                    \"key\": \"required\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 6,\n                    \"type\": \"Fields::Rating\",\n                    \"order\": 4,\n                    \"suborder\": 1,\n                    \"title\": \"Satisfacción\",\n                    \"code\": \"field_6\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"rating\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Carita feliz\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.498-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.504-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_1\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Carita triste\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.509-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.514-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_2\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"type\": \"Fields::Checklist\",\n                    \"order\": 5,\n                    \"suborder\": 1,\n                    \"title\": \"Listado\",\n                    \"code\": \"field_7\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"list\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 3,\n                            \"name\": \"Check 1\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.558-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.562-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_3\"\n                        },\n                        {\n                            \"id\": 4,\n                            \"name\": \"Check 2\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.567-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.571-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_4\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"type\": \"Fields::AutoComplete\",\n                    \"order\": 6,\n                    \"suborder\": 1,\n                    \"title\": \"External Field Options\",\n                    \"code\": \"field_8\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"external_options\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": true,\n                    \"field_options\": []\n                },\n                {\n                    \"id\": 2,\n                    \"type\": \"Fields::Switch\",\n                    \"order\": 10,\n                    \"suborder\": 1,\n                    \"title\": \"Switch\",\n                    \"code\": \"field_2\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 1,\n                    \"type\": \"Fields::Checkbox\",\n                    \"order\": 11,\n                    \"suborder\": 1,\n                    \"title\": \"Checkbok\",\n                    \"code\": \"field_1\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"order\": 5,\n            \"name\": \"Formulario 3.4 - Paso 2\",\n            \"code\": \"form_2\",\n            \"custom\": false,\n            \"fields\": []\n        }\n    ]\n}"}],"_postman_id":"3307865f-408a-4ed9-96ee-dbf261283908"}],"id":"35dbd479-959e-483c-9db0-f2b39b0be497","_postman_id":"35dbd479-959e-483c-9db0-f2b39b0be497","description":""},{"name":"Field Options","item":[{"name":"Index","id":"179f5d45-7876-4705-99c5-a97de4bcdb71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/fields/8/field_options","description":"<p>Get external field options for a given field</p>\n","urlObject":{"path":["backoffice_api","v1","fields","8","field_options"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3c09e80f-eb5a-413b-be25-7c15be1865be","name":"Index - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/fields/6789/field_options"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"19904843-1491-4677-bb45-0f8071a65abb"},{"key":"X-Runtime","value":"0.018486"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"aa16151e-8919-4789-924f-ae42ecdbdcbc","name":"Index - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/fields/1/field_options"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0d1feed9-b5bd-4f71-9760-d838ad32bfc1"},{"key":"X-Runtime","value":"0.019633"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"no_external_field_options\",\n            \"message\": \"El Field no tiene field options externos\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"d4b872bf-44bc-4f12-b90e-866faffbc954","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/fields/8/field_options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bd369d7c-941e-4f56-936b-206457f592d6"},{"key":"X-Runtime","value":"0.039277"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": null,\n        \"field_id\": null,\n        \"name\": \"La Plata\",\n        \"order\": 1,\n        \"code\": null,\n        \"parent_field_option_id\": null,\n        \"value\": \"1\",\n        \"configuration\": {}\n    },\n    {\n        \"id\": null,\n        \"field_id\": null,\n        \"name\": \"Ensenada\",\n        \"order\": 2,\n        \"code\": null,\n        \"parent_field_option_id\": null,\n        \"value\": \"2\",\n        \"configuration\": {}\n    }\n]"},{"id":"e1b688d9-0e4c-4ff6-9fff-bd717ff1e340","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/fields/8/field_options"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bd369d7c-941e-4f56-936b-206457f592d6"},{"key":"X-Runtime","value":"0.039277"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"4616fcc6-633e-4a83-8994-cd11bdd71ccf\",\n    \"url\": \"http://localhost:3000/async_request/jobs/4616fcc6-633e-4a83-8994-cd11bdd71ccf\"\n}"}],"_postman_id":"179f5d45-7876-4705-99c5-a97de4bcdb71"}],"id":"b0418b12-2c9b-45e2-b83e-0be2ecbe242a","event":[{"listen":"prerequest","script":{"id":"7314f327-ae3a-471b-9d8f-089a460315b5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"307126d1-af7a-471a-9fe8-db246925f224","type":"text/javascript","exec":[""]}}],"_postman_id":"b0418b12-2c9b-45e2-b83e-0be2ecbe242a","description":""},{"name":"Project Responses","item":[{"name":"Index","id":"0f8d80a1-f0bb-44fb-8d0b-90d811600418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses?page=1&page_size=10&order_by=last_workflow_client_approval_at&order_sort=desc&project_number=63635&home_improvement_project=false&owner_name=Juan%20Perez&owner_document_type=dni&owner_document_number=23567897&owner_address=Juncal 984&owner_city=Bahía%20Blanca&status=pending&statuses[]=pending&statuses[]=closed&status_group=final_inspection_rejected&pipes=true&service=false","urlObject":{"path":["backoffice_api","v1","project_responses"],"host":["{{base-api-url}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>optional. Possible values: status, owner_address, owner_city, owner_document_type, owner_document_number, project_number, started_at, owner_name, external_id, pipes, service, project_type, last_workflow_client_approval_at</p>\n","type":"text/plain"},"key":"order_by","value":"last_workflow_client_approval_at"},{"description":{"content":"<p>optional. Possible values: asc, desc</p>\n","type":"text/plain"},"key":"order_sort","value":"desc"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"project_number","value":"63635"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"home_improvement_project","value":"false"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_name","value":"Juan%20Perez"},{"description":{"content":"<p>optional. Possible values: dni</p>\n","type":"text/plain"},"key":"owner_document_type","value":"dni"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_document_number","value":"23567897"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_address","value":"Juncal 984"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_city","value":"Bahía%20Blanca"},{"description":{"content":"<p>optional. Possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed</p>\n","type":"text/plain"},"key":"status","value":"pending"},{"description":{"content":"<p>optional. Array with possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed</p>\n","type":"text/plain"},"key":"statuses[]","value":"pending"},{"key":"statuses[]","value":"closed"},{"description":{"content":"<p>optional. Possible values: in_progress, feasibility_observed, partial_inspection_rejected, final_inspection_rejected</p>\n","type":"text/plain"},"key":"status_group","value":"final_inspection_rejected"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"pipes","value":"true"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"service","value":"false"}],"variable":[]}},"response":[{"id":"cecfa29d-a67f-49ba-b492-83960cfed7ec","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/backoffice_api/v1/project_responses","host":["{{base-api-url}}"],"path":["backoffice_api","v1","project_responses"],"query":[{"key":"page","value":"1","description":"optional","disabled":true},{"key":"page_size","value":"10","description":"optional","disabled":true},{"key":"order_by","value":"status","description":"optional. Possible values: status, owner_address, owner_city, owner_document_type, owner_document_number, project_number, started_at, owner_name","disabled":true},{"key":"order_sort","value":"desc","description":"optional. Possible values: asc, desc","disabled":true},{"key":"project_number","value":"63635","description":"optional","disabled":true},{"key":"home_improvement_project","value":"false","description":"optional. Possible values: true, false","disabled":true},{"key":"owner_name","value":"Juan%20Perez","description":"optional","disabled":true},{"key":"owner_document_type","value":"dni","description":"optional. Possible values: dni","disabled":true},{"key":"owner_document_number","value":"23567897","description":"optional","disabled":true},{"key":"owner_address","value":"Juncal 984","description":"optional","disabled":true},{"key":"owner_city","value":"Bahía%20Blanca","description":"optional","disabled":true},{"key":"status","value":"pending","description":"optional. Possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed","disabled":true},{"key":"statuses[]","value":"pending","description":"optional. Array with possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed","disabled":true},{"key":"statuses[]","value":"closed","disabled":true},{"key":"pipes","value":"true","description":"optional. Possible values: true, false","disabled":true},{"key":"service","value":"false","description":"optional. Possible values: true, false","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": \"100\",\n    \"data\": [\n        {\n            \"external_id\": \"123456\",\n            \"project_number\": \"4568765\",\n            \"status\": \"pending\",\n            \"status_label\": \"Nuevo\",\n            \"general_project_response_id\": null,\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"incomplete\": true,\n            \"cancellable\": true,\n            \"editable\": true,\n            \"can_create_workflow_3_4\": false,\n            \"can_create_workflow_3_5_partial\": false,\n            \"can_create_workflow_3_5_final\": false,\n            \"can_create_workflow_3_5_partial_reconnection\": false,\n            \"can_create_workflow_3_5_final_reconnection\": false,\n            \"can_disable\": false,\n            \"can_mark_as_seen\": false,\n            \"last_workflow_client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n            \"input_values\": {\n                \"AGAccountId\": \"003467754\",\n                \"ProjectType\": \"Ampliacion\",\n                \"HomeImprovementProject\": false,\n                \"OwnerCuit\": null,\n                \"OwnerFirstName\": \"Juan\",\n                \"OwnerLastName\": \"Perez\",\n                \"OwnerDocumentType\": \"DNI\",\n                \"OwnerDocumentNumber\": \"23567897\",\n                \"OwnerStreet\": \"Juncal\",\n                \"OwnerStreetNumber\": \"984\",\n                \"OwnerFloor\": \"2\",\n                \"OwnerApartment\": \"A\",\n                \"OwnerTower\": \"Golf\",\n                \"OwnerCity\": \"001\",\n                \"OwnerBetweenStreet1\": \"Belgrano\",\n                \"OwnerBetweenStreet2\": \"Larrea\",\n                \"MainPipe\": true,\n                \"SupplyPossibility\": true,\n                \"OwnerPhone\": {\n                    \"OwnerPhoneAreaCode\": \"11\",\n                    \"OwnerPhoneNumber\": \"45675788\"\n                },\n                \"OwnerPhoneType\": \"CELULAR\",\n                \"OwnerEmail\": \"juan_perez@example.com\",\n                \"IsFunctionalUnit\": null,\n                \"HasPipeModification\": null\n            },\n            \"id\": 1\n        }\n    ]\n}"},{"id":"e3118ff8-5b31-4933-872c-5a27881e1095","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/backoffice_api/v1/project_responses","host":["{{base-api-url}}"],"path":["backoffice_api","v1","project_responses"],"query":[{"key":"page","value":"1","description":"optional","disabled":true},{"key":"page_size","value":"10","description":"optional","disabled":true},{"key":"order_by","value":"status","description":"optional. Possible values: status, owner_address, owner_city, owner_document_type, owner_document_number, project_number, started_at, owner_name","disabled":true},{"key":"order_sort","value":"desc","description":"optional. Possible values: asc, desc","disabled":true},{"key":"project_number","value":"63635","description":"optional","disabled":true},{"key":"home_improvement_project","value":"false","description":"optional. Possible values: true, false","disabled":true},{"key":"owner_name","value":"Juan%20Perez","description":"optional","disabled":true},{"key":"owner_document_type","value":"dni","description":"optional. Possible values: dni","disabled":true},{"key":"owner_document_number","value":"23567897","description":"optional","disabled":true},{"key":"owner_address","value":"Juncal 984","description":"optional","disabled":true},{"key":"owner_city","value":"Bahía%20Blanca","description":"optional","disabled":true},{"key":"status","value":"pending","description":"optional. Possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed","disabled":true},{"key":"statuses[]","value":"pending","description":"optional. Array with possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed","disabled":true},{"key":"statuses[]","value":"closed","disabled":true},{"key":"pipes","value":"true","description":"optional. Possible values: true, false","disabled":true},{"key":"service","value":"false","description":"optional. Possible values: true, false","disabled":true}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"5f2ccba4-324f-4c42-9d14-39900b3faa5a"},{"key":"X-Runtime","value":"0.041493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"b0d97ba6-29b1-4652-8c74-bf3828c91bd9\",\n    \"url\": \"http://localhost:3000/async_request/jobs/b0d97ba6-29b1-4652-8c74-bf3828c91bd9\"\n}"}],"_postman_id":"0f8d80a1-f0bb-44fb-8d0b-90d811600418"},{"name":"Show","id":"fed52765-d3d7-4fe0-8e75-e2db80a2fbd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project-response-id}}","urlObject":{"path":["backoffice_api","v1","project_responses","{{project-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"474577a9-2ba6-4f1b-9a47-bb021951d297","name":"202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ec80b7e6-3488-4762-ab9d-541d78a82708"},{"key":"X-Runtime","value":"0.062334"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"1948ab7d-eb3a-4a4e-9d43-972f0652747d\",\n    \"url\": \"http://localhost:3000/async_request/jobs/1948ab7d-eb3a-4a4e-9d43-972f0652747d\"\n}"},{"id":"9e8e5c2a-8797-4748-9ec0-bac28c560fde","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ec80b7e6-3488-4762-ab9d-541d78a82708"},{"key":"X-Runtime","value":"0.062334"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"user_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_number\": \"4568765\",\n    \"status\": \"pending\",\n    \"status_label\": \"Nuevo\",\n    \"last_snapshot_id\": \"1234\",\n    \"input_values\": {\n        \"AGAccountId\": \"003467754\",\n        \"ProjectType\": \"Ampliacion\",\n        \"HomeImprovementProject\": false,\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"IsFunctionalUnit\": null,\n        \"HasPipeModification\": null,\n        \"MeterNumber\": 123456\n    },\n    \"cancellable\": true,\n    \"editable\": true,\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"can_create_workflow_3_4\": false,\n    \"can_create_workflow_3_5_partial\": true,\n    \"can_create_workflow_3_5_final\": true,\n    \"can_create_workflow_3_5_partial_reconnection\": false,\n    \"can_create_workflow_3_5_final_reconnection\": false,\n    \"can_disable\": false,\n    \"can_mark_as_seen\": false,\n    \"initial_workflow_id\": 1,\n    \"last_workflow_client_approval_at\": null,\n    \"general_project_response_id\": null,\n    \"workflow_responses\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"external_id\": \"123456\",\n            \"project_response_id\": 1,\n            \"workflow_name\": \"Formulario 3.4\",\n            \"status\": \"pending\",\n            \"status_label\": \"Trámite pendiente de enviar\",\n            \"incomplete\": true,\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"claimable\": false,\n            \"discharge_comment\": \"Pedido de revisión de trámite\",\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": null,\n            \"visit_information\": null,\n            \"client_approval_at\": null,\n            \"can_rectify\": true,\n            \"snapshot_id\": \"1234\"\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"external_id\": \"563456\",\n            \"project_response_id\": 1,\n            \"workflow_name\": \"Formulario 3.4\",\n            \"status\": \"observed\",\n            \"status_label\": \"Trámite observado\",\n            \"incomplete\": false,\n            \"started_at\": \"2019-03-20T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"claimable\": false,\n            \"discharge_comment\": null,\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": null,\n            \"visit_information\": null,\n            \"client_approval_at\": null,\n            \"can_rectify\": true,\n            \"snapshot_id\": \"1234\"\n        }\n    ]\n}"}],"_postman_id":"fed52765-d3d7-4fe0-8e75-e2db80a2fbd1"},{"name":"Update","id":"4af196be-7408-4fd4-83de-61a5734ea4e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"18125\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project-response-id}}","urlObject":{"path":["backoffice_api","v1","project_responses","{{project-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"4a2359e2-5486-45ac-a1d9-cf4ed7e5871e","name":"202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"12345\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0c086fee-0c65-4a77-b05b-a0adb369ab07"},{"key":"X-Runtime","value":"0.040172"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"775840d1-2887-4299-9455-26094120205a\",\n    \"url\": \"http://localhost:3000/async_request/jobs/775840d1-2887-4299-9455-26094120205a\"\n}"},{"id":"a7a47da6-27a3-4664-955f-bccd46390768","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"10123\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0c086fee-0c65-4a77-b05b-a0adb369ab07"},{"key":"X-Runtime","value":"0.040172"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Proyecto actualizado correctamente.\",\n    \"project_response\": {\n        \"id\": 1,\n        \"user_id\": 1,\n        \"external_id\": \"123456\",\n        \"project_number\": \"4568765\",\n        \"status\": \"closed\",\n        \"status_label\": \"Cerrado\",\n        \"input_values\": {\n            \"AGAccountId\": null,\n            \"ProjectType\": \"Nuevo\",\n            \"HomeImprovementProject\": false,\n            \"IsFunctionalUnit\": null,\n            \"HasPipeModification\": null,\n            \"OwnerCuit\": null,\n            \"OwnerCity\": \"001\",\n            \"OwnerFirstName\": \"Juan\",\n            \"OwnerLastName\": \"Perez\",\n            \"OwnerAddress\": \"Juncal 984\",\n            \"OwnerDocumentNumber\": \"23567897\",\n            \"OwnerDocumentType\": \"DNI\",\n            \"OwnerStreet\": \"Juncal\",\n            \"OwnerStreetNumber\": \"984\",\n            \"OwnerFloor\": \"2\",\n            \"OwnerApartment\": \"A\",\n            \"OwnerTower\": \"Golf\",\n            \"OwnerBetweenStreet1\": \"Belgrano\",\n            \"OwnerBetweenStreet2\": \"Larrea\",\n            \"MainPipe\": true,\n            \"SupplyPossibility\": true,\n            \"OwnerPhone\": {\n                \"OwnerPhoneAreaCode\": \"11\",\n                \"OwnerPhoneNumber\": \"45675788\"\n            },\n            \"OwnerPhoneType\": \"CELULAR\",\n            \"OwnerEmail\": \"juan_perez@example.com\"\n        },\n        \"cancellable\": true,\n        \"editable\": true,\n        \"incomplete\": true,\n        \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"can_create_workflow_3_4\": false,\n        \"can_create_workflow_3_5_partial\": true,\n        \"can_create_workflow_3_5_final\": true,\n        \"can_create_workflow_3_5_partial_reconnection\": false,\n        \"can_create_workflow_3_5_final_reconnection\": false,\n        \"can_disable\": false,\n        \"can_mark_as_seen\": false,\n        \"initial_workflow_id\": 1,\n        \"last_workflow_client_approval_at\": null\n    }\n}"}],"_postman_id":"4af196be-7408-4fd4-83de-61a5734ea4e0"},{"name":"History","id":"6091420d-eeb6-47e7-84ec-9c9bcb14677d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project-response-id}}/history","urlObject":{"path":["backoffice_api","v1","project_responses","{{project-response-id}}","history"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"09dc7035-4fe5-4ed4-aec9-b123dcecbf2a","name":"202 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/history"},"status":"OK","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7299217b-8793-4e09-93d3-b016d30913eb"},{"key":"X-Runtime","value":"0.040026"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"order\": 1,\n        \"updated_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"status_label\": \"Abierto\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null,\n        \"snapshot_id\": 1\n    },\n    {\n        \"order\": 2,\n        \"updated_at\": \"2019-03-30T14:20:55.000-03:00\",\n        \"status_label\": \"En curso\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null,\n        \"snapshot_id\": null\n    },\n    {\n        \"order\": 3,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Inspección parcial en curso\",\n        \"observations\": null,\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\",\n        \"snapshot_id\": 3\n    },\n    {\n        \"order\": 4,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Rechazado\",\n        \"observations\": \"Faltó definir altura de la calle\",\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\",\n        \"snapshot_id\": null\n    }\n]"},{"id":"d6acd8c6-edb7-43f7-8072-2471cbe013de","name":"202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/history"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7299217b-8793-4e09-93d3-b016d30913eb"},{"key":"X-Runtime","value":"0.040026"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"892520f6-a868-4afb-97c5-c80bd775db4d\",\n    \"url\": \"http://localhost:3000/async_request/jobs/892520f6-a868-4afb-97c5-c80bd775db4d\"\n}"}],"_postman_id":"6091420d-eeb6-47e7-84ec-9c9bcb14677d"},{"name":"Disable","id":"22ca362a-b0a6-4a2a-ac36-84709d84c1e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project-response-id}}/disable","urlObject":{"path":["backoffice_api","v1","project_responses","{{project-response-id}}","disable"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"6e0489e8-67ac-45b1-b33f-aafb779a5e9e","name":"Disable - 404 Not found","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/disable"},"status":"Not Found","code":404,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d8a18fe6-b383-4302-846e-8a36ba7322a4"},{"key":"X-Runtime","value":"0.015412"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"c4cf10ab-948e-47c1-aa83-7e54b4bb59df","name":"Disable - 200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/disable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"88d52158-85cc-46c0-8319-df7224c7d1b1"},{"key":"X-Runtime","value":"0.112970"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Proyecto bloqueado correctamente.\"\n}"},{"id":"e7bb1820-2f67-4f2d-9947-e32fd17e93f8","name":"Disable - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/disable"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"88d52158-85cc-46c0-8319-df7224c7d1b1"},{"key":"X-Runtime","value":"0.112970"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"c253632c-756e-48de-9d9f-52aa96ab8553\",\n    \"url\": \"http://localhost:3000/async_request/jobs/c253632c-756e-48de-9d9f-52aa96ab8553\"\n}"}],"_postman_id":"22ca362a-b0a6-4a2a-ac36-84709d84c1e3"},{"name":"Snapshot","id":"98bbc772-b03c-46d4-a39c-3974566e3a6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/snapshot/123456","urlObject":{"path":["backoffice_api","v1","project_responses","1","snapshot","123456"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"2403e510-cff7-42fc-9c3c-5742caa00db2","name":"Snapshot - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/snapshot/123456"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d771f967-11ad-4d66-8985-4cee483f1b64"},{"key":"X-Runtime","value":"0.035500"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"input_values\": {\n        \"ProjectType\": \"Ampliacion\",\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"HomeImprovementProject\": true,\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"InstallationType\": null,\n        \"HasPipeModification\": null,\n        \"MeterNumber\": 123456\n    },\n    \"workflow_response\": {\n        \"workflow_id\": 1,\n        \"form_responses\": [\n            {\n                \"input_values\": {\n                    \"CANTIDAD_INSTALACIONES\": \"3\",\n                    \"CANTIDAD_TOMAS\": \"5\",\n                    \"TIPO_DE_USO\": \"xxxxx\",\n                    \"TIPO_DE_PLANO\": \"triangular\",\n                    \"CALLE_1\": \"xxxx\",\n                    \"CALLE_2\": \"xxxx\",\n                    \"CALLE_3\": \"xxxx\",\n                    \"CALLE_4\": \"xxxx\",\n                    \"DISTANCIA_COTA_A\": \"70\",\n                    \"DISTANCIA_COTA_B\": \"50\",\n                    \"NUM_VECINO_IZQ\": \"345\",\n                    \"NUM_VECINO_DER\": \"12\",\n                    \"OBSERVACIONES\": \"xxxxxx\"\n                }\n            },\n            {\n                \"input_values\": {\n                    \"CANTIDAD_INSTALACIONES\": \"3\",\n                    \"CANTIDAD_TOMAS\": \"5\",\n                    \"TIPO_DE_USO\": \"xxxxx\",\n                    \"TIPO_DE_PLANO\": \"triangular\",\n                    \"CALLE_1\": \"xxxx\",\n                    \"CALLE_2\": \"xxxx\",\n                    \"CALLE_3\": \"xxxx\",\n                    \"CALLE_4\": \"xxxx\",\n                    \"DISTANCIA_COTA_A\": \"70\",\n                    \"DISTANCIA_COTA_B\": \"50\",\n                    \"NUM_VECINO_IZQ\": \"345\",\n                    \"NUM_VECINO_DER\": \"12\",\n                    \"OBSERVACIONES\": \"xxxxxx\"\n                }\n            }\n        ]\n    }\n}"},{"id":"2d70f712-c05b-47f8-8093-997a8bd110a2","name":"Snapshot - 202 accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/snapshot/123456"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d771f967-11ad-4d66-8985-4cee483f1b64"},{"key":"X-Runtime","value":"0.035500"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"39237acb-eb22-4df0-bc48-ba684833f62d\",\n    \"url\": \"http://localhost:3000/async_request/jobs/39237acb-eb22-4df0-bc48-ba684833f62d\"\n}"},{"id":"72b81401-fb0d-4c77-8034-f968aa72adc5","name":"Snapshot - 404 Not found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/snapshot/123456"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"61239ea7-5854-4d1e-9cbe-9b7ccebda806"},{"key":"X-Runtime","value":"0.030166"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 404,\n            \"code\": \"utility_error\",\n            \"message\": \"Snapshot inexistente.\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"98bbc772-b03c-46d4-a39c-3974566e3a6a"},{"name":"Docket","id":"d5e2b372-ccbb-4332-b3a5-9d70fafc7681","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/:project_response_id/docket","urlObject":{"path":["backoffice_api","v1","project_responses",":project_response_id","docket"],"host":["{{base-api-url}}"],"query":[],"variable":[{"type":"any","value":"1","key":"project_response_id"}]}},"response":[],"_postman_id":"d5e2b372-ccbb-4332-b3a5-9d70fafc7681"},{"name":"Resolve Unassign","id":"f6a92157-d78f-4c02-a2af-ab771d281189","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"backoffice_rejected_unassignment\",\n    \"observation\": \"Motivo de rechazo.\",\n    \"backoffice_username\": \"Backoffice Username\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project_response_id}}/resolve_unassign","description":"<p>Possible values for <code>status</code>: <code>backoffice_approved_unassignment</code>, <code>backoffice_rejected_unassignment</code>.</p>\n<p>If status is rejection, <code>observation</code> becomes required.</p>\n","urlObject":{"path":["backoffice_api","v1","project_responses","{{project_response_id}}","resolve_unassign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3297c01e-0f15-405c-a355-9e5d9f18a4a7","name":"Resolve Unassign - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjMsInZlcmlmaWNhdGlvbl9jb2RlIjoiUmFuQThvWG54Z3l4bXFrNUQzWXNMMldKRXVUOXdYVm15bkZWQi1MQnhzekZwNTY4NTF6QVY3dlE5emY1OVl4cyIsInJlbmV3X2lkIjoiVDdXVGRRTlgxSzVZZUxxTWZNbkNiQlplSkViQmNqeFoiLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNjg2MTU4NDIzLCJleHBpcmF0aW9uX2RhdGUiOjE2ODMxMzQ0MjMsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNjUxNjg0ODIzfQ.bhTOEImbV69fWSmRPrrAhVnu005Ytb0Gs7H8DmW_-J4","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"backoffice_approved_unassignment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/2/resolve_unassign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b4bd709d-8c3c-44b1-84c4-5e7c6a55444d"},{"key":"X-Runtime","value":"0.264976"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"3513db5a-7167-4dc6-bf48-5684c795c45f\",\n    \"url\": \"http://localhost:3000/async_request/jobs/3513db5a-7167-4dc6-bf48-5684c795c45f\"\n}"},{"id":"e653b655-d1e1-4c2d-ba14-683447f89f3f","name":"Resolve Unassign - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjMsInZlcmlmaWNhdGlvbl9jb2RlIjoiUmFuQThvWG54Z3l4bXFrNUQzWXNMMldKRXVUOXdYVm15bkZWQi1MQnhzekZwNTY4NTF6QVY3dlE5emY1OVl4cyIsInJlbmV3X2lkIjoiVDdXVGRRTlgxSzVZZUxxTWZNbkNiQlplSkViQmNqeFoiLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNjg2MTU4NDIzLCJleHBpcmF0aW9uX2RhdGUiOjE2ODMxMzQ0MjMsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNjUxNjg0ODIzfQ.bhTOEImbV69fWSmRPrrAhVnu005Ytb0Gs7H8DmW_-J4","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"backoffice_approved_unassignment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/0/resolve_unassign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d39cd1dd-27c5-4398-82af-e3fe130eac46"},{"key":"X-Runtime","value":"0.008450"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"891de15f-86ad-4c51-9050-b2e78cb40638","name":"Resolve Unassign - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjMsInZlcmlmaWNhdGlvbl9jb2RlIjoiUmFuQThvWG54Z3l4bXFrNUQzWXNMMldKRXVUOXdYVm15bkZWQi1MQnhzekZwNTY4NTF6QVY3dlE5emY1OVl4cyIsInJlbmV3X2lkIjoiVDdXVGRRTlgxSzVZZUxxTWZNbkNiQlplSkViQmNqeFoiLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNjg2MTU4NDIzLCJleHBpcmF0aW9uX2RhdGUiOjE2ODMxMzQ0MjMsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNjUxNjg0ODIzfQ.bhTOEImbV69fWSmRPrrAhVnu005Ytb0Gs7H8DmW_-J4","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1/resolve_unassign"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"039b3b80-05a8-49cc-b1a2-fe90592263d4"},{"key":"X-Runtime","value":"0.020595"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: status\"\n        }\n    ]\n}"}],"_postman_id":"f6a92157-d78f-4c02-a2af-ab771d281189"},{"name":"Resolve Assign","id":"835d1962-bec4-416e-93a7-8710cbbb0462","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"backoffice_rejected_unassignment\",\n    \"observation\": \"Motivo de rechazo.\",\n    \"backoffice_username\": \"Anakin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project_response_id}}/resolve_assign","description":"<p>Possible values for <code>status</code>: <code>backoffice_approved_unassignment</code>, <code>backoffice_rejected_unassignment</code>.</p>\n<p>If status is rejection, <code>observation</code> becomes required.</p>\n","urlObject":{"path":["backoffice_api","v1","project_responses","{{project_response_id}}","resolve_assign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"835d1962-bec4-416e-93a7-8710cbbb0462"},{"name":"Reason","id":"59ea3d4a-c7e2-427d-9945-65e826435c0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"backoffice_rejected_unassignment\",\n    \"observation\": \"Motivo de rechazo.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project_response_id}}/reason","description":"<p>Possible values for <code>status</code>: <code>backoffice_approved_unassignment</code>, <code>backoffice_rejected_unassignment</code>.</p>\n<p>If status is rejection, <code>observation</code> becomes required.</p>\n","urlObject":{"path":["backoffice_api","v1","project_responses","{{project_response_id}}","reason"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59ea3d4a-c7e2-427d-9945-65e826435c0b"},{"name":"Association","id":"0b5d3027-644a-487c-82f5-8d538ccb97ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"body":{"mode":"raw","raw":"{\n  \"project_response_external_id\": 4,\n  \"project_number\": 1234,\n  \"owner_city_id\": 3,\n  \"associate\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{general-project-response-id}}/association","urlObject":{"path":["backoffice_api","v1","project_responses","{{general-project-response-id}}","association"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b5d3027-644a-487c-82f5-8d538ccb97ae"},{"name":"Confirm","id":"2a14dba5-c754-4050-a61a-8894c59eb6fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"body":{"mode":"raw","raw":"{\n  \"project_response_external_id\": 4,\n  \"project_number\": 1234,\n  \"owner_city_id\": 3,\n  \"associate\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project-response-id}}/confirm","urlObject":{"path":["backoffice_api","v1","project_responses","{{project-response-id}}","confirm"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a14dba5-c754-4050-a61a-8894c59eb6fd"},{"name":"Delete","id":"59e1f726-7606-482e-a388-07ee6daa526f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/{{project-response-id}}","urlObject":{"path":["backoffice_api","v1","project_responses","{{project-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"ede515cb-b347-4441-b83e-904d40662adf","name":"202 Accepted","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6a6f10a3-a85d-49ea-bde1-30cf98669779"},{"key":"X-Runtime","value":"0.583558"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"55e35763-ce41-4dec-aef5-ca27326500ec\",\n    \"url\": \"http://localhost:3000/async_request/jobs/55e35763-ce41-4dec-aef5-ca27326500ec\"\n}"},{"id":"181f3fbb-7306-4658-86dc-080e2fc021e7","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/project_responses/1"},"status":"OK","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6a6f10a3-a85d-49ea-bde1-30cf98669779"},{"key":"X-Runtime","value":"0.583558"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Proyecto cancelado correctamente.\"\n}"}],"_postman_id":"59e1f726-7606-482e-a388-07ee6daa526f"}],"id":"8789cd21-1eba-4a31-9bc5-16104187cd1f","_postman_id":"8789cd21-1eba-4a31-9bc5-16104187cd1f","description":""},{"name":"Workflow Responses","item":[{"name":"Index","id":"083b1e3a-518e-4f53-a286-8440be543f46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses?project_number=546800001&home_improvement_project=true&owner_name=Juan%20Perez&owner_document_type=dni&owner_document_number=20123456&owner_address=Juncal 984&owner_city=Bahía%20Blanca&status=pending&page=1&page_size=10&order_by=status&order_sort=desc&status_group=completed&statuses[]=pending&statuses[]=sent&workflow_id=1&pipes=true&service=false","urlObject":{"path":["backoffice_api","v1","workflow_responses"],"host":["{{base-api-url}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"project_number","value":"546800001"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"home_improvement_project","value":"true"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_name","value":"Juan%20Perez"},{"description":{"content":"<p>optional. Possible values: dni</p>\n","type":"text/plain"},"key":"owner_document_type","value":"dni"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_document_number","value":"20123456"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_address","value":"Juncal 984"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_city","value":"Bahía%20Blanca"},{"description":{"content":"<p>optional. Possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed, approved_under_review, approved_with_deadline_under_review</p>\n","type":"text/plain"},"key":"status","value":"pending"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>optional. Possible values: status, owner_address, owner_city, owner_document_type, owner_document_number, project_number, started_at, owner_name, external_id, pipes, service</p>\n","type":"text/plain"},"key":"order_by","value":"status"},{"description":{"content":"<p>optional. Possible values: asc, desc</p>\n","type":"text/plain"},"key":"order_sort","value":"desc"},{"description":{"content":"<p>optional. Possible values: in_progress, completed</p>\n","type":"text/plain"},"key":"status_group","value":"completed"},{"description":{"content":"<p>optional. Array with possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed, approved_under_review, approved_with_deadline_under_review</p>\n","type":"text/plain"},"key":"statuses[]","value":"pending"},{"key":"statuses[]","value":"sent"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"workflow_id","value":"1"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"pipes","value":"true"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"service","value":"false"}],"variable":[]}},"response":[{"id":"171f2388-11cc-4411-a0c7-eb1213b8105a","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"168e30d0-d1c3-48d8-a986-84fdea893398"},{"key":"X-Runtime","value":"0.078471"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"de9cec1d-865f-4cda-b4d8-f467a77c61ef\",\n    \"url\": \"http://localhost:3000/async_request/jobs/de9cec1d-865f-4cda-b4d8-f467a77c61ef\"\n}"},{"id":"a768afd9-81f8-4bd0-a94e-27a8fb2d09ac","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"168e30d0-d1c3-48d8-a986-84fdea893398"},{"key":"X-Runtime","value":"0.078471"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": \"100\",\n    \"data\": [\n        {\n            \"project_response_id\": 1,\n            \"workflow_id\": 1,\n            \"external_id\": 123456,\n            \"status\": \"pending\",\n            \"status_label\": \"Trámite pendiente de enviar\",\n            \"incomplete\": true,\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"claimable\": false,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"discharge_comment\": \"Pedido de revisión de trámite\",\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": \"Martin Gonzalez\",\n            \"visit_information\": null,\n            \"fees_and_charges\": {\n                \"applicable\": true,\n                \"details\": [\n                    702,\n                    703\n                ]\n            },\n            \"client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n            \"id\": 1,\n            \"workflow_name\": \"Formulario 3.4\"\n        },\n        {\n            \"project_response_id\": 1,\n            \"workflow_id\": 1,\n            \"external_id\": 563456,\n            \"status\": \"observed\",\n            \"status_label\": \"Trámite observado\",\n            \"incomplete\": false,\n            \"started_at\": \"2019-03-20T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"claimable\": false,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"discharge_comment\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": \"Martin Gonzalez\",\n            \"visit_information\": null,\n            \"fees_and_charges\": {\n                \"applicable\": true,\n                \"details\": [\n                    702,\n                    703\n                ]\n            },\n            \"client_approval_at\": null,\n            \"id\": 2,\n            \"workflow_name\": \"Formulario 3.4\"\n        }\n    ]\n}"}],"_postman_id":"083b1e3a-518e-4f53-a286-8440be543f46"},{"name":"Destroy","id":"a152c389-135e-43d4-a6bb-a4bd4de415ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_id}}","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"b5665a29-1b05-4788-be11-5df0728c8d06","name":"Destroy - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"http://localhost:3000/async_request/jobs/599bf76d-b64e-462f-bf8c-ead5c2b72b94"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"Trámite cancelado correctamente.\"\n}"},{"id":"c7c21e3e-69ce-46a8-be1a-61205ca11533","name":"Destroy - 202 Accepted","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/workflow_responses/1234"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"599bf76d-b64e-462f-bf8c-ead5c2b72b94\",\n    \"url\": \"http://localhost:3000/async_request/jobs/599bf76d-b64e-462f-bf8c-ead5c2b72b94\"\n}"}],"_postman_id":"a152c389-135e-43d4-a6bb-a4bd4de415ea"},{"name":"Show","id":"7c49c2ba-e6c7-48b5-98d1-8c5a50a03f3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}","description":"<p>Get a workflow response.</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow_response_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"37044191-f7f4-4996-9e87-32a82baacb71","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjEsInZlcmlmaWNhdGlvbl9jb2RlIjoiYmNFTjR6bjkzM3h1VUN6SG5ieF9pNlFxUXg3U3lKQngzTlptdy1NUlRLeF9FYlZvR3p5ZFB3dTRKallEQ0hpRSIsInJlbmV3X2lkIjoiSDRNbjJzb2pIQ2tQZnRHc2d5UVlvNXlXdTdQeUZaa3ciLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MzE4MTMxLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyOTQxMzEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0ODQ0NTMxfQ.ElytKfhTGXj5IUYg9tcBwOxMZmaXD7lC2UA-auyTZ1U","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"076ce982-95dd-477b-be1f-061a2287b9ec"},{"key":"X-Runtime","value":"0.186493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"8824f166-3faa-4869-b96d-adf7c418a24c\",\n    \"url\": \"http://localhost:3000/async_request/jobs/8824f166-3faa-4869-b96d-adf7c418a24c\"\n}"},{"id":"7181b745-ea29-4559-8e09-5677acbe25f0","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"bearer eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjEsInZlcmlmaWNhdGlvbl9jb2RlIjoiYmNFTjR6bjkzM3h1VUN6SG5ieF9pNlFxUXg3U3lKQngzTlptdy1NUlRLeF9FYlZvR3p5ZFB3dTRKallEQ0hpRSIsInJlbmV3X2lkIjoiSDRNbjJzb2pIQ2tQZnRHc2d5UVlvNXlXdTdQeUZaa3ciLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MzE4MTMxLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyOTQxMzEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0ODQ0NTMxfQ.ElytKfhTGXj5IUYg9tcBwOxMZmaXD7lC2UA-auyTZ1U"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"076ce982-95dd-477b-be1f-061a2287b9ec"},{"key":"X-Runtime","value":"0.186493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"workflow_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_response_id\": 1,\n    \"workflow_name\": \"Formulario 3.4\",\n    \"status\": \"pending\",\n    \"status_label\": \"Trámite pendiente de enviar\",\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"cancellable\": true,\n    \"editable\": true,\n    \"observable\": true,\n    \"approvable\": true,\n    \"client_approvable\": false,\n    \"client_observable\": false,\n    \"client_rejectable\": false,\n    \"observations\": null,\n    \"rejection_reasons\": [\n        {\n            \"reason\": \"Instalación rechazada por X\",\n            \"comments\": \"Comentario\"\n        }\n    ],\n    \"claimable\": false,\n    \"discharge_comment\": \"Pedido de revisión de trámite\",\n    \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n    \"inspector_name\": \"Martin Gonzalez\",\n    \"visit_information\": {\n        \"message\": null,\n        \"notify_user\": true,\n        \"notify_owner\": true,\n        \"date\": \"2020-09-01\",\n        \"start_time\": \"11:00\",\n        \"end_time\": \"12:00\"\n    },\n    \"client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n    \"can_rectify\": true,\n    \"head_form_response_id\": 5,\n    \"current_form_response_id\": 5,\n    \"editable_form_responses_ids\": [\n        5\n    ],\n    \"fees_and_charges\": {\n        \"applicable\": true,\n        \"details\": [\n            702,\n            703\n        ]\n    },\n    \"form_responses\": [\n        {\n            \"id\": 5,\n            \"form_id\": 1,\n            \"form_code\": \"form_1\",\n            \"external_id\": \"654432\",\n            \"workflow_response_id\": 3,\n            \"editable\": true,\n            \"observations\": null,\n            \"input_values\": {\n                \"CALLE_1\": \"xxxx\",\n                \"CALLE_2\": \"xxxx\",\n                \"CALLE_3\": \"xxxx\",\n                \"CALLE_4\": \"xxxx\",\n                \"TIPO_DE_USO\": \"xxxxx\",\n                \"OBSERVACIONES\": \"xxxxxx\",\n                \"TIPO_DE_PLANO\": \"triangular\",\n                \"CANTIDAD_TOMAS\": \"5\",\n                \"NUM_VECINO_DER\": \"12\",\n                \"NUM_VECINO_IZQ\": \"345\",\n                \"DISTANCIA_COTA_A\": \"70\",\n                \"DISTANCIA_COTA_B\": \"50\",\n                \"CANTIDAD_INSTALACIONES\": \"3\"\n            }\n        }\n    ]\n}"},{"id":"e75dbf21-6fac-40ca-bde5-e0091fcf9083","name":"Show - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite ya reservado.\"\n}"},{"id":"4befbfcb-38b2-4559-b8d1-64b1d1d5c6fd","name":"Show","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c49c2ba-e6c7-48b5-98d1-8c5a50a03f3a"},{"name":"Update","id":"02f3cd4e-894f-4b2a-900c-e0eb9dcdb561","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": \"under_review\",\n  \"rejection_reasons\": [{\"reason\": \"bad pipe\", \"comments\": \"esta pinchado\"}, {\"reason\": \"oven bad\", \"comments\": \"no cierra\"}],\n  \"inspector_id\": \"10\",\n  \"status\": \"approved_with_deadline_under_review\",\n  \"fees_and_charges\": {\n  \t\"applicable\": true,\n  \t\"details\": [702, 703]\n  }\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1","urlObject":{"path":["backoffice_api","v1","workflow_responses","1"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"46693fc6-7a33-48e2-80e0-77f1029e6d2b","name":"Update - 202 Accepted","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": \"under_review\",\n  \"rejection_reasons\": [{\"reason\": \"bad pipe\", \"comments\": \"esta pinchado\"}, {\"reason\": \"oven bad\", \"comments\": \"no cierra\"}],\n  \"inspector_id\": \"10\",\n  \"status\": \"rejected\",\n   \"fees_and_charges\": {\n  \t\"applicable\": true,\n  \t\"details\": [702, 703]\n  }\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"303350ab-f672-4c11-9b1f-98d54a752153\",\n    \"url\": \"http://localhost:3000/async_request/jobs/303350ab-f672-4c11-9b1f-98d54a752153\"\n}"},{"id":"7d6ca537-03f0-4766-bbbc-e9f1e7dadc67","name":"Update - 200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": \"under_review\",\n  \"rejection_reasons\": [{\"reason\": \"bad pipe\", \"comments\": \"esta pinchado\"}, {\"reason\": \"oven bad\", \"comments\": \"no cierra\"}],\n  \"inspector_id\": \"10\",\n  \"status\": \"rejected\",\n   \"fees_and_charges\": {\n  \t\"applicable\": true,\n  \t\"details\": [702, 703]\n  }\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite actualizado correctamente.\"\n}"}],"_postman_id":"02f3cd4e-894f-4b2a-900c-e0eb9dcdb561"},{"name":"History","id":"beb48fb6-679c-43da-ba88-33ecc6dd0023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/history","description":"<p>Get a workflow response.</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow_response_id}}","history"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"082ff100-c54b-4cf4-aa93-25636755ca67","name":"History - 200","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"ETag","value":"W/\"c5f9dd9a3ef79f552d4f64ce630944bb\"","description":"","type":"text"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"","type":"text"},{"key":"X-Request-Id","value":"9aeb20ad-8160-4f8e-a0fc-d14f60a8a3f0","description":"","type":"text"},{"key":"X-Runtime","value":"0.007688","description":"","type":"text"},{"key":"Vary","value":"Origin","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"order\": 1,\n        \"updated_at\": \"2019-03-29T00:00:00.000-03:00\",\n        \"status_label\": \"Borrador\"\n    },\n    {\n        \"order\": 2,\n        \"updated_at\": \"2019-03-30T00:00:00.000-03:00\",\n        \"status_label\": \"Enviado\"\n    },\n    {\n        \"order\": 3,\n        \"updated_at\": \"2019-04-02T00:00:00.000-03:00\",\n        \"status_label\": \"En Revision\"\n    },\n    {\n        \"order\": 4,\n        \"updated_at\": \"2019-04-02T00:00:00.000-03:00\",\n        \"status_label\": \"Observado\"\n    }\n]"},{"id":"26c98cd1-a19d-4d68-855a-d2c1a5e2976b","name":"History - 202","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/history"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"4146b8bb-4b6d-4969-b32e-4816829afa60"},{"key":"X-Runtime","value":"0.040099"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"8012aaed-f29f-41e7-9c18-8e2fe5c9af37\",\n    \"url\": \"http://localhost:3000/async_request/jobs/8012aaed-f29f-41e7-9c18-8e2fe5c9af37\"\n}"}],"_postman_id":"beb48fb6-679c-43da-ba88-33ecc6dd0023"},{"name":"Notification","event":[{"listen":"prerequest","script":{"id":"56363b00-0668-45fb-9a7d-b59ba3b952d0","exec":[""],"type":"text/javascript"}}],"id":"7a3a43e4-1ce2-472f-b8c0-c5f2eb26e0af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"visit\",\n    \"notify_user\": true,\n    \"notify_owner\": false,\n    \"date\": \"2020-02-01\",\n    \"start_time\": \"09:00\",\n    \"end_time\": \"11:00\",\n    \"message\": \"Recordar tener el plano a disposición para la visita.\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow-response-id}}/notification","description":"<p>Service to notify a licensed user related to a workflow response.</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow-response-id}}","notification"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0857d5ba-352b-457c-97f8-561976fe2d7c","name":"Notification - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"invalid_type\",\n    \"notify_user\": true,\n    \"notify_owner\": false,\n    \"date\": \"2020-02-01\",\n    \"start_time\": \"09:00\",\n    \"end_time\": \"11:00\",\n    \"message\": \"Recordar tener el plano a disposición para la visita.\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1/notification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ca9d734a-01c5-45a7-92b8-374227384cca"},{"key":"X-Runtime","value":"0.071510"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"invalid_param\",\n            \"message\": \"Parámetro inválido: type\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"96a7207c-0dea-45bf-8763-7dc6340b13bb","name":"Notification - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"message\": \"Visita planificada para el martes próximo.\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/notifications"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b4b4a678-f56e-49b8-98c0-79570756e3e6"},{"key":"X-Runtime","value":"0.449761"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"88e6169f-fb3c-4325-b2da-c0cfec506dc1\",\n    \"url\": \"http://localhost:3000/async_request/jobs/88e6169f-fb3c-4325-b2da-c0cfec506dc1\"\n}"},{"id":"a8254247-bcc4-43d7-9ca0-708b10dcbec0","name":"Notification - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"message\": \"Visita planificada para el martes próximo.\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/notify"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"afd1a34f-990a-49e4-bcfc-446542001ccf"},{"key":"X-Runtime","value":"0.094066"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"dd724def-c593-40c9-ab89-23267690a401","name":"Notification - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"message\": \"Visita planificada para el martes próximo.\"\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/notify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b4b4a678-f56e-49b8-98c0-79570756e3e6"},{"key":"X-Runtime","value":"0.449761"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Las notificaciones fueron enviadas con éxito.\"\n}"}],"_postman_id":"7a3a43e4-1ce2-472f-b8c0-c5f2eb26e0af"},{"name":"Block","id":"a60b68d3-7709-4cab-b0fc-6d213b5d1272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/block","description":"<p>Reserve a workflow response</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow_response_id}}","block"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3fcc78ef-cc38-4240-a65e-8f1bf9b86ca5","name":"Block - 200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1/block"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c39dec9a-5ada-4b8a-9e7e-a96a9f9def6c"},{"key":"X-Runtime","value":"0.018532"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite reservado.\"\n}"},{"id":"4e05e54f-5ee6-423b-a024-6ec36b194ecf","name":"Block - 404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1/block"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c39dec9a-5ada-4b8a-9e7e-a96a9f9def6c"},{"key":"X-Runtime","value":"0.018532"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite inexistente.\"\n}"},{"id":"c168b479-7692-40ef-bda7-15bb160996bb","name":"Block - 422 Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1/block"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c39dec9a-5ada-4b8a-9e7e-a96a9f9def6c"},{"key":"X-Runtime","value":"0.018532"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite ya reservado.\"\n}"},{"id":"ce743188-5b7a-49b5-90fe-639de0633b18","name":"Block - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1/block"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"2ce9d919-c282-46b1-be67-49331292596f"},{"key":"X-Runtime","value":"0.143263"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"2bd9ddd7-ad12-46d4-af79-1a87156fbfd6\",\n    \"url\": \"http://localhost:3000/async_request/jobs/2bd9ddd7-ad12-46d4-af79-1a87156fbfd6\"\n}"}],"_postman_id":"a60b68d3-7709-4cab-b0fc-6d213b5d1272"}],"id":"449b82a5-729e-48f1-b61b-e577a1e2afee","_postman_id":"449b82a5-729e-48f1-b61b-e577a1e2afee","description":""},{"name":"Form Responses","item":[{"name":"Create","id":"6a0fc37f-bc54-4cf3-8e7a-ff2994443efe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"form_id\": 1,\n\t\"input_values\": {\n\t  \"CANTIDAD_INSTALACIONES\": \"3\",\n\t   \"CANTIDAD_TOMAS\": \"5\",\n\t   \"TIPO_DE_USO\": \"xxxxx\",\n\t   \"TIPO_DE_PLANO\": \"triangular\",\n\t   \"CALLE_1\": \"xxxx\",\n\t   \"CALLE_2\": \"xxxx\",\n       \"CALLE_3\": \"xxxx\",\n\t   \"CALLE_4\": \"xxxx\",\n\t   \"DISTANCIA_COTA_A\": \"70\",\n\t   \"DISTANCIA_COTA_B\": \"50\",\n\t   \"NUM_VECINO_IZQ\": \"345\",\n\t   \"NUM_VECINO_DER\": \"12\",\n\t   \"OBSERVACIONES\": \"xxxxxx\"\n\t}\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow-response-id}}/form_responses","description":"<p>Create a form response for a particular workflow response.</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow-response-id}}","form_responses"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0ebdc196-4a55-40ee-bc04-9daddf7920c1","name":"Async Request Response","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","disabled":true},{"key":"Authorization","value":"{{user-access-token}}","type":"text","disabled":true}],"url":"{{base-api-url}}/async_request/jobs/903d2871-f104-4399-9990-8c614601dd85"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8a50cd44-a1b1-4f61-b638-222e224682f2"},{"key":"X-Runtime","value":"0.027466"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite actualizado correctamente.\",\n    \"id\": 5\n}"},{"id":"34eeb89c-9d40-4c49-87db-7f400c48c974","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"form_id\": 1,\n\t\"input_values\": {\n\t  \"CANTIDAD_INSTALACIONES\": \"3\",\n\t   \"CANTIDAD_TOMAS\": \"5\",\n\t   \"TIPO_DE_USO\": \"xxxxx\",\n\t   \"TIPO_DE_PLANO\": \"triangular\",\n\t   \"CALLE_1\": \"xxxx\",\n\t   \"CALLE_2\": \"xxxx\",\n       \"CALLE_3\": \"xxxx\",\n\t   \"CALLE_4\": \"xxxx\",\n\t   \"DISTANCIA_COTA_A\": \"70\",\n\t   \"DISTANCIA_COTA_B\": \"50\",\n\t   \"NUM_VECINO_IZQ\": \"345\",\n\t   \"NUM_VECINO_DER\": \"12\",\n\t   \"OBSERVACIONES\": \"xxxxxx\"\n\t}\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1/form_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"98b993f5-5ebe-48cb-81cd-5eb122c18364"},{"key":"X-Runtime","value":"0.016624"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"c8dd7d5a-a176-42b7-8048-8696ee75faba\",\n    \"url\": \"http://localhost:3000/async_request/jobs/c8dd7d5a-a176-42b7-8048-8696ee75faba\"\n}"},{"id":"c1662014-9088-4f3d-83b9-fd17306ce21c","name":"Create - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"form_id\": 1,\n\t\"input_values\": {\n\t  \"CANTIDAD_INSTALACIONES\": \"3\",\n\t   \"CANTIDAD_TOMAS\": \"5\",\n\t   \"TIPO_DE_USO\": \"xxxxx\",\n\t   \"TIPO_DE_PLANO\": \"triangular\",\n\t   \"CALLE_1\": \"xxxx\",\n\t   \"CALLE_2\": \"xxxx\",\n       \"CALLE_3\": \"xxxx\",\n\t   \"CALLE_4\": \"xxxx\",\n\t   \"DISTANCIA_COTA_A\": \"70\",\n\t   \"DISTANCIA_COTA_B\": \"50\",\n\t   \"NUM_VECINO_IZQ\": \"345\",\n\t   \"NUM_VECINO_DER\": \"12\",\n\t   \"OBSERVACIONES\": \"xxxxxx\"\n\t}\n}"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/32/form_responses"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f517be03-eb79-499e-aeb5-8f15ec28429a"},{"key":"X-Runtime","value":"0.012538"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6a0fc37f-bc54-4cf3-8e7a-ff2994443efe"},{"name":"Update","id":"4fd3cfcc-308c-4ad1-bed7-fa990604f5b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow_id}}","form_responses","{{form-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0edcdb09-967e-4969-962c-33e0e3971971","name":"Update - 200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Paso de trámite actualizado correctamente.\"\n}"},{"id":"5169cc9d-9e6e-472e-b03e-132b53114352","name":"Update - 404 Not Found","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"2df54186-110a-4dbd-ac2f-5cab429223e6"},{"key":"X-Runtime","value":"0.016738"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"802b7dd5-9845-4fa8-8d9a-d0bc8f256a5c","name":"Update - 202 Accepted","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"0a1dc31d-a599-44b6-a36c-8346496e35b4\",\n    \"url\": \"http://localhost:3000/async_request/jobs/0a1dc31d-a599-44b6-a36c-8346496e35b4\"\n}"}],"_postman_id":"4fd3cfcc-308c-4ad1-bed7-fa990604f5b8"},{"name":"Show","id":"50565b47-f9ca-4515-ad94-c496ca359119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/form_responses/{{form_response_id}}","urlObject":{"path":["backoffice_api","v1","workflow_responses","{{workflow_response_id}}","form_responses","{{form_response_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"a3c4295e-56d4-4561-abe7-6be5f460c51f","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/form_responses/{{form_response_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"form_id\": 1,\n    \"form_code\": \"form_1\",\n    \"external_id\": \"654432\",\n    \"workflow_response_id\": 1,\n    \"editable\": true,\n    \"observations\": null,\n    \"input_values\": {\n        \"CANTIDAD_INSTALACIONES\": \"3\",\n        \"CANTIDAD_TOMAS\": \"5\",\n        \"TIPO_DE_USO\": \"xxxxx\",\n        \"TIPO_DE_PLANO\": \"triangular\",\n        \"CALLE_1\": \"xxxx\",\n        \"CALLE_2\": \"xxxx\",\n        \"CALLE_3\": \"xxxx\",\n        \"CALLE_4\": \"xxxx\",\n        \"DISTANCIA_COTA_A\": \"70\",\n        \"DISTANCIA_COTA_B\": \"50\",\n        \"NUM_VECINO_IZQ\": \"345\",\n        \"NUM_VECINO_DER\": \"12\",\n        \"OBSERVACIONES\": \"xxxxxx\"\n    }\n}"},{"id":"ada850db-1fcf-4443-8bed-bf72cba82b5b","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{{workflow_response_id}}/form_responses/{{form_response_id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"6a9e6635-e05d-402a-a3be-50e21ed36622\",\n    \"url\": \"http://localhost:3000/async_request/jobs/6a9e6635-e05d-402a-a3be-50e21ed36622\"\n}"}],"_postman_id":"50565b47-f9ca-4515-ad94-c496ca359119"}],"id":"250994c5-e34b-4b12-9ebd-3fd24cfa74b4","_postman_id":"250994c5-e34b-4b12-9ebd-3fd24cfa74b4","description":""},{"name":"Licensed Users","item":[{"name":"Show","id":"52e63fce-fe43-47be-a631-9591107f7988","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/licensed_users/{{licensed_user_id}}","urlObject":{"path":["backoffice_api","v1","licensed_users","{{licensed_user_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"5157a4ab-45fd-43b8-b7b2-b33aab5240d2","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/licensed_users/{{licensed_user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options\n","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff\n"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"ETag","value":"W/\"67c351fb4c654ec72dd5917c90a6bf7d\"\n","description":"","type":"text"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"","type":"text"},{"key":"X-Request-Id","value":"ff16dfe7-bc8c-4f6b-b9e6-829f55c8b486\n","description":"","type":"text"},{"key":"X-Runtime","value":"0.021862\n","description":"","type":"text"},{"key":"Vary","value":"Origin","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"external_id\": \"593675\",\n    \"email\": \"juan_perez@example.com\",\n    \"provider\": null,\n    \"uid\": null,\n    \"updated_profile\": true,\n    \"first_name\": \"JUAN\",\n    \"last_name\": \"PEREZ\",\n    \"document_type\": \"dni\",\n    \"document_number\": 20123456,\n    \"gender\": \"male\",\n    \"phone\": {\n        \"area_code\": \"11\",\n        \"number\": \"45675788\",\n        \"type\": \"phone\"\n    },\n    \"confirmed\": true,\n    \"category\": \"Primera\",\n    \"license_number\": \"MP. 200339\",\n    \"license_status\": \"Pendiente de pago\"\n}"},{"id":"78b1e056-3038-4bb6-b6e6-0e56135405e4","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/licensed_users/{{licensed_user_id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"5eb7081a-267b-4755-80ad-3de297e96e41"},{"key":"X-Runtime","value":"0.043391"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"3fa2fdca-84bb-4255-87c5-5ec6ed788aa7\",\n    \"url\": \"http://localhost:3000/async_request/jobs/3fa2fdca-84bb-4255-87c5-5ec6ed788aa7\"\n}"},{"id":"e5e30fa7-84a3-4a22-a6a1-47bfcc5f7545","name":"Show - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/licensed_users/{{licensed_user_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"492b2a6b-8c17-4c6b-891e-be906a32ffed"},{"key":"X-Runtime","value":"0.040239"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"f2762304-ae41-4dcb-b837-453eb439d861","name":"Show - 401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text","disabled":true}],"url":"{{base-api-url}}/backoffice_api/v1/licensed_users/{{licensed_user_id}}"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e674fb02-3853-4f85-8e72-bdfda98b2d4a"},{"key":"X-Runtime","value":"0.024661"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 401,\n            \"code\": \"not_authorized\",\n            \"message\": \"No está autorizado\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"52e63fce-fe43-47be-a631-9591107f7988"}],"id":"781444be-f90b-4c24-a45a-a7f75fc83b6b","_postman_id":"781444be-f90b-4c24-a45a-a7f75fc83b6b","description":""},{"name":"Geographic Information","item":[{"name":"Buildings","id":"c9182526-dccf-49fb-aea7-6cfcb68e5e10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/buildings","description":"<p>Buildings naming info.</p>\n","urlObject":{"path":["backoffice_api","v1","geographic_information","buildings"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"1b57f240-7cbe-4463-8f13-56b68ad3f4f4","name":"Buildings - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/buildings"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0c5be68f-4a95-4584-9373-b100b57ed163"},{"key":"X-Runtime","value":"0.066299"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"6ae13d35-37a9-4dc7-842f-d95a5d4329d7\",\n    \"url\": \"http://localhost:3000/async_request/jobs/6ae13d35-37a9-4dc7-842f-d95a5d4329d7\"\n}"},{"id":"56550cfa-5f25-42c0-a1c0-f8a4d7292eba","name":"Buildings - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/buildings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0c5be68f-4a95-4584-9373-b100b57ed163"},{"key":"X-Runtime","value":"0.066299"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"floors\": [\n        \"PB\",\n        \"1\",\n        \"2\"\n    ],\n    \"apartments\": [\n        \"1\",\n        \"2\",\n        \"A\",\n        \"B\"\n    ],\n    \"towers\": [\n        \"A\",\n        \"B\",\n        \"C\"\n    ]\n}"}],"_postman_id":"c9182526-dccf-49fb-aea7-6cfcb68e5e10"},{"name":"Streets","id":"f621cd1b-9c79-4bcb-ba0f-ca1a22619b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/:city_id/streets","description":"<p>Streets naming info at given city.</p>\n","urlObject":{"path":["backoffice_api","v1","geographic_information","cities",":city_id","streets"],"host":["{{base-api-url}}"],"query":[],"variable":[{"type":"any","value":"63430","key":"city_id"}]}},"response":[{"id":"7b8c8b01-d5c6-4a8f-9462-57b52d29b208","name":"Streets - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/001/streets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"23eee7c8-c838-4ac5-9d22-ef402cb1efe0"},{"key":"X-Runtime","value":"0.036404"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"city_id\": 1,\n        \"street_type\": \"Avenida\",\n        \"street\": \"Olazabal\",\n        \"street_number_from\": 2000,\n        \"street_number_to\": 9000\n    },\n    {\n        \"city_id\": 1,\n        \"street_type\": \"Calle\",\n        \"street\": \"Conde\",\n        \"street_number_from\": 0,\n        \"street_number_to\": 1000\n    }\n]"},{"id":"abe789d1-b7ff-4c81-acf7-2fc0d763cb27","name":"Streets - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/001/streets"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"23eee7c8-c838-4ac5-9d22-ef402cb1efe0"},{"key":"X-Runtime","value":"0.036404"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"01c3d23d-858c-4bfd-a990-2bb3e04237e1\",\n    \"url\": \"http://localhost:3000/async_request/jobs/01c3d23d-858c-4bfd-a990-2bb3e04237e1\"\n}"}],"_postman_id":"f621cd1b-9c79-4bcb-ba0f-ca1a22619b87"},{"name":"Cities","id":"618d8a55-9450-4527-99c3-6dc368e20570","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities","description":"<p>List all cities registered at utility</p>\n","urlObject":{"path":["backoffice_api","v1","geographic_information","cities"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"075c0698-a1b5-4bbe-87ff-d6789265fb16","name":"Cities - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d12f7907-16d4-48b3-9544-2dc06261a4a6"},{"key":"X-Runtime","value":"0.035219"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"5df02150-058d-4f2b-bee6-a1ae97129768\",\n    \"url\": \"http://localhost:3000/async_request/jobs/5df02150-058d-4f2b-bee6-a1ae97129768\"\n}"},{"id":"71d02c42-053a-4774-9cf4-68c34760cc39","name":"Cities - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d12f7907-16d4-48b3-9544-2dc06261a4a6"},{"key":"X-Runtime","value":"0.035219"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"La Plata\",\n        \"value\": 1,\n        \"order\": 1\n    },\n    {\n        \"name\": \"Ensenada\",\n        \"value\": 2,\n        \"order\": 2\n    }\n]"}],"_postman_id":"618d8a55-9450-4527-99c3-6dc368e20570"},{"name":"Planchette","id":"81dff581-c2fc-43d1-9121-76bedfc1a40c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/{{city_id}}/planchette?street=Belgrano&street_number=123","description":"<p>Rertieve planchette info</p>\n","urlObject":{"path":["backoffice_api","v1","geographic_information","cities","{{city_id}}","planchette"],"host":["{{base-api-url}}"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}],"variable":[]}},"response":[{"id":"a2d0b78a-2b4f-48f4-a67b-b9ff67cb4e47","name":"Planchette - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/001/planchette?street=Belgrano&street_number=123","host":["{{base-api-url}}"],"path":["backoffice_api","v1","geographic_information","cities","001","planchette"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0a9d1491-d872-4206-9183-3dccfbdf8028"},{"key":"X-Runtime","value":"0.029336"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"planchette\": 40,\n        \"annex\": \"B\",\n        \"issuer\": 70002,\n        \"project\": \"6119/98\",\n        \"street_number_from\": 100,\n        \"street_number_to\": 200,\n        \"sidewalk\": \"P\"\n    },\n    {\n        \"planchette\": 20,\n        \"annex\": \"\",\n        \"issuer\": 70002,\n        \"project\": \"MC LPL AÑO93\",\n        \"street_number_from\": 300,\n        \"street_number_to\": 400,\n        \"sidewalk\": \"I\"\n    }\n]"},{"id":"e722ab04-b15a-4f1e-a62c-9ad0693d9b05","name":"Planchette - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/001/planchette?street=Belgrano&street_number=123","host":["{{base-api-url}}"],"path":["backoffice_api","v1","geographic_information","cities","001","planchette"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0a9d1491-d872-4206-9183-3dccfbdf8028"},{"key":"X-Runtime","value":"0.029336"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"cca7c0ea-dd67-487a-af28-4e9b68c99796\",\n    \"url\": \"http://localhost:3000/async_request/jobs/cca7c0ea-dd67-487a-af28-4e9b68c99796\"\n}"}],"_postman_id":"81dff581-c2fc-43d1-9121-76bedfc1a40c"},{"name":"Consumption","id":"00377dd0-1f9f-461a-bfd7-9a4f7eae4fe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/{{city_id}}/planchette?street=Belgrano&street_number=123","description":"<p>Rertieve planchette info</p>\n","urlObject":{"path":["backoffice_api","v1","geographic_information","cities","{{city_id}}","planchette"],"host":["{{base-api-url}}"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}],"variable":[]}},"response":[{"id":"7df8e120-f4ce-4121-a809-c3023a14dabe","name":"Consumption 202","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/1/consumption"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"fbb668c7-64a7-46ad-91e4-4b7739a3745a"},{"key":"X-Runtime","value":"0.108756"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"f5899bd7-d187-444c-bfc6-5d3aa1f8f3e8\",\n    \"url\": \"http://localhost:3000/async_request/jobs/f5899bd7-d187-444c-bfc6-5d3aa1f8f3e8\"\n}"},{"id":"78b5b31f-8511-4f51-b89d-b4a783967911","name":"Consumption 200","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/geographic_information/cities/1/consumption"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"fbb668c7-64a7-46ad-91e4-4b7739a3745a"},{"key":"X-Runtime","value":"0.108756"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"user\": \"RES\",\n        \"description\": \"Residencial\",\n        \"consumption\": [\n            {\n                \"id\": 1,\n                \"type\": \"RES\",\n                \"description\": \"Residencial\"\n            },\n            {\n                \"id\": 2,\n                \"type\": \"RJP\",\n                \"description\": \"Jubilado/Pensionado\"\n            }\n        ]\n    },\n    {\n        \"user\": \"RJP\",\n        \"description\": \"Jubilado/Pensionado\",\n        \"consumption\": [\n            {\n                \"id\": 3,\n                \"type\": \"RJP\",\n                \"description\": \"Jubilado/Pensionado\"\n            }\n        ]\n    },\n    {\n        \"user\": \"OFM\",\n        \"description\": \"Oficina municipal\",\n        \"consumption\": []\n    }\n]"}],"_postman_id":"00377dd0-1f9f-461a-bfd7-9a4f7eae4fe8"}],"id":"5e0b00fd-a9f3-49c1-80f5-3118768f1359","description":"<p>Streets and Buildings naming info.</p>\n","_postman_id":"5e0b00fd-a9f3-49c1-80f5-3118768f1359"},{"name":"Inspectors","item":[{"name":"Index","id":"41a023cf-142f-46ff-be41-9cc2a4b7c592","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/{workflow_response_id}/inspectors","urlObject":{"path":["backoffice_api","v1","workflow_responses","{workflow_response_id}","inspectors"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"a6a8e655-4cc1-40d7-bdfe-1f07b2881189","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/inspectors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7d326e96-492f-4979-957e-8f04989f77d4"},{"key":"X-Runtime","value":"0.105471"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Martin Gonzalez\",\n        \"id\": 1,\n        \"operating_unit_code\": 7002\n    },\n    {\n        \"name\": \"Damian Perez\",\n        \"id\": 2,\n        \"operating_unit_code\": 7004\n    }\n]"},{"id":"f5405e47-930e-400e-8998-b6f1c407ac55","name":"202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{backoffice-user-access-token}}"}],"url":"{{base-api-url}}/backoffice_api/v1/inspectors"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7d326e96-492f-4979-957e-8f04989f77d4"},{"key":"X-Runtime","value":"0.105471"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"069fd3b1-c0e0-4f64-9b68-515852b96201\",\n    \"url\": \"http://localhost:3000/async_request/jobs/069fd3b1-c0e0-4f64-9b68-515852b96201\"\n}"}],"_postman_id":"41a023cf-142f-46ff-be41-9cc2a4b7c592"}],"id":"dc5b0df2-0b2b-4ba7-b261-95495172f307","_postman_id":"dc5b0df2-0b2b-4ba7-b261-95495172f307","description":""},{"name":"Backoffice Notes","item":[{"name":"Index","id":"7046c329-4733-4134-b0ed-4599c9f388ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/5/backoffice_notes","description":"<p>Get a workflow response.</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","5","backoffice_notes"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"042cb53e-1bd7-44d9-b65b-3577eb294861","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjEsInZlcmlmaWNhdGlvbl9jb2RlIjoiYmNFTjR6bjkzM3h1VUN6SG5ieF9pNlFxUXg3U3lKQngzTlptdy1NUlRLeF9FYlZvR3p5ZFB3dTRKallEQ0hpRSIsInJlbmV3X2lkIjoiSDRNbjJzb2pIQ2tQZnRHc2d5UVlvNXlXdTdQeUZaa3ciLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MzE4MTMxLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyOTQxMzEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0ODQ0NTMxfQ.ElytKfhTGXj5IUYg9tcBwOxMZmaXD7lC2UA-auyTZ1U","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"076ce982-95dd-477b-be1f-061a2287b9ec"},{"key":"X-Runtime","value":"0.186493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"8824f166-3faa-4869-b96d-adf7c418a24c\",\n    \"url\": \"http://localhost:3000/async_request/jobs/8824f166-3faa-4869-b96d-adf7c418a24c\"\n}"},{"id":"39c04b11-bb0e-4e72-9bc3-6472d638eacb","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"bearer eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjEsInZlcmlmaWNhdGlvbl9jb2RlIjoiYmNFTjR6bjkzM3h1VUN6SG5ieF9pNlFxUXg3U3lKQngzTlptdy1NUlRLeF9FYlZvR3p5ZFB3dTRKallEQ0hpRSIsInJlbmV3X2lkIjoiSDRNbjJzb2pIQ2tQZnRHc2d5UVlvNXlXdTdQeUZaa3ciLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MzE4MTMxLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyOTQxMzEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0ODQ0NTMxfQ.ElytKfhTGXj5IUYg9tcBwOxMZmaXD7lC2UA-auyTZ1U"}],"url":{"raw":"{{base-api-url}}/backoffice_api/v1/workflow_responses/:workflow_response_id/backoffice_notes","host":["{{base-api-url}}"],"path":["backoffice_api","v1","workflow_responses",":workflow_response_id","backoffice_notes"],"variable":[{"key":"workflow_response_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"076ce982-95dd-477b-be1f-061a2287b9ec"},{"key":"X-Runtime","value":"0.186493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"description\": \"nota de prueba\",\n        \"backoffice_user_id\": 1,\n        \"backoffice_user_full_name\": \"Alejandro Gaitán\",\n        \"created_at\": \"2023-03-06T21:00:00.000-03:00\"\n    }\n]"},{"id":"28773071-f181-4596-b459-bdb605bce884","name":"Show - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite ya reservado.\"\n}"}],"_postman_id":"7046c329-4733-4134-b0ed-4599c9f388ba"},{"name":"Create","id":"5ad15b0e-88dc-4843-9a51-cb44512bccf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"holaa\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/6/backoffice_notes","description":"<p>Get a workflow response.</p>\n","urlObject":{"path":["backoffice_api","v1","workflow_responses","6","backoffice_notes"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"56751ef6-5b66-43e0-9908-cd198fcef9cc","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjEsInZlcmlmaWNhdGlvbl9jb2RlIjoiYmNFTjR6bjkzM3h1VUN6SG5ieF9pNlFxUXg3U3lKQngzTlptdy1NUlRLeF9FYlZvR3p5ZFB3dTRKallEQ0hpRSIsInJlbmV3X2lkIjoiSDRNbjJzb2pIQ2tQZnRHc2d5UVlvNXlXdTdQeUZaa3ciLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MzE4MTMxLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyOTQxMzEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0ODQ0NTMxfQ.ElytKfhTGXj5IUYg9tcBwOxMZmaXD7lC2UA-auyTZ1U","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"076ce982-95dd-477b-be1f-061a2287b9ec"},{"key":"X-Runtime","value":"0.186493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"8824f166-3faa-4869-b96d-adf7c418a24c\",\n    \"url\": \"http://localhost:3000/async_request/jobs/8824f166-3faa-4869-b96d-adf7c418a24c\"\n}"},{"id":"8f76c7a7-2012-45b8-9837-aefa0a194278","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"bearer eyJhbGciOiJIUzI1NiJ9.eyJiYWNrb2ZmaWNlX3VzZXJfaWQiOjEsInZlcmlmaWNhdGlvbl9jb2RlIjoiYmNFTjR6bjkzM3h1VUN6SG5ieF9pNlFxUXg3U3lKQngzTlptdy1NUlRLeF9FYlZvR3p5ZFB3dTRKallEQ0hpRSIsInJlbmV3X2lkIjoiSDRNbjJzb2pIQ2tQZnRHc2d5UVlvNXlXdTdQeUZaa3ciLCJtYXhpbXVtX3VzZWZ1bF9kYXRlIjoxNTk5MzE4MTMxLCJleHBpcmF0aW9uX2RhdGUiOjE1OTYyOTQxMzEsIndhcm5pbmdfZXhwaXJhdGlvbl9kYXRlIjoxNTY0ODQ0NTMxfQ.ElytKfhTGXj5IUYg9tcBwOxMZmaXD7lC2UA-auyTZ1U"}],"url":{"raw":"{{base-api-url}}/backoffice_api/v1/workflow_responses/:workflow_response_id/backoffice_notes","host":["{{base-api-url}}"],"path":["backoffice_api","v1","workflow_responses",":workflow_response_id","backoffice_notes"],"variable":[{"key":"workflow_response_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"076ce982-95dd-477b-be1f-061a2287b9ec"},{"key":"X-Runtime","value":"0.186493"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"description\": \"nota de prueba\",\n        \"backoffice_user_id\": 1,\n        \"backoffice_user_full_name\": \"Alejandro Gaitán\",\n        \"created_at\": \"2023-03-06T21:00:00.000-03:00\"\n    }\n]"},{"id":"e8907b63-4328-496c-a854-7886794ddfc2","name":"Show - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text"}],"url":"{{base-api-url}}/backoffice_api/v1/workflow_responses/1"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite ya reservado.\"\n}"}],"_postman_id":"5ad15b0e-88dc-4843-9a51-cb44512bccf4"}],"id":"5d5dd910-f41a-4be8-a7a5-f7f290b7c505","_postman_id":"5d5dd910-f41a-4be8-a7a5-f7f290b7c505","description":""}],"id":"29b0caa9-98b7-44c4-bf9a-57d7f984c5eb","_postman_id":"29b0caa9-98b7-44c4-bf9a-57d7f984c5eb","description":""},{"name":"Users","item":[{"name":"Sessions","item":[{"name":"Create","event":[{"listen":"test","script":{"id":"a3955f32-0fd2-40d4-a2c8-1631833443d6","exec":["var jsonData = pm.response.json();","pm.environment.set(\"user-access-token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"d9b73450-9d43-4794-90ec-aa6e95327a6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan_perez@example.com\",\n\t\"password\": \"12345678\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions","description":"<p>This endpoint's body will accept either <code>email</code> or <code>document_type</code>, <code>document_number</code> and <code>gender</code> depending on the utility's user identification strategy, plus the user's <code>password</code>.</p>\n","urlObject":{"path":["api","v1","users","sessions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"38e46093-2216-4f1b-bcd8-be607895bc17","name":"Create - 400 bad Request","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"1"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan_perez@example.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"81b56669-6138-4e7c-ad33-c7ed27f7e3cd"},{"key":"X-Runtime","value":"0.007157"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: password\"\n        }\n    ]\n}"},{"id":"f6be5f01-976d-4522-841f-2de5e7d29852","name":"Create  - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"1"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan_perez@example.com\",\n\t\"password\": \"12345678\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"0a0a4efa5ab71aee279628b28cefb36c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4a7348ad-9419-4725-aa07-7e63772e06c0"},{"key":"X-Runtime","value":"1.519620"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6ImJOWlRzTmc2eGhNanhCUFpaakNkZHg3UnVfRnVpOUJ0WUVLa3pDN3hpRjZIanJKZzZKdmkyWnFpQUZ3Ylh5UDIiLCJyZW5ld19pZCI6IjYxZ0xTWnVtZkJhbkFtcFBEMWhoenhoUjdEMnBWWlI1IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTYxMjUzNzYxMywiZXhwaXJhdGlvbl9kYXRlIjoxNjA5NTEzNjEzLCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTU3ODA2NDAxM30.h9n-O0my-2dHu5du7BjRdpYrHcesvmwSaSNG3kjBaGM\",\n    \"renew_id\": \"61gLSZumfBanAmpPD1hhzxhR7D2pVZR5\"\n}"}],"_postman_id":"d9b73450-9d43-4794-90ec-aa6e95327a6e"},{"name":"Renew","id":"e01f2f16-2ecc-4db5-8413-e3f007d45c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"renew_id\": \"11goQK6bjkCcq3BcBR4p-eVeyzpwR9xE\",\n\t\"email\": \"juan@example.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/sessions","urlObject":{"path":["api","v1","users","sessions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e01f2f16-2ecc-4db5-8413-e3f007d45c54"},{"name":"Invalidate All","id":"998f5c20-c06a-47c5-a3c9-24c4b46f1416","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/users/sessions","urlObject":{"path":["api","v1","users","sessions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"1c9254ac-5f93-4d7b-85ae-cdb3adb5c1e0","name":"Invalidate All - 200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"},{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/users/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 01 Mar 2019 17:51:50 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"82e26f44-8aae-4a0c-a724-a76de1eb6108"},{"key":"X-Runtime","value":"0.197684"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"998f5c20-c06a-47c5-a3c9-24c4b46f1416"}],"id":"ac8f1cd5-2e20-4678-828e-fa0c8b256e73","_postman_id":"ac8f1cd5-2e20-4678-828e-fa0c8b256e73","description":""},{"name":"Confirmations","item":[{"name":"Create","id":"bec8c9d1-d366-4581-9462-9c0412c37ad6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null,\n\t\"gender\": null,\n\t\"provider\": null,\n\t\"uid\": null\n}"},"url":"{{base-api-url}}/api/v1/users/confirmation","description":"<p>Resends the confirmation link to the user's email address. This endpoint's body will accept either <code>email</code> or <code>document_type</code>, <code>document_number</code> and <code>gender</code> or <code>provider</code> and <code>uid</code> depending on the utility's user identification strategy.</p>\n","urlObject":{"path":["api","v1","users","confirmation"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"24c87195-fde5-44d1-b075-5c1023cd93f2","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null,\n\t\"gender\": null,\n\t\"provider\": null,\n\t\"uid\": null\n}"},"url":"{{base-api-url}}/api/v1/users/confirmation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"97","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 16:31:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"b3e8e2a60bf6e9dbe78a3035d09029ea\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"72ee6216-16ae-4bc0-a47d-e91cc9fc6afa","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"1.542983","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"message\":\"El código verificador fue reenviado a tu email.\",\n\t\"email\":\"juan@example.com\"\n}"}],"_postman_id":"bec8c9d1-d366-4581-9462-9c0412c37ad6"},{"name":"Update","id":"386e9375-86ad-4f04-8f83-3414f53d558e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"dsl435j7345mbkduqr\"\n}"},"url":"{{base-api-url}}/api/v1/users/confirmation","urlObject":{"path":["api","v1","users","confirmation"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3baada9e-5259-4d8f-89f0-561804e323c7","name":"Update - 200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/fd83403d-8236-4c52-a6d4-a6889390a900"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 25 Feb 2019 18:07:22 GMT"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"4c42a3fe-a281-4657-8e1a-f7bf97fd336d"},{"key":"X-Runtime","value":"0.027484"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Usuario confirmado\"\n}"},{"id":"42f99801-2a1c-4058-be1b-af356d696666","name":"Update - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Channel","value":"web"},{"key":"Authorization","value":"{{API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"dknjfut756ikhsfghj\"\n}"},"url":"{{base-api-url}}/api/v1/users/confirmation"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 16:36:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"7e78bf4f-a5e5-4645-8b87-c05cc6e8ea1c","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.027197","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"job_id\":\"fd83403d-8236-4c52-a6d4-a6889390a900\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/fd83403d-8236-4c52-a6d4-a6889390a900\"\n}"}],"_postman_id":"386e9375-86ad-4f04-8f83-3414f53d558e"}],"id":"5ce701a5-376a-4884-b702-c71970d5e7ef","_postman_id":"5ce701a5-376a-4884-b702-c71970d5e7ef","description":""},{"name":"Identification","item":[{"name":"Recovery","item":[{"name":"Create","id":"19e2fe91-298b-42a9-b273-1588632c2fe7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}"}],"body":{"mode":"raw","raw":"{\n\t\"document_number\": \"38020159\",\n\t\"document_type\": \"dni\",\n\t\"gender\": \"male\"\n}"},"url":"{{base-api-url}}/api/v1/users/identification/recovery","urlObject":{"path":["api","v1","users","identification","recovery"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"29dabde0-afe4-4434-9fe9-daa761d4886a","name":"Create - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/b7d54721-5433-43bf-ae1a-6e857a90555f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n\t\"email\": \"j***@example.com\",\n\t\"external_id\": \"10903\"\n}"},{"id":"2bdcfb86-146d-46de-907a-d93f0e286a5b","name":"Create - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/b7d54721-5433-43bf-ae1a-6e857a90555f"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n    \t{\n    \t\t\"status\": 404,\n    \t\t\"code\": \"user_not_found\",\n    \t\t\"message\": \"Usuario no registrado. Por favor verifique los datos ingresados.\",\n    \t\t\"meta\": null\n    \t}\n    ]\n}"},{"id":"b93cd6e5-b8fc-4299-9e8d-1a93df765687","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"document_number\": \"38020159\",\n\t\"document_type\": \"dni\",\n\t\"gender\": \"male\"\n}"},"url":"{{base-api-url}}/api/v1/users/identification/recovery"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n\t\"job_id\":\"b7d54721-5433-43bf-ae1a-6e857a90555f\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/b7d54721-5433-43bf-ae1a-6e857a90555f\"\n}"}],"_postman_id":"19e2fe91-298b-42a9-b273-1588632c2fe7"},{"name":"Validate","id":"1f76901b-7426-4ea2-ac02-35f409a3dad8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"external_id\": \"10903\"\n}"},"url":"{{base-api-url}}/api/v1/users/identification/recovery","urlObject":{"path":["api","v1","users","identification","recovery"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3c71716c-306f-4cfd-b677-33e124c3c2ee","name":"Update - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/b7d54721-5433-43bf-ae1a-6e857a90555f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"El email es correcto.\"\n}"},{"id":"4e23700e-0543-4e25-8fae-36afeded283c","name":"Update - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"external_id\": \"10903\"\n}"},"url":"{{base-api-url}}/api/v1/users/identification/recovery"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"b7d54721-5433-43bf-ae1a-6e857a90555f\",\n    \"url\": \"https://utilitygo-api-dev.widergydev.com/async_request/jobs/b7d54721-5433-43bf-ae1a-6e857a90555f\"\n}"},{"id":"8a8aaeba-0503-4ee2-8210-3c59e620b210","name":"Update - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/b7d54721-5433-43bf-ae1a-6e857a90555f"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n    \t{\n    \t\t\"status\": 404,\n    \t\t\"code\": \"utility_error\",\n    \t\t\"message\": \"El email que estas intentando recordar no existe\",\n    \t\t\"meta\": null\n    \t}\n    ]\n}"}],"_postman_id":"1f76901b-7426-4ea2-ac02-35f409a3dad8"}],"id":"6e8c99f9-b124-44b7-8fde-8e403bd8aec2","event":[{"listen":"prerequest","script":{"id":"31a50801-e393-490a-b7ee-1c7488113703","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"37801cb1-324d-4478-8ff9-9c424eb48ec0","type":"text/javascript","exec":[""]}}],"_postman_id":"6e8c99f9-b124-44b7-8fde-8e403bd8aec2","description":""},{"name":"Create","id":"f870be0c-2abb-41c7-b0b4-a6dd8305a82b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null,\n\t\"gender\": null\n}"},"url":"{{base-api-url}}/api/v1/users/identification","description":"<p>This endpoint's body will accept either <code>email</code> or <code>document_type</code>, <code>document_number</code> and <code>gender</code> depending on the utility's user identification strategy.</p>\n","urlObject":{"path":["api","v1","users","identification"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3519f959-07b5-4b69-b859-60b838aba91d","name":"Create - 200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/922f4d61-c0f0-4488-a297-60fc53ea94d5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 25 Feb 2019 18:17:55 GMT"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"d4f3c8f4-51db-47a3-98a6-df7bb318a06b"},{"key":"X-Runtime","value":"0.024218"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_name\": false,\n    \"request_phone\": true,\n    \"request_gender\": true,\n    \"request_document\": true\n}"},{"id":"efb9a30e-338f-46a6-bed2-0b3a0a24168f","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null,\n\t\"gender\": null\n}"},"url":"{{base-api-url}}/api/v1/users/identification"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 16:53:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"5f849a2c-b834-4fa4-b3de-89be1a929db0","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.028589","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"job_id\":\"922f4d61-c0f0-4488-a297-60fc53ea94d5\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/922f4d61-c0f0-4488-a297-60fc53ea94d5\"\n}"}],"_postman_id":"f870be0c-2abb-41c7-b0b4-a6dd8305a82b"}],"id":"1071badb-6eae-493a-9b82-e09e7f568ffc","_postman_id":"1071badb-6eae-493a-9b82-e09e7f568ffc","description":""},{"name":"Omniauth","item":[{"name":"Facebook","id":"fced30c5-79ea-4f8c-8a85-c20ec5bbb51f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/users/client_auth/facebook?access_token={{provider-access-token}}","description":"<p>Facebook federated authentication</p>\n","urlObject":{"path":["api","v1","users","client_auth","facebook"],"host":["{{base-api-url}}"],"query":[{"key":"access_token","value":"{{provider-access-token}}"}],"variable":[]}},"response":[],"_postman_id":"fced30c5-79ea-4f8c-8a85-c20ec5bbb51f"},{"name":"Microsoft","id":"f24adc0c-57f6-4c51-b7df-604f7340bd4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/users/client_auth/microsoft?access_token={{provider-access-token}}","description":"<p>Microsoft federated authentication</p>\n","urlObject":{"path":["api","v1","users","client_auth","microsoft"],"host":["{{base-api-url}}"],"query":[{"key":"access_token","value":"{{provider-access-token}}"}],"variable":[]}},"response":[],"_postman_id":"f24adc0c-57f6-4c51-b7df-604f7340bd4e"},{"name":"Twitter","id":"ae25b6a0-60d2-4265-a6cd-7cc2a5588676","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/users/client_auth/twitter?access_token={{provider-access-token}}","description":"<p>Twitter federated authentication</p>\n","urlObject":{"path":["api","v1","users","client_auth","twitter"],"host":["{{base-api-url}}"],"query":[{"key":"access_token","value":"{{provider-access-token}}"}],"variable":[]}},"response":[],"_postman_id":"ae25b6a0-60d2-4265-a6cd-7cc2a5588676"},{"name":"Google","id":"6d83f0e5-9d6b-4df7-bed3-2c33f5454c58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/users/client_auth/google?access_token={{provider-access-token}}","description":"<p>Google federated authentication</p>\n","urlObject":{"path":["api","v1","users","client_auth","google"],"host":["{{base-api-url}}"],"query":[{"key":"access_token","value":"{{provider-access-token}}"}],"variable":[]}},"response":[],"_postman_id":"6d83f0e5-9d6b-4df7-bed3-2c33f5454c58"},{"name":"Twitter Callback","id":"df25d6b8-85ab-442c-b310-9c8e649fd797","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"oauth_verifier\": \"<verifier>\",\n\t\"oauth_token\": \"<token>\"\n}"},"url":"{{base-api-url}}/api/v1/users/client_auth/twitter_callback","description":"<p>Twitter federated authentication</p>\n","urlObject":{"path":["api","v1","users","client_auth","twitter_callback"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df25d6b8-85ab-442c-b310-9c8e649fd797"},{"name":"Twitter Request Token","id":"3d8f24f3-e33f-4bdf-b86d-0236a953bdb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/users/client_auth/twitter_request_token","description":"<p>Twitter federated authentication</p>\n","urlObject":{"path":["api","v1","users","client_auth","twitter_request_token"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d8f24f3-e33f-4bdf-b86d-0236a953bdb6"}],"id":"a18bfe0a-9ca0-49a7-baf4-519b4def4d1c","description":"<p>Endpoints for federated authentication.</p>\n","event":[{"listen":"prerequest","script":{"id":"4fc0ce63-5b23-49da-882f-cc3c6bdfb759","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5bb1668f-5a96-4f75-ad21-a90fc9d32722","type":"text/javascript","exec":[""]}}],"_postman_id":"a18bfe0a-9ca0-49a7-baf4-519b4def4d1c"},{"name":"Passwords","item":[{"name":"New Password Request","id":"fe794160-712d-4343-94a3-78467205a14a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null\n}"},"url":"{{base-api-url}}/api/v1/users/new_password_request","description":"<p>This endpoint starts the flow of the password reset. Email should be sent in the case of a Default or Edenor Utility and document type and number for the case of Edelap.</p>\n","urlObject":{"path":["api","v1","users","new_password_request"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"2f11f29b-f255-44f4-91ca-5b66c5368fff","name":"New Password Request - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{API_TOKEN}}","disabled":true}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": null,\n\t\"document_number\": null\n}"},"url":"{{base-api-url}}/api/v1/users/new_password_request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"194","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 08 Feb 2019 20:01:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"c1dc0398fa96632837f84b6135008a0d\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"08e42c80-abf1-4e2a-b5e2-bf36c8e57188","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"1.633310","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"message\": \"En instantes recibirás un correo electrónico con instrucciones para cambiar tu contraseña. Si no ves el correo en tu bandeja de entrada, revisá la carpeta de correo no deseado.\"\n}"}],"_postman_id":"fe794160-712d-4343-94a3-78467205a14a"},{"name":"Create New Password","id":"c44746f1-6512-4325-b2b1-fbc29efdd74a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"password\": \"12345678a\",\n\t\"password_confirmation\": \"12345678a\",\n\t\"reset_password_token\": \"pXGchiB-KaWSvu79awxt\"\n}"},"url":"{{base-api-url}}/api/v1/users/password","urlObject":{"path":["api","v1","users","password"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"a7b03015-7391-45d2-bcf1-0bc1fe5cb02d","name":"Create New Password - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"password\": \"12345678a\",\n\t\"password_confirmation\": \"12345678a\",\n\t\"reset_password_token\": \"pXGchiB-KaWSvu79awxt\"\n}"},"url":"{{base-api-url}}/api/v1/users/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"58","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 08 Feb 2019 20:13:50 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"82afc544b00524358735971310d820c9\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"3b8d49c6-91ec-4a35-90d5-1aa4ff6d3828","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"1.250044","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"message\": \"Su contraseña fue actualizada correctamente.\"\n}"}],"_postman_id":"c44746f1-6512-4325-b2b1-fbc29efdd74a"},{"name":"Update","id":"fdf1ee6c-930e-4505-83aa-09a0f550cd5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}","description":"<p>Optional</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"current_password\": \"old_password\",\n\t\"password\": \"new_password\",\n\t\"password_confirmation\": \"new_password\"\n}"},"url":"{{base-api-url}}/api/v1/users/password","urlObject":{"path":["api","v1","users","password"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"2a70fc29-8573-4085-ada8-2ef1350a0669","name":"Update - 200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"current_password\": \"old_password\",\n\t\"password\": \"new_password\",\n\t\"password_confirmation\": \"new_password\"\n}"},"url":"{{base-api-url}}/api/v1/users/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 25 Feb 2019 19:59:57 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"82ae4b19-810e-4f43-a9b0-20359721d606"},{"key":"X-Runtime","value":"3.684442"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fdf1ee6c-930e-4505-83aa-09a0f550cd5d"},{"name":"Token Validation","id":"e702d944-fab1-4bd8-bcdb-ced080c89914","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"reset_password_token\": \"pXGchiB-KaWSvu79awxt\"\n}"},"url":"{{base-api-url}}/api/v1/users/password/token_validation","description":"<p>Endpoint for reset password token validation</p>\n","urlObject":{"path":["api","v1","users","password","token_validation"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"45ad107d-7f1e-4f16-a054-0d1c073f6df1","name":"Token Validation - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"reset_password_token\": \"pXGchiB-KaWSvu79awxt\"\n}"},"url":"{{base-api-url}}/api/v1/users/password/token_validation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"0","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 08 Feb 2019 20:11:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"6c0f5525-122b-49b8-996f-5bf8cc91ca5d","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.010471","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":""}],"_postman_id":"e702d944-fab1-4bd8-bcdb-ced080c89914"}],"id":"36397254-6af0-41ba-801d-891dd20c3802","description":"<p>Endpoints for password change</p>\n","_postman_id":"36397254-6af0-41ba-801d-891dd20c3802"},{"name":"Validation Answers","item":[{"name":"Create","id":"613a9601-4a95-4ee2-9af0-a57ca6caa608","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"provider\": \"Equifax\",\n    \"transaction_id\": \"NnyvTDlAvCfyScHLn3Yb\",\n\t\"questions_id\": \"1073684\",\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"22333444\",\n\t\"answers\":\n\t[\n\t\t{\"question_id\": \"1\", \"response_key\": \"2\", \"response_value\": \"66 Nro 210 E/ 115 y 116 Fondo a 67 13 LA PLATA\"},\n\t\t{\"question_id\": \"2\", \"response_key\": \"1\", \"response_value\": \"No\"},\n\t\t{\"question_id\": \"3\", \"response_key\": \"2\", \"response_value\": \"Vivienda\"},\n\t\t{\"question_id\": \"4\", \"response_key\": \"3\", \"response_value\": \"03/01/1985\"}\n\t]\n}"},"url":"{{base-api-url}}/api/v1/users/validation_answers","urlObject":{"path":["api","v1","users","validation_answers"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"17cac8da-194c-46bd-b303-3836d66e1fb2","name":"Create 200 - OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/166e2abf-aa4f-4e44-a982-de5f6a985e13"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"Verificacion exitosa.\"\n}"},{"id":"478ad1ae-8a1c-4c0a-ab3e-76746592de43","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{UTILITY_ID}}"},{"key":"Authorization","value":"{{API_TOKEN}}","disabled":true},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"provider\": \"Equifax\",\n\t\"questions_id\": \"1\",\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"22333444\",\n\t\"answers\":\n\t[\n\t\t{\"question_id\": \"1\", \"response_key\": \"2\", \"response_value\": \"66 Nro 210 E/ 115 y 116 Fondo a 67 13 LA PLATA\"},\n\t\t{\"question_id\": \"2\", \"response_key\": \"1\", \"response_value\": \"No\"},\n\t\t{\"question_id\": \"3\", \"response_key\": \"2\", \"response_value\": \"Vivienda\"},\n\t\t{\"question_id\": \"4\", \"response_key\": \"3\", \"response_value\": \"03/01/1985\"}\n\t]\n}"},"url":"{{base-api-url}}/api/v1/users/validation_answers"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 17:30:51 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"c319534b-eaa9-4a94-8685-7b856974c4dd","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.023890","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"job_id\":\"166e2abf-aa4f-4e44-a982-de5f6a985e13\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/166e2abf-aa4f-4e44-a982-de5f6a985e13\"\n}"}],"_postman_id":"613a9601-4a95-4ee2-9af0-a57ca6caa608"}],"id":"c1a6218f-4a4f-446a-a744-850aafeb3922","_postman_id":"c1a6218f-4a4f-446a-a744-850aafeb3922","description":""},{"name":"Validation Questions","item":[{"name":"Create","id":"c64c8a67-ec9c-4781-a254-fe4654d3b8cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\"\n}"},"url":"{{base-api-url}}/api/v1/users/validation_questions","urlObject":{"path":["api","v1","users","validation_questions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"d1415f1a-a259-418a-808f-c79322f2e1e5","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{UTILITY_ID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\"\n}"},"url":"{{base-api-url}}/api/v1/users/validation_questions"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 17:31:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"36c3e660-978a-4f9d-a759-4a9394b37191","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.031453","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"job_id\":\"2b1bd13b-3ccc-45a0-a893-9827a1c017a0\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/2b1bd13b-3ccc-45a0-a893-9827a1c017a0\"\n}"},{"id":"f9b17901-806b-4c31-b256-4bb1e81fa36f","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\"\n}"},"url":"{{base-api-url}}/async_request/jobs/2b1bd13b-3ccc-45a0-a893-9827a1c017a0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"person\": {\n        \"first_name\": \"JUAN\",\n        \"last_name\": \"PEREZ\",\n        \"document_type\": \"dni\",\n        \"document_number\": 25111222,\n        \"gender\": \"male\"\n    },\n    \"validation_questions\": {\n        \"provider\": \"Equifax\",\n        \"id\": \"201905078818617\",\n        \"questions\": [\n            {\n                \"id\": 184,\n                \"question\": \"Esta o estuvo alguna vez relacionado con\",\n                \"answers\": {\n                    \"0\": \"Ninguno de los anteriores\",\n                    \"1\": \"COPPONI,MARIA I\",\n                    \"2\": \"USANDIVARAS,MARIA I\",\n                    \"3\": \"AVENDANO,MARIA I\",\n                    \"4\": \"MARSILLI,MARIA I\"\n                },\n                \"field_type\": \"radio\",\n                \"order\": 1,\n                \"error_message\": null\n            },\n            {\n                \"id\": 192,\n                \"question\": \"Has trabajado o vivido en alguna de las siguientes alturas\",\n                \"answers\": {\n                    \"0\": \"Ninguno de los anteriores\",\n                    \"1\": \"7682\",\n                    \"2\": \"7982\",\n                    \"3\": \"7882\",\n                    \"4\": \"7782\"\n                },\n                \"field_type\": \"radio\",\n                \"order\": 2,\n                \"error_message\": null\n            },\n            {\n                \"id\": 193,\n                \"question\": \"(L) Alguno de los siguientes telefonos le resulta familiar\",\n                \"answers\": {\n                    \"0\": \"Ninguno de los anteriores\",\n                    \"1\": \"01142761857\"\n                },\n                \"field_type\": \"radio\",\n                \"order\": 3,\n                \"error_message\": null\n            },\n            {\n                \"id\": 190,\n                \"question\": \"Tiene una tarjeta de credito de BANCO SANTANDER RIO SA\",\n                \"answers\": {\n                    \"1\": \"Si\",\n                    \"2\": \"No\"\n                },\n                \"field_type\": \"radio\",\n                \"order\": 4,\n                \"error_message\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"c64c8a67-ec9c-4781-a254-fe4654d3b8cf"}],"id":"9376b152-2b51-4227-8971-6c56fe219852","_postman_id":"9376b152-2b51-4227-8971-6c56fe219852","description":""},{"name":"Notifications","item":[{"name":"Settings","item":[{"name":"Show","id":"aa93a3d1-d8ca-4137-8e6d-5a3555a035a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/users/notifications/settings","urlObject":{"path":["api","v1","users","notifications","settings"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"05246888-ea44-4b84-b1d5-beb59102175b","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications/settings"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Mar 2019 17:08:07 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"4e3a78f2-fe23-4c62-9fe3-659835dda92d"},{"key":"X-Runtime","value":"0.024172"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"6adebfee-f92b-48f4-a808-61cf24d8f397\",\n    \"url\": \"https://utilitygo-api-dev.widergydev.com/async_request/jobs/6adebfee-f92b-48f4-a808-61cf24d8f397\"\n}"},{"id":"1d378666-7fdf-4c68-85b9-4de421f82bcf","name":"Show 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/users/notifications/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0a5d41f6-ffe0-49e3-a606-effe619620d6"},{"key":"X-Runtime","value":"0.147679"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"enabled\": true,\n    \"channels\": [\n        {\n            \"channel\": \"email_push\",\n            \"enabled\": true,\n            \"preferences\": {\n                \"user_license\": true,\n                \"user_project_responses\": true\n            }\n        }\n    ]\n}"}],"_postman_id":"aa93a3d1-d8ca-4137-8e6d-5a3555a035a8"},{"name":"Update","id":"53fc830c-9e2d-4392-9eeb-c8516dc160bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\t\n    \"enabled\": \"true\",\n    \"channels\": [\n        {\n            \"channel\": \"email_push\",\n            \"enabled\": \"true\",\n            \"preferences\": {\n                \"user_license\": \"true\",\n                \"user_project_responses\": \"true\"\n            }\n        }\n    ]\n}"},"url":"{{base-api-url}}/api/v1/users/notifications/settings","urlObject":{"path":["api","v1","users","notifications","settings"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0c55eee8-674d-4b03-8f8b-01ea74b35990","name":"Update - 200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/e72eac41-5c99-43d4-87df-7ccfb5828342"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Mar 2019 17:10:01 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"3cac4923-8f66-4fa4-8e47-858f524942d0"},{"key":"X-Runtime","value":"0.075336"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"La configuración de notificaciones se actualizó correctamente.\"\n}"},{"id":"65eeef75-f482-46ad-85bb-cc1c88a96e2b","name":"Update - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enabled\": \"true\",\n\t\"channels\": [\n\t\t\t{\n\t\t\t\t\"channel\": \"email_push\",\n\t\t\t\t\"enabled\": \"true\",\n\t\t\t\t\"preferences\": {\n\t\t\t\t\t\"account\": \"true\",\n\t\t\t\t\t\"balance\": \"true\",\n\t\t\t\t\t\"outage\": \"true\"\n\t\t\t\t}\n\t\t\t}\n\t\t]\n}"},"url":"{{base-api-url}}/api/v1/users/notifications/settings"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Mar 2019 17:10:01 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"3cac4923-8f66-4fa4-8e47-858f524942d0"},{"key":"X-Runtime","value":"0.075336"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"e72eac41-5c99-43d4-87df-7ccfb5828342\",\n    \"url\": \"https://utilitygo-api-dev.widergydev.com/async_request/jobs/e72eac41-5c99-43d4-87df-7ccfb5828342\"\n}"}],"_postman_id":"53fc830c-9e2d-4392-9eeb-c8516dc160bc"}],"id":"55d59a75-bdb6-4a83-af34-908578d4172a","_postman_id":"55d59a75-bdb6-4a83-af34-908578d4172a","description":""},{"name":"Index","id":"21553f72-1bce-4d15-9faa-26de84bf5107","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications","urlObject":{"path":["api","v1","users","notifications"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"e63de6f3-dcac-429f-bc08-62f71376fcea","name":"Index","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"835c9a6970bf9d5175c471bbe4a11dad\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ca6b3890-aa00-4a47-9d17-e4ef3d8b2728"},{"key":"X-Runtime","value":"0.471065"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2,\n        \"user_id\": 1,\n        \"message\": \"Notification\",\n        \"entity_id\": null,\n        \"destination\": \"home\",\n        \"status\": \"seen\",\n        \"category\": \"general\",\n        \"created_at\": \"2019-09-18T16:36:03.020-03:00\",\n        \"updated_at\": \"2019-09-18T16:42:56.331-03:00\"\n    },\n    {\n        \"id\": 1,\n        \"user_id\": 1,\n        \"message\": \"Factura por vencer\",\n        \"entity_id\": null,\n        \"destination\": \"home\",\n        \"status\": \"seen\",\n        \"category\": \"general\",\n        \"created_at\": \"2019-09-18T16:36:03.018-03:00\",\n        \"updated_at\": \"2019-09-18T16:42:56.326-03:00\"\n    }\n]"},{"id":"f00563d7-938d-4a98-8bbc-02a1d04944af","name":"Index","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"835c9a6970bf9d5175c471bbe4a11dad\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ca6b3890-aa00-4a47-9d17-e4ef3d8b2728"},{"key":"X-Runtime","value":"0.471065"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2,\n        \"user_id\": 1,\n        \"message\": \"Notification\",\n        \"entity_id\": null,\n        \"destination\": \"home\",\n        \"status\": \"seen\",\n        \"category\": \"general\",\n        \"created_at\": \"2019-09-18T16:36:03.020-03:00\",\n        \"updated_at\": \"2019-09-18T16:42:56.331-03:00\"\n    },\n    {\n        \"id\": 1,\n        \"user_id\": 1,\n        \"message\": \"Factura por vencer\",\n        \"entity_id\": null,\n        \"destination\": \"home\",\n        \"status\": \"seen\",\n        \"category\": \"general\",\n        \"created_at\": \"2019-09-18T16:36:03.018-03:00\",\n        \"updated_at\": \"2019-09-18T16:42:56.326-03:00\"\n    }\n]"}],"_postman_id":"21553f72-1bce-4d15-9faa-26de84bf5107"},{"name":"Update","id":"c769e884-8411-489d-bfcd-0a47a26df28f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications/{{notification-id}}","urlObject":{"path":["api","v1","users","notifications","{{notification-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"54e386fd-0743-4d9e-b987-9908aa7c7e7e","name":"Update - 200 OK","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications/{{notification-id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"468cf33e8c96e35633a104516fcf20fd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"aa38682c-1777-4ccd-8007-489a60d8b7ae"},{"key":"X-Runtime","value":"0.038924"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"user_id\": 1,\n    \"id\": 1,\n    \"status\": \"read\",\n    \"message\": \"Factura por vencer\",\n    \"destination\": \"home\",\n    \"category\": \"general\",\n    \"entity_id\": null,\n    \"created_at\": \"2019-09-18T16:36:03.018-03:00\",\n    \"updated_at\": \"2019-09-18T16:39:57.725-03:00\"\n}"}],"_postman_id":"c769e884-8411-489d-bfcd-0a47a26df28f"},{"name":"Update all","id":"cd65a95b-4f71-4aff-91a0-29c0be232c7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications","urlObject":{"path":["api","v1","users","notifications"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"ee137dfe-dd48-45f2-8a31-691fa5a3e95b","name":"Update all 200 - OK","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/users/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f36d5613-d774-464a-935a-c13ae389559d"},{"key":"X-Runtime","value":"0.159567"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cd65a95b-4f71-4aff-91a0-29c0be232c7f"}],"id":"c463bcc6-99a7-4e22-8cb8-055f55c1b2d7","_postman_id":"c463bcc6-99a7-4e22-8cb8-055f55c1b2d7","description":""},{"name":"Emails","item":[{"name":"Create","id":"79e24c4e-f27d-46bc-aa3c-35e945685732","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"new_email\": \"juan_perez1@example.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/email","description":"<p>Request an email change.</p>\n","urlObject":{"path":["api","v1","users","email"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"01fbf6af-3ed1-4ad7-9676-6384487662c2","name":"Create - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"new_email\": \"juan_perez@example.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ba134b02-6133-4064-bc89-1ca49157e6bc"},{"key":"X-Runtime","value":"0.014197"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"email_is_taken\",\n            \"message\": \"La dirección de email ya está siendo utilizada por otro usuario.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"1920da8f-cf27-4b4d-85c4-95704b0d89e3","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"new_email\": \"juan_perez1@example.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b578fb6d-f8fc-4bd4-b129-50af5acbed61"},{"key":"X-Runtime","value":"0.050221"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"b159f85b-d4d7-4210-b57e-1f49d4f87030\",\n    \"url\": \"http://localhost:3000/async_request/jobs/b159f85b-d4d7-4210-b57e-1f49d4f87030\"\n}"},{"id":"d9b4ff0a-f355-4879-b98b-bcc46b19d2ca","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"new_email\": \"juan_perez1@example.com\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b578fb6d-f8fc-4bd4-b129-50af5acbed61"},{"key":"X-Runtime","value":"0.050221"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Mail de confirmación enviado correctamente.\"\n}"}],"_postman_id":"79e24c4e-f27d-46bc-aa3c-35e945685732"},{"name":"Update","id":"21ec38b6-7281-4d32-b22f-3c1416989000","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"ZoDcjbBxXMsZoV9r3xyz\"\n}"},"url":"{{base-api-url}}/api/v1/users/email","description":"<p>Confirm email change.</p>\n","urlObject":{"path":["api","v1","users","email"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"43173162-acba-4a1f-b4f3-dae02a53d031","name":"Update - 200 Ok","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"ZoDcjbBxXMsZoV9r3xyz\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"388e0e5f-1940-4c0b-97a0-a58d922ca968"},{"key":"X-Runtime","value":"0.020803"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Email actualizado correctamente.\"\n}"},{"id":"4735ed73-fd46-42b4-a92c-0b4868fc5ab1","name":"Update - 422 Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"k6qsJ8iZfn7TtTi-x28B\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ff902aaa-4452-49bc-a287-ea8f9f3b63ed"},{"key":"X-Runtime","value":"0.016129"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"email_is_taken\",\n            \"message\": \"La dirección de email ya está siendo utilizada por otro usuario.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"8f1d0869-1de8-42c3-b595-5a1c7128faab","name":"Update - 400 Bad Request (Invalid Token)","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"ZoDcjbBxXMsZoV9r3xy\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a8efc651-6f76-4bf2-89bc-e250ff97b5f6"},{"key":"X-Runtime","value":"0.016227"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"invalid_confirmation_token\",\n            \"message\": \"El código de verificación ingresado es incorrecto.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"a29fdc33-abc3-48eb-aef7-d5d3d73795b8","name":"Update - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_token\": \"ZoDcjbBxXMsZoV9r3xyz\"\n}"},"url":"{{base-api-url}}/api/v1/users/email"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"388e0e5f-1940-4c0b-97a0-a58d922ca968"},{"key":"X-Runtime","value":"0.020803"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"d19abbcd-b41e-4167-b3e9-be729ace1f8f\",\n    \"url\": \"http://localhost:3000/async_request/jobs/d19abbcd-b41e-4167-b3e9-be729ace1f8f\"\n}"}],"_postman_id":"21ec38b6-7281-4d32-b22f-3c1416989000"}],"id":"4c769668-076f-44d6-bdf0-9aa3f570eb7a","description":"<p>Endpoints to change a user's email.</p>\n","_postman_id":"4c769668-076f-44d6-bdf0-9aa3f570eb7a"},{"name":"Show","id":"1fe606e6-9bda-477d-9886-4d92e6860409","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/users","urlObject":{"path":["api","v1","users"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"6bda48bf-feb2-4cff-be96-47a419ab7b2a","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[],"url":"{{base-api-url}}/async_request/jobs/f6a67969-9a19-4fcb-aa12-11b3394a1a52"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 01 Mar 2019 17:53:02 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"237f006a-2c66-44ae-9ac3-2d870f8863db"},{"key":"X-Runtime","value":"0.025632"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"external_id\": \"699498\",\n    \"email\": \"juan_perez@example.com\",\n    \"provider\": null,\n    \"uid\": null,\n    \"updated_profile\": true,\n    \"first_name\": \"JUAN\",\n    \"last_name\": \"PEREZ\",\n    \"document_type\": \"dni\",\n    \"document_number\": \"20123456\",\n    \"gender\": \"male\",\n    \"phone\": {\n        \"area_code\": \"11\",\n        \"number\": \"45675788\",\n        \"type\": \"phone\"\n    },\n    \"confirmed\": true,\n    \"category\": \"Primera\",\n    \"license_number\": \"MP. 200339\",\n    \"license_status\": \"Pendiente de pago\",\n    \"active_license\": true,\n    \"can_start_workflow_response\": true,\n    \"can_edit_workflow_response\": true,\n    \"not_seen_notifications\": 2\n}"},{"id":"8a9fb27e-5f24-4dae-8121-8e775a5ad6f2","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/users/"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"158","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 10 Dec 2018 19:44:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"cdda01fe-233d-4d80-83a2-6a3c1cc30690","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.044956","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n\t\"job_id\":\"f6a67969-9a19-4fcb-aa12-11b3394a1a52\",\n\t\"url\":\"https://utilitygo-api-stage.widergydev.com/async_request/jobs/f6a67969-9a19-4fcb-aa12-11b3394a1a52\"\n}"},{"id":"93f2cf7b-aca9-4eb8-bcc1-e7efef8a18cf","name":"Show","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"777bab7e-3a98-4952-b1e0-fe874d7a81fb"},{"key":"X-Runtime","value":"0.324731"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"external_id\": \"930238\",\n    \"email\": \"juan_perez@example.com\",\n    \"provider\": null,\n    \"uid\": null,\n    \"updated_profile\": true,\n    \"first_name\": \"JUAN\",\n    \"last_name\": \"PEREZ\",\n    \"document_type\": \"dni\",\n    \"document_number\": 20123456,\n    \"gender\": \"male\",\n    \"phone\": {\n        \"area_code\": \"11\",\n        \"number\": \"45675788\",\n        \"type\": \"phone\"\n    },\n    \"confirmed\": true,\n    \"category\": \"Primera\",\n    \"license_number\": \"MP. 200339\",\n    \"license_status\": \"Pendiente de pago\",\n    \"active_license\": true,\n    \"can_start_workflow_response\": true,\n    \"can_edit_workflow_response\": true,\n    \"not_seen_notifications\": 2\n}"}],"_postman_id":"1fe606e6-9bda-477d-9886-4d92e6860409"},{"name":"Create","id":"75d09bc5-4772-4e4d-9d65-65fc23a2b507","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Channel","value":"web"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"password\": \"12345678a\",\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\",\n\t\"phone\": {\n\t\t\"area_code\": \"11\",\n\t\t\"number\": \"66554433\",\n\t\t\"type\": \"mobile\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/users","urlObject":{"path":["api","v1","users"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"275f82d1-16a2-416c-88fe-baf5bfc22bdb","name":"Create - 201 Created","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Channel","value":"web"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"password\": \"12345678a\",\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\",\n\t\"phone\": {\n\t\t\"area_code\": \"11\",\n\t\t\"number\": \"66554433\",\n\t\t\"type\": \"mobile\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"46","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 16:30:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"daaa86032d91256cc08c4d58da9c24e2\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"44d23d98-2f78-4f77-813d-11803ef679b1","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"4.727250","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"id\":3470,\n\t\"email\":\"juan@example.com\"\n}"}],"_postman_id":"75d09bc5-4772-4e4d-9d65-65fc23a2b507"},{"name":"Update","id":"c2f6878b-bf79-4ff3-bd3b-15f18484a661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\",\n\t\"phone\": {\n\t\t\"area_code\": \"11\",\n\t\t\"number\": \"66554433\",\n\t\t\"type\": \"mobile\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/users","urlObject":{"path":["api","v1","users"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"6e829ada-d419-4a82-b2f6-92d1e27fbe3a","name":"Update - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/async_request/jobs/cc609c48-fdf4-4b49-b045-fb6e6d427c97"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"Sus datos fueron actualizados correctamente\"\n}"},{"id":"f5f9ce38-e312-4e88-8ef9-05baa798430d","name":"Update - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"juan@example.com\",\n\t\"document_type\": \"dni\",\n\t\"document_number\": \"25111222\",\n\t\"gender\": \"male\",\n\t\"phone\": {\n\t\t\"area_code\": \"11\",\n\t\t\"number\": \"66554433\",\n\t\t\"type\": \"mobile\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/users"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 17:33:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"ca2498a4-ba10-4460-aa06-5a3930eb9846","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.030882","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"job_id\":\"cc609c48-fdf4-4b49-b045-fb6e6d427c97\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/cc609c48-fdf4-4b49-b045-fb6e6d427c97\"\n}"}],"_postman_id":"c2f6878b-bf79-4ff3-bd3b-15f18484a661"}],"id":"91ac476d-54b9-42b4-8c10-3a7d685fedb5","_postman_id":"91ac476d-54b9-42b4-8c10-3a7d685fedb5","description":""},{"name":"Consumers","item":[{"name":"Sessions","item":[{"name":"Create","event":[{"listen":"test","script":{"id":"3c9d6474-7b14-47b2-b491-d93788fd9bcf","exec":["var jsonData = pm.response.json();","pm.environment.set(\"consumer-access-token\", jsonData.access_token);",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"4f32dfbf-1b7b-474c-9710-103d66e3701e","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bcd12704-87fe-43bb-b78d-e9786a0f802b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"abeber\",\n\t\"password\": \"12345678\",\n\t\"document_type\": \"DNI\",\n\t\"document_number\": \"36401684\"\n}"},"url":"{{base-api-url}}/consumer_api/v1/sessions","description":"<p>Consumer login with optional extra data to be added to the access token.</p>\n","urlObject":{"path":["consumer_api","v1","sessions"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"2b526645-d592-486b-b2b9-325fe8e4ac2b","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"ConsumerX\",\n\t\"password\": \"12345678\",\n\t\"document_type\": \"DNI\",\n\t\"document_number\": \"11222333\"\n}"},"url":"{{base-api-url}}/consumer_api/v1/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"6390723dc1f290bbae521f851274de9c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"75544c16-d222-49b2-9c6f-194e12aa97f5"},{"key":"X-Runtime","value":"0.079418"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJjb25zdW1lcl9pZCI6MSwiZG9jdW1lbnRfbnVtYmVyIjoiMjM1Njc4OTciLCJkb2N1bWVudF90eXBlIjoiRE5JIiwidmVyaWZpY2F0aW9uX2NvZGUiOiJSTnMtTEU3RTFaaWh2bnl5TlJ6eHg3ZHo3Rm1hc0xNcGFuVDdLQktwc3llb2FwenNoR3EzczVtOU5vaXAzdDRnIiwicmVuZXdfaWQiOiJYVnBHRXh6ZGJHMm1nV1ZDZmFXVnItR2dDUkdzRUZlUCIsIm1heGltdW1fdXNlZnVsX2RhdGUiOjE2MjA5MzI2MzYsImV4cGlyYXRpb25fZGF0ZSI6MTYxNzkwODYzNiwid2FybmluZ19leHBpcmF0aW9uX2RhdGUiOjE1ODY0NTkwMzZ9._ZmrKDRB3yI8r_nrnZUbc6p-P2O6tUe0bX_hA4wfGK4\",\n    \"renew_id\": \"XVpGExzdbG2mgWVCfaWVr-GgCRGsEFeP\",\n    \"expires_at\": \"2021-04-08T16:03:56.234-03:00\"\n}"},{"id":"952633b7-0e6a-47cc-82ee-d2e4fa904229","name":"Create - 401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"ConsumerX\",\n\t\"password\": \"invalid_password\",\n\t\"document_type\": \"DNI\",\n\t\"document_number\": \"11222333\"\n}"},"url":"{{base-api-url}}/consumer_api/v1/sessions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"1abdf604-b88a-40c6-b78f-eff10adb67d1"},{"key":"X-Runtime","value":"0.109688"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 401,\n            \"code\": \"invalid_credentials\",\n            \"message\": \"Usuario y/o contraseña incorrectos\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"bcd12704-87fe-43bb-b78d-e9786a0f802b"}],"id":"df2c83d5-59d3-4fbe-9eea-fa1814a80275","description":"<p>Consumer authentication endpoints</p>\n","_postman_id":"df2c83d5-59d3-4fbe-9eea-fa1814a80275"},{"name":"Projects","item":[{"name":"Show","id":"36d4f26d-20a8-448e-a5e6-a58410d95cdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/project","urlObject":{"path":["consumer_api","v1","project"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"5d296d24-0be1-4397-b2ae-259626d061bf","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/project"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8c1a1c3d-3b32-4a98-bb7b-ed55cb24c5f8"},{"key":"X-Runtime","value":"0.032362"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 404,\n            \"code\": \"project_not_found\",\n            \"message\": \"No se encontró ningun proyecto.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"b5a9920d-bbd5-4a77-9ff5-ca103a6e1439","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"db4de2de5a1229005deea05fc26f41e2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"eaf831ec-b65b-4aa7-a425-f5563a702738"},{"key":"X-Runtime","value":"0.469931"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Formulario 3.4\",\n    \"forms\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"order\": 4,\n            \"name\": \"Formulario 3.4 - Paso 1\",\n            \"code\": \"form_1\",\n            \"custom\": false,\n            \"fields\": [\n                {\n                    \"id\": 3,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 1,\n                    \"suborder\": 1,\n                    \"title\": \"Dirección\",\n                    \"code\": \"field_3\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"direction\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 4,\n                    \"type\": \"Fields::Image\",\n                    \"order\": 2,\n                    \"suborder\": 1,\n                    \"title\": \"Foto de la factura\",\n                    \"code\": \"field_4\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"photo\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 5,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 3,\n                    \"suborder\": 1,\n                    \"title\": \"Campo Requerido\",\n                    \"code\": \"field_5\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": \"Campo requerido!\",\n                    \"key\": \"required\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 6,\n                    \"type\": \"Fields::Rating\",\n                    \"order\": 4,\n                    \"suborder\": 1,\n                    \"title\": \"Satisfacción\",\n                    \"code\": \"field_6\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"rating\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Carita feliz\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-19T11:36:07.776-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.782-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_1\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Carita triste\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-19T11:36:07.787-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.792-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_2\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"type\": \"Fields::Checklist\",\n                    \"order\": 5,\n                    \"suborder\": 1,\n                    \"title\": \"Listado\",\n                    \"code\": \"field_7\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"list\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 3,\n                            \"name\": \"Check 1\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-19T11:36:07.835-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.841-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_3\"\n                        },\n                        {\n                            \"id\": 4,\n                            \"name\": \"Check 2\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-19T11:36:07.846-03:00\",\n                            \"updated_at\": \"2020-02-19T11:36:07.851-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_4\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"type\": \"Fields::AutoComplete\",\n                    \"order\": 6,\n                    \"suborder\": 1,\n                    \"title\": \"External Field Options\",\n                    \"code\": \"field_8\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"external_options\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": true,\n                    \"field_options\": []\n                },\n                {\n                    \"id\": 2,\n                    \"type\": \"Fields::Switch\",\n                    \"order\": 10,\n                    \"suborder\": 1,\n                    \"title\": \"Switch\",\n                    \"code\": \"field_2\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 1,\n                    \"type\": \"Fields::Checkbox\",\n                    \"order\": 11,\n                    \"suborder\": 1,\n                    \"title\": \"Checkbok\",\n                    \"code\": \"field_1\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"order\": 5,\n            \"name\": \"Formulario 3.4 - Paso 2\",\n            \"code\": \"form_2\",\n            \"custom\": false,\n            \"fields\": []\n        }\n    ],\n    \"workflows\": [\n        {\n            \"id\": 2,\n            \"utility_id\": 1,\n            \"order\": 2,\n            \"name\": \"Formulario 3.4.2\",\n            \"code\": \"workflow_3_4_2\"\n        },\n        {\n            \"id\": 3,\n            \"utility_id\": 1,\n            \"order\": 3,\n            \"name\": \"Formulario 3.4.3\",\n            \"code\": \"workflow_3_4_3\"\n        }\n    ]\n}"}],"_postman_id":"36d4f26d-20a8-448e-a5e6-a58410d95cdd"},{"name":"Index","id":"089ded6d-2203-4018-87ed-3f15eea684a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/projects","urlObject":{"path":["consumer_api","v1","projects"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"c371447a-535d-4636-ad72-37b0a71bc5ae","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"908f2360e6763743f5a692d1a7b0f60e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"537d90dd-f6da-4061-9b2a-db78625ec06b"},{"key":"X-Runtime","value":"0.049704"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Formulario 3.4\",\n        \"forms\": [\n            {\n                \"id\": 1,\n                \"workflow_id\": 1,\n                \"order\": 4,\n                \"name\": \"Formulario 3.4 - Paso 1\",\n                \"code\": \"form_1\",\n                \"custom\": false,\n                \"fields\": [\n                    {\n                        \"id\": 3,\n                        \"type\": \"Fields::Text\",\n                        \"order\": 1,\n                        \"suborder\": 1,\n                        \"title\": \"Dirección\",\n                        \"code\": \"field_3\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"direction\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 4,\n                        \"type\": \"Fields::Image\",\n                        \"order\": 2,\n                        \"suborder\": 1,\n                        \"title\": \"Foto de la factura\",\n                        \"code\": \"field_4\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"photo\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 5,\n                        \"type\": \"Fields::Text\",\n                        \"order\": 3,\n                        \"suborder\": 1,\n                        \"title\": \"Campo Requerido\",\n                        \"code\": \"field_5\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": \"Campo requerido!\",\n                        \"key\": \"required\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 7,\n                        \"type\": \"Fields::Rating\",\n                        \"order\": 4,\n                        \"suborder\": 1,\n                        \"title\": \"Satisfacción\",\n                        \"code\": \"field_7\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"rating\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false,\n                        \"field_options\": [\n                            {\n                                \"id\": 1,\n                                \"name\": \"Carita feliz\",\n                                \"order\": 1,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_1\",\n                                \"field_id\": 7,\n                                \"created_at\": \"2022-08-22T20:30:19.557-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.560-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_1\"\n                            },\n                            {\n                                \"id\": 2,\n                                \"name\": \"Carita triste\",\n                                \"order\": 2,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_2\",\n                                \"field_id\": 7,\n                                \"created_at\": \"2022-08-22T20:30:19.562-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.564-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_2\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 8,\n                        \"type\": \"Fields::Checklist\",\n                        \"order\": 5,\n                        \"suborder\": 1,\n                        \"title\": \"Listado\",\n                        \"code\": \"field_8\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"list\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false,\n                        \"field_options\": [\n                            {\n                                \"id\": 3,\n                                \"name\": \"Check 1\",\n                                \"order\": 1,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_1\",\n                                \"field_id\": 8,\n                                \"created_at\": \"2022-08-22T20:30:19.589-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.591-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_3\"\n                            },\n                            {\n                                \"id\": 4,\n                                \"name\": \"Check 2\",\n                                \"order\": 2,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_2\",\n                                \"field_id\": 8,\n                                \"created_at\": \"2022-08-22T20:30:19.593-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.596-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_4\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 9,\n                        \"type\": \"Fields::AutoComplete\",\n                        \"order\": 6,\n                        \"suborder\": 1,\n                        \"title\": \"External Field Options\",\n                        \"code\": \"field_9\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"external_options\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": true,\n                        \"field_options\": []\n                    },\n                    {\n                        \"id\": 2,\n                        \"type\": \"Fields::Switch\",\n                        \"order\": 10,\n                        \"suborder\": 1,\n                        \"title\": \"Switch\",\n                        \"code\": \"field_2\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Check\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 1,\n                        \"type\": \"Fields::Checkbox\",\n                        \"order\": 11,\n                        \"suborder\": 1,\n                        \"title\": \"Checkbok\",\n                        \"code\": \"field_1\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Check\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 6,\n                        \"type\": \"Fields::Table\",\n                        \"order\": 12,\n                        \"suborder\": 1,\n                        \"title\": \"Tabla\",\n                        \"code\": \"field_6\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Table\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    }\n                ]\n            },\n            {\n                \"id\": 2,\n                \"workflow_id\": 1,\n                \"order\": 5,\n                \"name\": \"Formulario 3.4 - Paso 2\",\n                \"code\": \"form_2\",\n                \"custom\": false,\n                \"fields\": []\n            }\n        ],\n        \"workflows\": [\n            {\n                \"id\": 2,\n                \"utility_id\": 1,\n                \"order\": 2,\n                \"name\": \"Formulario 3.4.2\",\n                \"code\": \"workflow_3_4_2\"\n            },\n            {\n                \"id\": 3,\n                \"utility_id\": 1,\n                \"order\": 3,\n                \"name\": \"Formulario 3.4.3\",\n                \"code\": \"workflow_3_4_3\"\n            }\n        ],\n        \"is_general_project\": false\n    },\n    {\n        \"name\": \"Proyecto instalación general de gas\",\n        \"forms\": [],\n        \"workflows\": [\n            {\n                \"id\": 5,\n                \"utility_id\": 1,\n                \"order\": 5,\n                \"name\": \"Formulario 3.4.2 General\",\n                \"code\": \"workflow_3_4_2_general\"\n            },\n            {\n                \"id\": 6,\n                \"utility_id\": 1,\n                \"order\": 6,\n                \"name\": \"Formulario 3.4.3 General\",\n                \"code\": \"workflow_3_4_3_general\"\n            }\n        ],\n        \"is_general_project\": true\n    }\n]"}],"_postman_id":"089ded6d-2203-4018-87ed-3f15eea684a2"}],"id":"e994a6c7-9bd6-4494-b3d1-6eeb87578fad","_postman_id":"e994a6c7-9bd6-4494-b3d1-6eeb87578fad","description":""},{"name":"Workflows","item":[{"name":"Show","id":"f6f27cc1-ece8-49d4-9d45-07cf5b855f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/workflows/{{workflow-id}}","urlObject":{"path":["consumer_api","v1","workflows","{{workflow-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"dbf4e637-3684-411f-8bd6-e894e37ca127","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflows/{{workflow-id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"20268d4c49b4ba695323d5577b55be4a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e9ca3d68-a8ed-4b39-92f7-1cf3c974c222"},{"key":"X-Runtime","value":"0.249306"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"utility_id\": 1,\n    \"order\": 1,\n    \"name\": \"Formulario 3.4\",\n    \"code\": \"workflow_3_4\",\n    \"forms\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"order\": 4,\n            \"name\": \"Formulario 3.4 - Paso 1\",\n            \"code\": \"form_1\",\n            \"custom\": false,\n            \"fields\": [\n                {\n                    \"id\": 3,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 1,\n                    \"suborder\": 1,\n                    \"title\": \"Dirección\",\n                    \"code\": \"field_3\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"direction\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 4,\n                    \"type\": \"Fields::Image\",\n                    \"order\": 2,\n                    \"suborder\": 1,\n                    \"title\": \"Foto de la factura\",\n                    \"code\": \"field_4\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"photo\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 5,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 3,\n                    \"suborder\": 1,\n                    \"title\": \"Campo Requerido\",\n                    \"code\": \"field_5\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": \"Campo requerido!\",\n                    \"key\": \"required\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 6,\n                    \"type\": \"Fields::Rating\",\n                    \"order\": 4,\n                    \"suborder\": 1,\n                    \"title\": \"Satisfacción\",\n                    \"code\": \"field_6\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"rating\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Carita feliz\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.498-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.504-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_1\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Carita triste\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.509-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.514-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_2\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"type\": \"Fields::Checklist\",\n                    \"order\": 5,\n                    \"suborder\": 1,\n                    \"title\": \"Listado\",\n                    \"code\": \"field_7\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"list\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 3,\n                            \"name\": \"Check 1\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.558-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.562-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_3\"\n                        },\n                        {\n                            \"id\": 4,\n                            \"name\": \"Check 2\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.567-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.571-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_4\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"type\": \"Fields::AutoComplete\",\n                    \"order\": 6,\n                    \"suborder\": 1,\n                    \"title\": \"External Field Options\",\n                    \"code\": \"field_8\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"external_options\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": true,\n                    \"field_options\": []\n                },\n                {\n                    \"id\": 2,\n                    \"type\": \"Fields::Switch\",\n                    \"order\": 10,\n                    \"suborder\": 1,\n                    \"title\": \"Switch\",\n                    \"code\": \"field_2\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 1,\n                    \"type\": \"Fields::Checkbox\",\n                    \"order\": 11,\n                    \"suborder\": 1,\n                    \"title\": \"Checkbok\",\n                    \"code\": \"field_1\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"order\": 5,\n            \"name\": \"Formulario 3.4 - Paso 2\",\n            \"code\": \"form_2\",\n            \"custom\": false,\n            \"fields\": []\n        }\n    ]\n}"}],"_postman_id":"f6f27cc1-ece8-49d4-9d45-07cf5b855f9c"}],"id":"c600b259-8677-4028-b1a3-23f2fe6f8041","_postman_id":"c600b259-8677-4028-b1a3-23f2fe6f8041","description":""},{"name":"Field Options","item":[{"name":"Index","id":"0b899d05-662f-4483-802c-742265c4f1b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/fields/8/field_options","description":"<p>Get external field options for a given field</p>\n","urlObject":{"path":["consumer_api","v1","fields","8","field_options"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"12ca6c66-eef4-4452-9aba-bd9346b951b2","name":"Index - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/fields/1/field_options"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b72b8ad1-07e6-4012-9613-c59afbb60960"},{"key":"X-Runtime","value":"0.012307"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"a5a00361-4a16-46fd-8833-808342cc5c53","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/fields/1/field_options"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bd369d7c-941e-4f56-936b-206457f592d6"},{"key":"X-Runtime","value":"0.039277"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"4616fcc6-633e-4a83-8994-cd11bdd71ccf\",\n    \"url\": \"http://localhost:3000/async_request/jobs/4616fcc6-633e-4a83-8994-cd11bdd71ccf\"\n}"},{"id":"cc0fce4b-178f-495e-86f1-3a603ec8dd90","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/fields/1/field_options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bd369d7c-941e-4f56-936b-206457f592d6"},{"key":"X-Runtime","value":"0.039277"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": null,\n        \"field_id\": null,\n        \"name\": \"La Plata\",\n        \"order\": 1,\n        \"code\": null,\n        \"parent_field_option_id\": null,\n        \"value\": \"1\",\n        \"configuration\": {}\n    },\n    {\n        \"id\": null,\n        \"field_id\": null,\n        \"name\": \"Ensenada\",\n        \"order\": 2,\n        \"code\": null,\n        \"parent_field_option_id\": null,\n        \"value\": \"2\",\n        \"configuration\": {}\n    }\n]"},{"id":"fe34f583-d2b0-4f18-8c62-b8efbd92c0d2","name":"Index - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/fields/1/field_options"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0d1feed9-b5bd-4f71-9760-d838ad32bfc1"},{"key":"X-Runtime","value":"0.019633"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"no_external_field_options\",\n            \"message\": \"El Field no tiene field options externos\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"0b899d05-662f-4483-802c-742265c4f1b8"}],"id":"f86b6ba1-9769-4421-ad18-036d48fcb56d","event":[{"listen":"prerequest","script":{"id":"5c5a162a-e999-495d-9430-277c11d0531c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58ff1cd3-4b49-4e59-ae79-7d4d06f11324","type":"text/javascript","exec":[""]}}],"_postman_id":"f86b6ba1-9769-4421-ad18-036d48fcb56d","description":""},{"name":"Project Responses","item":[{"name":"Index","id":"7f198d34-8daa-42d7-850d-896fcd9ef7ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses","description":"<p>Returns a list of workflow responses.</p>\n","urlObject":{"path":["consumer_api","v1","project_responses"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"1489e68c-c11e-4837-81ec-54a8ee25a12c","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"external_id\": \"123456\",\n        \"project_number\": \"4568765\",\n        \"status\": \"pending\",\n        \"status_label\": \"Nuevo\",\n        \"general_project_response_id\": null,\n        \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"incomplete\": null,\n        \"cancellable\": null,\n        \"editable\": null,\n        \"can_create_workflow_3_4\": false,\n        \"can_create_workflow_3_5_partial\": false,\n        \"can_create_workflow_3_5_final\": false,\n        \"can_create_workflow_3_5_partial_reconnection\": false,\n        \"can_create_workflow_3_5_final_reconnection\": false,\n        \"can_disable\": false,\n        \"can_mark_as_seen\": false,\n        \"last_workflow_client_approval_at\": null,\n        \"input_values\": {\n            \"ProjectType\": \"Ampliacion\",\n            \"HomeImprovementProject\": false,\n            \"OwnerCuit\": null,\n            \"OwnerFirstName\": \"Juan\",\n            \"OwnerLastName\": \"Perez\",\n            \"OwnerDocumentType\": \"DNI\",\n            \"OwnerDocumentNumber\": \"23567897\",\n            \"OwnerStreet\": \"Juncal\",\n            \"OwnerStreetNumber\": \"984\",\n            \"OwnerFloor\": \"2\",\n            \"OwnerApartment\": \"A\",\n            \"OwnerTower\": \"Golf\",\n            \"OwnerCity\": \"001\",\n            \"OwnerBetweenStreet1\": \"Belgrano\",\n            \"OwnerBetweenStreet2\": \"Larrea\",\n            \"MainPipe\": true,\n            \"SupplyPossibility\": true,\n            \"OwnerPhone\": {\n                \"OwnerPhoneAreaCode\": \"11\",\n                \"OwnerPhoneNumber\": \"45675788\"\n            },\n            \"OwnerPhoneType\": \"CELULAR\",\n            \"OwnerEmail\": \"juan_perez@example.com\",\n            \"IsFunctionalUnit\": null,\n            \"HasPipeModification\": null\n        },\n        \"id\": null,\n        \"user_id\": null\n    },\n    {\n        \"external_id\": \"420420\",\n        \"project_number\": \"4568786\",\n        \"status\": \"pending\",\n        \"status_label\": \"Nuevo\",\n        \"general_project_response_id\": null,\n        \"started_at\": \"2019-03-29T15:20:55.000-03:00\",\n        \"incomplete\": null,\n        \"cancellable\": null,\n        \"editable\": null,\n        \"can_create_workflow_3_4\": false,\n        \"can_create_workflow_3_5_partial\": false,\n        \"can_create_workflow_3_5_final\": false,\n        \"can_create_workflow_3_5_partial_reconnection\": false,\n        \"can_create_workflow_3_5_final_reconnection\": false,\n        \"can_disable\": false,\n        \"can_mark_as_seen\": false,\n        \"last_workflow_client_approval_at\": null,\n        \"input_values\": {\n            \"ProjectType\": \"Ampliacion\",\n            \"HomeImprovementProject\": false,\n            \"OwnerCuit\": null,\n            \"OwnerFirstName\": \"Juan\",\n            \"OwnerLastName\": \"Perez\",\n            \"OwnerDocumentType\": \"DNI\",\n            \"OwnerDocumentNumber\": \"23567897\",\n            \"OwnerStreet\": \"Juncal\",\n            \"OwnerStreetNumber\": \"984\",\n            \"OwnerFloor\": \"2\",\n            \"OwnerApartment\": \"A\",\n            \"OwnerTower\": \"Golf\",\n            \"OwnerCity\": \"001\",\n            \"OwnerBetweenStreet1\": \"Belgrano\",\n            \"OwnerBetweenStreet2\": \"Larrea\",\n            \"MainPipe\": true,\n            \"SupplyPossibility\": true,\n            \"OwnerPhone\": {\n                \"OwnerPhoneAreaCode\": \"11\",\n                \"OwnerPhoneNumber\": \"45675788\"\n            },\n            \"OwnerPhoneType\": \"CELULAR\",\n            \"OwnerEmail\": \"juan_perez@example.com\",\n            \"IsFunctionalUnit\": null,\n            \"HasPipeModification\": null\n        },\n        \"id\": null,\n        \"user_id\": null\n    }\n]"},{"id":"dc472d72-d8eb-4381-94d2-774241e6e13b","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"10b96a73-68b8-4732-a857-4bc0af6c0ef5"},{"key":"X-Runtime","value":"0.081765"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"cde60bf3-f075-497d-b7c4-fd7d7fbac9ae\",\n    \"url\": \"http://localhost:3000/async_request/jobs/cde60bf3-f075-497d-b7c4-fd7d7fbac9ae\"\n}"}],"_postman_id":"7f198d34-8daa-42d7-850d-896fcd9ef7ea"},{"name":"Show","id":"7b0667cb-c27a-453c-b1f2-e3d754452dc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project-response-id}}","urlObject":{"path":["consumer_api","v1","project_responses","{{project-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"c688abdb-45d1-40f0-97de-861c28f034b2","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f998dcdf-8710-44f3-88a0-e16a7faf0f4a"},{"key":"X-Runtime","value":"0.049553"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"user_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_number\": \"4568765\",\n    \"status\": \"pending\",\n    \"status_label\": \"Nuevo\",\n    \"last_snapshot_id\": \"1234\",\n    \"input_values\": {\n        \"AGAccountId\": \"003467754\",\n        \"ProjectType\": \"Ampliacion\",\n        \"HomeImprovementProject\": false,\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"IsFunctionalUnit\": null,\n        \"HasPipeModification\": null,\n        \"MeterNumber\": 123456\n    },\n    \"cancellable\": true,\n    \"editable\": true,\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"can_create_workflow_3_4\": false,\n    \"can_create_workflow_3_5_partial\": true,\n    \"can_create_workflow_3_5_final\": true,\n    \"can_create_workflow_3_5_partial_reconnection\": false,\n    \"can_create_workflow_3_5_final_reconnection\": false,\n    \"can_disable\": false,\n    \"can_mark_as_seen\": false,\n    \"initial_workflow_id\": 1,\n    \"last_workflow_client_approval_at\": null,\n    \"general_project_response_id\": null,\n    \"workflow_responses\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"external_id\": \"123456\",\n            \"project_response_id\": 1,\n            \"workflow_name\": \"Formulario 3.4\",\n            \"status\": \"pending\",\n            \"status_label\": \"Trámite pendiente de enviar\",\n            \"incomplete\": true,\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"claimable\": false,\n            \"discharge_comment\": \"Pedido de revisión de trámite\",\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": null,\n            \"visit_information\": null,\n            \"client_approval_at\": null,\n            \"can_rectify\": true,\n            \"snapshot_id\": \"1234\"\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"external_id\": \"563456\",\n            \"project_response_id\": 1,\n            \"workflow_name\": \"Formulario 3.4\",\n            \"status\": \"observed\",\n            \"status_label\": \"Trámite observado\",\n            \"incomplete\": false,\n            \"started_at\": \"2019-03-20T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"claimable\": false,\n            \"discharge_comment\": null,\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": null,\n            \"visit_information\": null,\n            \"client_approval_at\": null,\n            \"can_rectify\": true,\n            \"snapshot_id\": \"1234\"\n        }\n    ]\n}"},{"id":"e8f0ffd6-e453-4e10-8f75-cba8ff42750b","name":"202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f998dcdf-8710-44f3-88a0-e16a7faf0f4a"},{"key":"X-Runtime","value":"0.049553"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"dce77641-35ae-4b61-b9fe-e628cebe3c15\",\n    \"url\": \"http://localhost:3000/async_request/jobs/dce77641-35ae-4b61-b9fe-e628cebe3c15\"\n}"}],"_postman_id":"7b0667cb-c27a-453c-b1f2-e3d754452dc2"},{"name":"History","id":"de6add99-5551-4ae2-a590-6a36445bd98d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/1/history","urlObject":{"path":["consumer_api","v1","project_responses","1","history"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0a5f37a0-c015-4d82-838c-922392d2b0d7","name":"History - 200 - OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/1/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"fea0d211-42e7-41ac-8501-76ebea1d694b"},{"key":"X-Runtime","value":"0.067070"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"order\": 1,\n        \"updated_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"status_label\": \"Abierto\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null,\n        \"snapshot_id\": 1\n    },\n    {\n        \"order\": 2,\n        \"updated_at\": \"2019-03-30T14:20:55.000-03:00\",\n        \"status_label\": \"En curso\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null,\n        \"snapshot_id\": null\n    },\n    {\n        \"order\": 3,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Inspección parcial en curso\",\n        \"observations\": null,\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\",\n        \"snapshot_id\": 3\n    },\n    {\n        \"order\": 4,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Rechazado\",\n        \"observations\": \"Faltó definir altura de la calle\",\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\",\n        \"snapshot_id\": null\n    }\n]"},{"id":"f50f9691-86b8-4c78-b9ad-114a27866a0a","name":"History - 202 - Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/1/history"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"fea0d211-42e7-41ac-8501-76ebea1d694b"},{"key":"X-Runtime","value":"0.067070"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"d7f08757-1834-43fb-97cc-5f1845c854e8\",\n    \"url\": \"http://localhost:3000/async_request/jobs/d7f08757-1834-43fb-97cc-5f1845c854e8\"\n}"}],"_postman_id":"de6add99-5551-4ae2-a590-6a36445bd98d"},{"name":"Show By External Id","id":"341fe095-8fda-4352-a552-45aa707b39d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_response?external_id=123456","urlObject":{"path":["consumer_api","v1","project_response"],"host":["{{base-api-url}}"],"query":[{"key":"external_id","value":"123456"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"13824c03-ecfc-4b4d-b74c-d2780bcd5f4c","name":"404 - Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/consumer_api/v1/project_response?external_id=12342","host":["{{base-api-url}}"],"path":["consumer_api","v1","project_response"],"query":[{"key":"external_id","value":"12342"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"X-Expiration-Warning","value":"1629574933"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"14bdb7ca-0230-4910-9fc6-0105ddcb592c"},{"key":"X-Runtime","value":"0.045921"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":""},{"id":"67ec57e9-c112-4b0f-ba35-43ebd5b5f24d","name":"202 - Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/consumer_api/v1/project_response?external_id=123456","host":["{{base-api-url}}"],"path":["consumer_api","v1","project_response"],"query":[{"key":"external_id","value":"123456"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"X-Expiration-Warning","value":"1629574933"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"5cda0a24-d9ab-4e06-8c7a-329b0598441a"},{"key":"X-Runtime","value":"0.404626"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"4c7373f2-2cff-4d41-b516-1e63c3d1a5ae\",\n    \"url\": \"http://localhost:3000/async_request/jobs/4c7373f2-2cff-4d41-b516-1e63c3d1a5ae\"\n}"},{"id":"809da644-adf9-4f58-bc6c-b85de701426a","name":"200 - OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/consumer_api/v1/project_responses/show_by_external_id?external_id=123456","host":["{{base-api-url}}"],"path":["consumer_api","v1","project_responses","show_by_external_id"],"query":[{"key":"external_id","value":"123456"}]}},"status":"-OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Expiration-Warning","value":"1629574933"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"5cda0a24-d9ab-4e06-8c7a-329b0598441a"},{"key":"X-Runtime","value":"0.404626"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"user_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_number\": \"4568765\",\n    \"status\": \"pending\",\n    \"status_label\": \"Nuevo\",\n    \"input_values\": {\n        \"AGAccountId\": \"003467754\",\n        \"ProjectType\": \"Ampliacion\",\n        \"HomeImprovementProject\": false,\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"IsFunctionalUnit\": null,\n        \"HasPipeModification\": null\n    },\n    \"cancellable\": true,\n    \"editable\": true,\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"can_create_workflow_3_4\": false,\n    \"can_create_workflow_3_5_partial\": true,\n    \"can_create_workflow_3_5_final\": true,\n    \"can_create_workflow_3_5_partial_reconnection\": false,\n    \"can_create_workflow_3_5_final_reconnection\": false,\n    \"can_disable\": false,\n    \"can_mark_as_seen\": false,\n    \"initial_workflow_id\": 1,\n    \"last_workflow_client_approval_at\": null,\n    \"workflow_responses\": []\n}"}],"_postman_id":"341fe095-8fda-4352-a552-45aa707b39d9"},{"name":"Unassign User","id":"a58ed942-abf7-4366-b73f-21d22835f271","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/unassign","urlObject":{"path":["consumer_api","v1","project_responses","{{project_response_id}}","unassign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"6027f65f-ed8a-4bfb-bdb5-a232a0380a1c","name":"Unassign User - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJjb25zdW1lcl9pZCI6MSwiZG9jdW1lbnRfbnVtYmVyIjoiMjM1Njc4OTciLCJkb2N1bWVudF90eXBlIjoiRE5JIiwidmVyaWZpY2F0aW9uX2NvZGUiOiJBMm45cG5Ma2tucFB4VG5FaXhXRkpTTV9hektHcnBCV2ZjV0JXbVlab0FCRzNUN01HZDJicTY3ZEVFS3NnLVpMIiwicmVuZXdfaWQiOiJEX0JaelNYbU5FRTZLWFA1QmNFOVVEZWlIRHJBbmdZVyIsIm1heGltdW1fdXNlZnVsX2RhdGUiOjE2ODU2NDQzMDAsImV4cGlyYXRpb25fZGF0ZSI6MTY4MjYyMDMwMCwid2FybmluZ19leHBpcmF0aW9uX2RhdGUiOjE2NTExNzA3MDB9.zwd_ZJ34LLM4XS_J44dWAw3WxhS-xciO2FL7mHiZZHM","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/0/unassign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"90035163-8831-4948-9aef-1c27c946f20c"},{"key":"X-Runtime","value":"0.008641"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"21386249-cc5e-4fb2-824d-623b0d5fea18","name":"Unassign User - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJjb25zdW1lcl9pZCI6MSwiZG9jdW1lbnRfbnVtYmVyIjoiMjM1Njc4OTciLCJkb2N1bWVudF90eXBlIjoiRE5JIiwidmVyaWZpY2F0aW9uX2NvZGUiOiJBMm45cG5Ma2tucFB4VG5FaXhXRkpTTV9hektHcnBCV2ZjV0JXbVlab0FCRzNUN01HZDJicTY3ZEVFS3NnLVpMIiwicmVuZXdfaWQiOiJpVHpGaFFEU29fVFBVeXhDd2JkUnZtUnUzdGVYU3pKViIsIm1heGltdW1fdXNlZnVsX2RhdGUiOjE2ODU2NDYzMDcsImV4cGlyYXRpb25fZGF0ZSI6MTY4MjYyMjMwNywid2FybmluZ19leHBpcmF0aW9uX2RhdGUiOjE2NTExNzI3MDd9.mWPJrDZZ79hXvdf30e4QUU-y10vOibv7wOx8Owz03I8","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/1/unassign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"587f607d-45c3-454d-bed4-d88139cf8525"},{"key":"X-Runtime","value":"0.025891"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"5f3031ca-92c8-43f6-8a33-7bff579990b2\",\n    \"url\": \"http://localhost:3000/async_request/jobs/5f3031ca-92c8-43f6-8a33-7bff579990b2\"\n}"},{"id":"df66c558-ebef-4452-aca3-af1b6a52d674","name":"Unassign User - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJjb25zdW1lcl9pZCI6MSwiZG9jdW1lbnRfbnVtYmVyIjoiMjM1Njc4OTciLCJkb2N1bWVudF90eXBlIjoiRE5JIiwidmVyaWZpY2F0aW9uX2NvZGUiOiJBMm45cG5Ma2tucFB4VG5FaXhXRkpTTV9hektHcnBCV2ZjV0JXbVlab0FCRzNUN01HZDJicTY3ZEVFS3NnLVpMIiwicmVuZXdfaWQiOiJpVHpGaFFEU29fVFBVeXhDd2JkUnZtUnUzdGVYU3pKViIsIm1heGltdW1fdXNlZnVsX2RhdGUiOjE2ODU2NDYzMDcsImV4cGlyYXRpb25fZGF0ZSI6MTY4MjYyMjMwNywid2FybmluZ19leHBpcmF0aW9uX2RhdGUiOjE2NTExNzI3MDd9.mWPJrDZZ79hXvdf30e4QUU-y10vOibv7wOx8Owz03I8","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/1/unassign"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"574ee9ae-4dd6-4c36-9172-c8d301af11a2"},{"key":"X-Runtime","value":"0.019046"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: reason\"\n        }\n    ]\n}"}],"_postman_id":"a58ed942-abf7-4366-b73f-21d22835f271"},{"name":"Approve Unassign","id":"c4e7e03c-c1d5-4817-b77a-35a49c330ed4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/approve_unassign","urlObject":{"path":["consumer_api","v1","project_responses","{{project_response_id}}","approve_unassign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"b0c603dc-8ff3-4094-a2a8-e0a07c02ad6e","name":"Approve Unassign - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJjb25zdW1lcl9pZCI6MSwiZG9jdW1lbnRfbnVtYmVyIjoiMjM1Njc4OTciLCJkb2N1bWVudF90eXBlIjoiRE5JIiwidmVyaWZpY2F0aW9uX2NvZGUiOiJWdkVMQk5HWmdSSnRzVGZBVnZSTmIxTXdXWDRCM0h1bTRtemQ3elphRTZhaXh0QkpLeDJWcGR4WjhhckNCRnhzIiwicmVuZXdfaWQiOiJFRFhFekJKeG54RC15R29zeHhMN3M4Z0pfTDVyV3dNTiIsIm1heGltdW1fdXNlZnVsX2RhdGUiOjE2ODYxNDM0OTEsImV4cGlyYXRpb25fZGF0ZSI6MTY4MzExOTQ5MSwid2FybmluZ19leHBpcmF0aW9uX2RhdGUiOjE2NTE2Njk4OTF9.e8l2jSv8KDzhbdLAVmec7_Su5K_wabbdgQ48iuk_epU","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/1/approve_unassign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"79a42cac-a8a0-4720-985a-327e6bc4598f"},{"key":"X-Runtime","value":"0.041322"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"3303c042-7d29-431d-b714-ba58732f0d41\",\n    \"url\": \"http://localhost:3000/async_request/jobs/3303c042-7d29-431d-b714-ba58732f0d41\"\n}"},{"id":"88928a03-9db2-4ac2-9708-fc610b4aa006","name":"Approve Unassign - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJjb25zdW1lcl9pZCI6MSwiZG9jdW1lbnRfbnVtYmVyIjoiMjM1Njc4OTciLCJkb2N1bWVudF90eXBlIjoiRE5JIiwidmVyaWZpY2F0aW9uX2NvZGUiOiJWdkVMQk5HWmdSSnRzVGZBVnZSTmIxTXdXWDRCM0h1bTRtemQ3elphRTZhaXh0QkpLeDJWcGR4WjhhckNCRnhzIiwicmVuZXdfaWQiOiJFRFhFekJKeG54RC15R29zeHhMN3M4Z0pfTDVyV3dNTiIsIm1heGltdW1fdXNlZnVsX2RhdGUiOjE2ODYxNDM0OTEsImV4cGlyYXRpb25fZGF0ZSI6MTY4MzExOTQ5MSwid2FybmluZ19leHBpcmF0aW9uX2RhdGUiOjE2NTE2Njk4OTF9.e8l2jSv8KDzhbdLAVmec7_Su5K_wabbdgQ48iuk_epU","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/0/approve_unassign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"48b24c0b-ecd1-47e7-8499-34786c756ed0"},{"key":"X-Runtime","value":"0.010562"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c4e7e03c-c1d5-4817-b77a-35a49c330ed4"},{"name":"Reason","id":"cc1e4960-4f9c-451c-a517-d03ee12c712e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/reason","urlObject":{"path":["consumer_api","v1","project_responses","{{project_response_id}}","reason"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc1e4960-4f9c-451c-a517-d03ee12c712e"},{"name":"Assign User","id":"993296ee-7246-4c69-ae31-aedf9e03eecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id_type\": \"dni\",\n  \"id_value\": 24642728,\n  \"reason\": \"Motivo de asignación\",\n  \"details\": \"Detalles de la asignación\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/assign","urlObject":{"path":["consumer_api","v1","project_responses","{{project_response_id}}","assign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"993296ee-7246-4c69-ae31-aedf9e03eecb"},{"name":"Resolve Assign User","id":"bfd39766-a4df-4014-b0d1-bfcfc974f510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"assignment_rejected\",\n    \"Observation\": \"Cosas pasaron\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/resolve_assign","urlObject":{"path":["consumer_api","v1","project_responses","{{project_response_id}}","resolve_assign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"fb0e6df2-5213-4455-bc54-595c69928853","name":"Rejected - 202","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"assignment_rejected\",\n    \"observation\": \"Pasaron cosas\",\n    \"backoffice_username\": \"Anakin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/resolve_assign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"X-Expiration-Warning","value":"1686083189"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b34c28c1-fcbe-49b4-a12f-76d94aaee5cf"},{"key":"X-Runtime","value":"0.042446"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"46f8e9a6-6e44-433f-ba16-2a84d713f66f\",\n    \"url\": \"http://localhost:3000/async_request/jobs/46f8e9a6-6e44-433f-ba16-2a84d713f66f\"\n}"},{"id":"87dc5a73-aac7-45ae-8ebb-06bc03df68c4","name":"Approved - 202","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"assignment_rejected\",\n    \"backoffice_username\": \"Anakin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/consumer_api/v1/project_responses/{{project_response_id}}/resolve_assign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"X-Expiration-Warning","value":"1686083189"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"9ac277c5-3110-46ea-aaa7-659f0643124f"},{"key":"X-Runtime","value":"0.019676"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"f6633c19-8962-4b2a-b872-cc3643ab0b3e\",\n    \"url\": \"http://localhost:3000/async_request/jobs/f6633c19-8962-4b2a-b872-cc3643ab0b3e\"\n}"}],"_postman_id":"bfd39766-a4df-4014-b0d1-bfcfc974f510"}],"id":"e66a284e-88f5-4da0-9a02-8b1e1691f95a","_postman_id":"e66a284e-88f5-4da0-9a02-8b1e1691f95a","description":""},{"name":"Workflow Responses","item":[{"name":"Index","id":"491ffb96-254d-4535-b11c-b7835c160acc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses","description":"<p>Returns a list of workflow responses.</p>\n","urlObject":{"path":["consumer_api","v1","workflow_responses"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"18cfc8d0-48e7-449c-8594-03c912c883d0","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8083796d-9622-4c1c-afad-80b772395897"},{"key":"X-Runtime","value":"0.133403"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"6c6555e2-9ab1-4a67-b2a4-0da54ae21533\",\n    \"url\": \"http://localhost:3000/async_request/jobs/6c6555e2-9ab1-4a67-b2a4-0da54ae21533\"\n}"},{"id":"e808c96f-d90c-4a75-ba02-485abf3cc0ff","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8083796d-9622-4c1c-afad-80b772395897"},{"key":"X-Runtime","value":"0.133403"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"project_response_id\": null,\n        \"workflow_id\": 1,\n        \"external_id\": \"123456\",\n        \"status\": \"pending\",\n        \"status_label\": \"Trámite pendiente de enviar\",\n        \"incomplete\": true,\n        \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"cancellable\": true,\n        \"editable\": true,\n        \"observable\": true,\n        \"approvable\": true,\n        \"claimable\": false,\n        \"client_approvable\": false,\n        \"client_observable\": false,\n        \"client_rejectable\": false,\n        \"observations\": null,\n        \"discharge_comment\": \"Pedido de revisión de trámite\",\n        \"rejection_reasons\": [\n            {\n                \"reason\": \"Instalación rechazada por X\",\n                \"comments\": \"Comentario\"\n            }\n        ],\n        \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n        \"inspector_name\": \"Martin Gonzalez\",\n        \"visit_information\": null,\n        \"fees_and_charges\": null,\n        \"client_approval_at\": null,\n        \"id\": 1,\n        \"workflow_name\": \"Formulario 3.4\"\n    },\n    {\n        \"project_response_id\": null,\n        \"workflow_id\": 1,\n        \"external_id\": \"563456\",\n        \"status\": \"observed\",\n        \"status_label\": \"Trámite observado\",\n        \"incomplete\": false,\n        \"started_at\": \"2019-03-20T14:20:55.000-03:00\",\n        \"cancellable\": true,\n        \"editable\": true,\n        \"observable\": true,\n        \"approvable\": true,\n        \"claimable\": false,\n        \"client_approvable\": null,\n        \"client_observable\": false,\n        \"client_rejectable\": false,\n        \"observations\": null,\n        \"discharge_comment\": \"Pedido de revisión de trámite\",\n        \"rejection_reasons\": null,\n        \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n        \"inspector_name\": \"Martin Gonzalez\",\n        \"visit_information\": null,\n        \"fees_and_charges\": null,\n        \"client_approval_at\": null,\n        \"id\": 3,\n        \"workflow_name\": \"Formulario 3.4\"\n    }\n]"}],"_postman_id":"491ffb96-254d-4535-b11c-b7835c160acc"},{"name":"Show","id":"de359400-78f7-43ff-b28a-20abb18f6081","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}","description":"<p>Retrieves a particular workflow response by Id.</p>\n","urlObject":{"path":["consumer_api","v1","workflow_responses","{{id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"7270052f-f8c6-46f3-b2b7-c2286f590f04","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{workflow-response-id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"9292e6fd-4490-4df2-82ac-4ea9f7e440e0"},{"key":"X-Runtime","value":"0.024698"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"5ce3c5ba-c775-4fbe-980c-f835b190d0bb\",\n    \"url\": \"http://localhost:3000/async_request/jobs/5ce3c5ba-c775-4fbe-980c-f835b190d0bb\"\n}"},{"id":"89a0c49d-22cf-4e4e-bded-f108fa536307","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{consumer-access-token}}"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a81748d3e25644ead8b82644638efe20\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f80e51ea-be07-4b79-9f90-6b6b6300f353"},{"key":"X-Runtime","value":"0.124092"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"workflow_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_response_id\": 1,\n    \"workflow_name\": \"Formulario 3.4\",\n    \"status\": \"pending\",\n    \"status_label\": \"Trámite pendiente de enviar\",\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"cancellable\": true,\n    \"editable\": true,\n    \"observable\": true,\n    \"approvable\": true,\n    \"client_approvable\": false,\n    \"client_observable\": false,\n    \"client_rejectable\": false,\n    \"observations\": null,\n    \"rejection_reasons\": [\n        {\n            \"reason\": \"Instalación rechazada por X\",\n            \"comments\": \"Comentario\"\n        }\n    ],\n    \"claimable\": false,\n    \"discharge_comment\": \"Pedido de revisión de trámite\",\n    \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n    \"inspector_name\": \"Martin Gonzalez\",\n    \"visit_information\": {\n        \"message\": null,\n        \"notify_user\": true,\n        \"notify_owner\": true,\n        \"date\": \"2020-09-01\",\n        \"start_time\": \"11:00\",\n        \"end_time\": \"12:00\"\n    },\n    \"client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n    \"head_form_response_id\": 1,\n    \"current_form_response_id\": 1,\n    \"editable_form_responses_ids\": [\n        1\n    ],\n    \"fees_and_charges\": {\n        \"applicable\": true,\n        \"details\": [\n            702,\n            703\n        ]\n    },\n    \"form_responses\": [\n        {\n            \"id\": 1,\n            \"form_id\": 1,\n            \"form_code\": \"form_1\",\n            \"external_id\": \"654432\",\n            \"workflow_response_id\": 1,\n            \"editable\": true,\n            \"observations\": null,\n            \"input_values\": {\n                \"CALLE_1\": \"xxxx\",\n                \"CALLE_2\": \"xxxx\",\n                \"CALLE_3\": \"xxxx\",\n                \"CALLE_4\": \"xxxx\",\n                \"TIPO_DE_USO\": \"xxxxx\",\n                \"OBSERVACIONES\": \"xxxxxx\",\n                \"TIPO_DE_PLANO\": \"triangular\",\n                \"CANTIDAD_TOMAS\": \"5\",\n                \"NUM_VECINO_DER\": \"12\",\n                \"NUM_VECINO_IZQ\": \"345\",\n                \"DISTANCIA_COTA_A\": \"70\",\n                \"DISTANCIA_COTA_B\": \"50\",\n                \"CANTIDAD_INSTALACIONES\": \"3\"\n            }\n        }\n    ]\n}"},{"id":"ac45b788-7a0e-4de9-ad4d-bc4c6f86d17d","name":"Show - 403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e327c18e-a678-4dda-a7db-0691571ba187"},{"key":"X-Runtime","value":"0.012899"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 403,\n            \"code\": \"client_forbidden\",\n            \"message\": \"El cliente no tiene permitido realizar esta acción.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"c592f804-a83e-44b1-8e79-d748512d5379","name":"Show - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ec8639bb-fe80-4e91-acf1-e3ac2ca90c73"},{"key":"X-Runtime","value":"0.027994"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"de359400-78f7-43ff-b28a-20abb18f6081"},{"name":"Update","id":"c6e2b145-b1d5-4084-9818-da17462eef0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": \"Caso cerrado.\",\n  \"status\": \"rejected\"\n}"},"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/1","description":"<p>Endpoint to approve a workflow response by a client.</p>\n","urlObject":{"path":["consumer_api","v1","workflow_responses","1"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"61e37ba3-eb41-4218-bad6-783fddc3f83f","name":"Update - 404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"fda910be-e188-46c3-9536-69833cebe024"},{"key":"X-Runtime","value":"0.009884"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"b7a71000-592e-496f-9a7c-3ef497739741","name":"Update - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ccf1fa3d-f813-49ca-a403-6b3310cd9b89"},{"key":"X-Runtime","value":"0.049181"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"08a9b9dc-3bbd-4bd2-a9c8-29e984a8583a\",\n    \"url\": \"http://localhost:3000/async_request/jobs/08a9b9dc-3bbd-4bd2-a9c8-29e984a8583a\"\n}"},{"id":"db3e21bf-3cd5-4968-8bfa-8701f25517db","name":"Update - 403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"82837f45-639c-470b-bcbd-52c4870df21c"},{"key":"X-Runtime","value":"0.079112"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 403,\n            \"code\": \"client_forbidden\",\n            \"message\": \"El cliente no tiene permitido realizar esta acción.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"df8dba3a-5d8e-4df1-bc49-ee7632ccf480","name":"Update - 200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ccf1fa3d-f813-49ca-a403-6b3310cd9b89"},{"key":"X-Runtime","value":"0.049181"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite actualizado correctamente.\"\n}"}],"_postman_id":"c6e2b145-b1d5-4084-9818-da17462eef0e"},{"name":"History","id":"064b61c3-6e88-4994-8a05-ba504ea7632a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/1/history","urlObject":{"path":["consumer_api","v1","workflow_responses","1","history"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"5e0725c4-aec9-4eb5-addf-eca79a673d39","name":"History - 200 - OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/1/history"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c865f351-8f9d-432c-8a12-2558c5ec080c"},{"key":"X-Runtime","value":"0.058823"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"order\": 1,\n        \"updated_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"status_label\": \"Abierto\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null\n    },\n    {\n        \"order\": 2,\n        \"updated_at\": \"2019-03-30T14:20:55.000-03:00\",\n        \"status_label\": \"En curso\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null\n    },\n    {\n        \"order\": 3,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Inspección parcial en curso\",\n        \"observations\": null,\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\"\n    },\n    {\n        \"order\": 4,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Rechazado\",\n        \"observations\": \"Faltó definir altura de la calle\",\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\"\n    }\n]"},{"id":"8bc249e7-7f07-46d2-8ecc-c59992e6d5ab","name":"History - 202 - Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{consumer-access-token}}","type":"text"}],"url":"{{base-api-url}}/consumer_api/v1/workflow_responses/1/history"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c865f351-8f9d-432c-8a12-2558c5ec080c"},{"key":"X-Runtime","value":"0.058823"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"d046b3a6-3230-42bf-b3bf-e7e74246afcf\",\n    \"url\": \"http://localhost:3000/async_request/jobs/d046b3a6-3230-42bf-b3bf-e7e74246afcf\"\n}"}],"_postman_id":"064b61c3-6e88-4994-8a05-ba504ea7632a"}],"id":"4b57359b-a237-477d-a161-09127cdcc4b2","description":"<p>Endpoint for retrieving workflow responses of a particular client.</p>\n","_postman_id":"4b57359b-a237-477d-a161-09127cdcc4b2"}],"id":"01322f08-9cb0-4ff1-ad52-a6f625ce9773","description":"<p>Endpoints inside the Consumer API</p>\n","_postman_id":"01322f08-9cb0-4ff1-ad52-a6f625ce9773"},{"name":"Admin Users","item":[{"name":"Decode","id":"16575cf1-086d-446b-8ea6-ba1c824e6ab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"Form\",\n        \"id\": 1\n}"},"url":"{{base-api-url}}/admin_api/v1/decode","urlObject":{"path":["admin_api","v1","decode"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0e779c51-b131-4056-bff8-9a5af3c577c3","name":"Decode - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"ModeloInvalido\",\n        \"id\": 1\n}"},"url":"{{base-api-url}}/admin_api/v1/decode"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c6a43587-7c1b-434d-b81e-45937aec4e0e"},{"key":"X-Runtime","value":"0.069049"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"invalid_params\",\n            \"message\": \"Parámetros inválidos\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"1463f361-3ee6-466c-824c-a062c9190b29","name":"Decode - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"Account\",\n        \"id\": 1\n}"},"url":"{{base-api-url}}/admin_api/v1/decode"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"2540932f-61ae-40f3-b1d6-da73b2e08fae"},{"key":"X-Runtime","value":"0.055235"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"invalid_params\",\n            \"message\": \"Parámetros inválidos\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"8dfa071d-dcdb-402a-9f93-e494395c13d4","name":"Decode - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"Form\",\n        \"code\": \"form_1\",\n        \"id\": 1\n}"},"url":"{{base-api-url}}/admin_api/v1/decode"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"d7765b96-4620-4372-b42f-81768db52a7a"},{"key":"X-Runtime","value":"0.048999"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"invalid_params\",\n            \"message\": \"Parámetros inválidos\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"9481d3e6-1dd7-4fa3-87ac-65f062a4005f","name":"Decode - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"Form\",\n        \"id\": 1\n}"},"url":"{{base-api-url}}/admin_api/v1/decode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"f5dcad8fada3b38f8f6bc83fe9c98c1b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"0f350fd9-ce5c-4ef6-9634-1d69cbd38367"},{"key":"X-Runtime","value":"0.084960"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"code\": \"form_1\",\n    \"model\": \"Form\"\n}"},{"id":"b344cea8-78d9-40fb-b493-ee60b4fec3e9","name":"Decode - 403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"Form\",\n        \"id\": 1\n}"},"url":"{{base-api-url}}/admin_api/v1/decode"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"9550dc4f-bdb2-440f-871d-be29de66e747"},{"key":"X-Runtime","value":"0.064184"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 403,\n            \"code\": \"client_forbidden\",\n            \"message\": \"El cliente no tiene permitido realizar esta acción.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"b4c25be3-8410-4d98-932d-a94a2ebe91a3","name":"Decode - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{admin-user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"model\": \"Form\",\n        \"code\": \"form_1\"\n}"},"url":"{{base-api-url}}/admin_api/v1/decode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"f5dcad8fada3b38f8f6bc83fe9c98c1b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"48644a68-9151-4438-8ef3-6fe2ddbcac71"},{"key":"X-Runtime","value":"0.045410"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"code\": \"form_1\",\n    \"model\": \"Form\"\n}"}],"_postman_id":"16575cf1-086d-446b-8ea6-ba1c824e6ab1"}],"id":"3396cec8-f9c1-43db-9352-93384e86a1d8","_postman_id":"3396cec8-f9c1-43db-9352-93384e86a1d8","description":""},{"name":"Dashboard","item":[{"name":"Show","id":"a28c3060-384d-4640-aa93-5b6e1b58f6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/dashboard","urlObject":{"path":["api","v1","dashboard"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"c8efb29c-c793-4fa2-9512-98a8df9bb4ba","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/dashboard"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"03ad4954-bbc9-4639-baa1-8d5b475bdb91\",\n    \"url\": \"https://utilitygo-api-dev.widergydev.com/async_request/jobs/03ad4954-bbc9-4639-baa1-8d5b475bdb91\"\n}"},{"id":"fd1e33b9-9797-4efb-96d3-65f5358f7386","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/async_request/jobs/03ad4954-bbc9-4639-baa1-8d5b475bdb91"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"email\": \"juan_perez@example.com\",\n    \"first_name\": \"JUAN\",\n    \"last_name\": \"PEREZ\",\n    \"in_progress_projects_kpi\": 10,\n    \"observed_projects_kpi\": 3,\n    \"rejected_partial_inspection_projects_kpi\": 4,\n    \"rejected_final_inspection_projects_kpi\": 2,\n    \"license_data\": {\n        \"license_number\": \"MP. 200339\",\n        \"license_status\": \"Pendiente de pago\",\n        \"show_license_status_alert\": true,\n        \"license_status_alert_message\": \"Recuerde acercarse a nuestra oficina de 08 a 15hs para abonar la tarifa.\",\n        \"license_payable\": true,\n        \"license_expiration_date\": \"2019-03-29T14:20:55.000-03:00\",\n        \"license_amount\": 500.03\n    }\n}"}],"_postman_id":"a28c3060-384d-4640-aa93-5b6e1b58f6b5"}],"id":"410a7603-544d-44df-8ccf-ecd4cfff46d4","_postman_id":"410a7603-544d-44df-8ccf-ecd4cfff46d4","description":""},{"name":"Projects","item":[{"name":"Show","id":"3667989b-bd40-4182-b02a-c5fb58080c7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project","urlObject":{"path":["api","v1","project"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"058cffb9-f88f-4694-9185-b0f06ff3f194","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"44c45b30-e171-4386-95e1-cb47825d2a68"},{"key":"X-Runtime","value":"0.120052"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 404,\n            \"code\": \"project_not_found\",\n            \"message\": \"No se encontró ningun proyecto.\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"69185001-4ada-4a6f-aaf4-6f39c07794f9","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"db4de2de5a1229005deea05fc26f41e2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"37ebc072-b641-4b66-ab26-812c2faba6fe"},{"key":"X-Runtime","value":"0.459444"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Formulario 3.4\",\n    \"forms\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"order\": 4,\n            \"name\": \"Formulario 3.4 - Paso 1\",\n            \"code\": \"form_1\",\n            \"custom\": false,\n            \"fields\": [\n                {\n                    \"id\": 3,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 1,\n                    \"suborder\": 1,\n                    \"title\": \"Dirección\",\n                    \"code\": \"field_3\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"direction\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 4,\n                    \"type\": \"Fields::Image\",\n                    \"order\": 2,\n                    \"suborder\": 1,\n                    \"title\": \"Foto de la factura\",\n                    \"code\": \"field_4\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"photo\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 5,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 3,\n                    \"suborder\": 1,\n                    \"title\": \"Campo Requerido\",\n                    \"code\": \"field_5\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": \"Campo requerido!\",\n                    \"key\": \"required\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 6,\n                    \"type\": \"Fields::Rating\",\n                    \"order\": 4,\n                    \"suborder\": 1,\n                    \"title\": \"Satisfacción\",\n                    \"code\": \"field_6\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"rating\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Carita feliz\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.498-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.504-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_1\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Carita triste\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.509-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.514-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_2\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"type\": \"Fields::Checklist\",\n                    \"order\": 5,\n                    \"suborder\": 1,\n                    \"title\": \"Listado\",\n                    \"code\": \"field_7\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"list\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 3,\n                            \"name\": \"Check 1\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.558-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.562-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_3\"\n                        },\n                        {\n                            \"id\": 4,\n                            \"name\": \"Check 2\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.567-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.571-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_4\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"type\": \"Fields::AutoComplete\",\n                    \"order\": 6,\n                    \"suborder\": 1,\n                    \"title\": \"External Field Options\",\n                    \"code\": \"field_8\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"external_options\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": true,\n                    \"field_options\": []\n                },\n                {\n                    \"id\": 2,\n                    \"type\": \"Fields::Switch\",\n                    \"order\": 10,\n                    \"suborder\": 1,\n                    \"title\": \"Switch\",\n                    \"code\": \"field_2\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 1,\n                    \"type\": \"Fields::Checkbox\",\n                    \"order\": 11,\n                    \"suborder\": 1,\n                    \"title\": \"Checkbok\",\n                    \"code\": \"field_1\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"order\": 5,\n            \"name\": \"Formulario 3.4 - Paso 2\",\n            \"code\": \"form_2\",\n            \"custom\": false,\n            \"fields\": []\n        }\n    ],\n    \"workflows\": [\n        {\n            \"id\": 2,\n            \"utility_id\": 1,\n            \"order\": 2,\n            \"name\": \"Formulario 3.4.2\",\n            \"code\": \"workflow_3_4_2\"\n        },\n        {\n            \"id\": 3,\n            \"utility_id\": 1,\n            \"order\": 3,\n            \"name\": \"Formulario 3.4.3\",\n            \"code\": \"workflow_3_4_3\"\n        }\n    ]\n}"}],"_postman_id":"3667989b-bd40-4182-b02a-c5fb58080c7d"},{"name":"Index","id":"7a1551ba-ca64-487f-913a-1baa4025de69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/projects","urlObject":{"path":["api","v1","projects"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"844e7093-b959-4bac-b653-636bd538218e","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"908f2360e6763743f5a692d1a7b0f60e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c8a4c47a-1219-4a26-a232-6659a83df2b4"},{"key":"X-Runtime","value":"0.214754"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Formulario 3.4\",\n        \"forms\": [\n            {\n                \"id\": 1,\n                \"workflow_id\": 1,\n                \"order\": 4,\n                \"name\": \"Formulario 3.4 - Paso 1\",\n                \"code\": \"form_1\",\n                \"custom\": false,\n                \"fields\": [\n                    {\n                        \"id\": 3,\n                        \"type\": \"Fields::Text\",\n                        \"order\": 1,\n                        \"suborder\": 1,\n                        \"title\": \"Dirección\",\n                        \"code\": \"field_3\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"direction\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 4,\n                        \"type\": \"Fields::Image\",\n                        \"order\": 2,\n                        \"suborder\": 1,\n                        \"title\": \"Foto de la factura\",\n                        \"code\": \"field_4\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"photo\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 5,\n                        \"type\": \"Fields::Text\",\n                        \"order\": 3,\n                        \"suborder\": 1,\n                        \"title\": \"Campo Requerido\",\n                        \"code\": \"field_5\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": \"Campo requerido!\",\n                        \"key\": \"required\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 7,\n                        \"type\": \"Fields::Rating\",\n                        \"order\": 4,\n                        \"suborder\": 1,\n                        \"title\": \"Satisfacción\",\n                        \"code\": \"field_7\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"rating\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false,\n                        \"field_options\": [\n                            {\n                                \"id\": 1,\n                                \"name\": \"Carita feliz\",\n                                \"order\": 1,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_1\",\n                                \"field_id\": 7,\n                                \"created_at\": \"2022-08-22T20:30:19.557-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.560-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_1\"\n                            },\n                            {\n                                \"id\": 2,\n                                \"name\": \"Carita triste\",\n                                \"order\": 2,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_2\",\n                                \"field_id\": 7,\n                                \"created_at\": \"2022-08-22T20:30:19.562-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.564-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_2\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 8,\n                        \"type\": \"Fields::Checklist\",\n                        \"order\": 5,\n                        \"suborder\": 1,\n                        \"title\": \"Listado\",\n                        \"code\": \"field_8\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"list\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false,\n                        \"field_options\": [\n                            {\n                                \"id\": 3,\n                                \"name\": \"Check 1\",\n                                \"order\": 1,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_1\",\n                                \"field_id\": 8,\n                                \"created_at\": \"2022-08-22T20:30:19.589-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.591-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_3\"\n                            },\n                            {\n                                \"id\": 4,\n                                \"name\": \"Check 2\",\n                                \"order\": 2,\n                                \"field_option_validation\": null,\n                                \"value\": \"field_option_2\",\n                                \"field_id\": 8,\n                                \"created_at\": \"2022-08-22T20:30:19.593-03:00\",\n                                \"updated_at\": \"2022-08-22T20:30:19.596-03:00\",\n                                \"parent_field_option_id\": null,\n                                \"configuration\": {},\n                                \"code\": \"field_option_4\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 9,\n                        \"type\": \"Fields::AutoComplete\",\n                        \"order\": 6,\n                        \"suborder\": 1,\n                        \"title\": \"External Field Options\",\n                        \"code\": \"field_9\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"external_options\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": true,\n                        \"field_options\": []\n                    },\n                    {\n                        \"id\": 2,\n                        \"type\": \"Fields::Switch\",\n                        \"order\": 10,\n                        \"suborder\": 1,\n                        \"title\": \"Switch\",\n                        \"code\": \"field_2\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Check\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 1,\n                        \"type\": \"Fields::Checkbox\",\n                        \"order\": 11,\n                        \"suborder\": 1,\n                        \"title\": \"Checkbok\",\n                        \"code\": \"field_1\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Check\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    },\n                    {\n                        \"id\": 6,\n                        \"type\": \"Fields::Table\",\n                        \"order\": 12,\n                        \"suborder\": 1,\n                        \"title\": \"Tabla\",\n                        \"code\": \"field_6\",\n                        \"description\": null,\n                        \"required\": true,\n                        \"required_message\": null,\n                        \"key\": \"Table\",\n                        \"placeholder\": null,\n                        \"tooltip\": null,\n                        \"format\": null,\n                        \"format_error_message\": null,\n                        \"form_id\": 1,\n                        \"child_keys\": null,\n                        \"visibility_parent_field_key_id\": null,\n                        \"visibility_parent_field_option_value_id\": null,\n                        \"visibility_parent_field_option_values\": [],\n                        \"visibility_toggleable_field_id\": null,\n                        \"visibility_toggleable_field_value\": null,\n                        \"read_only\": false,\n                        \"default_value\": null,\n                        \"auxiliary\": false,\n                        \"hidden\": false,\n                        \"logic_evaluation\": null,\n                        \"logic_evaluation_error_message\": null,\n                        \"image_url\": null,\n                        \"configuration\": {},\n                        \"editable\": true,\n                        \"linked_default_value_key\": null,\n                        \"external_field_options\": false\n                    }\n                ]\n            },\n            {\n                \"id\": 2,\n                \"workflow_id\": 1,\n                \"order\": 5,\n                \"name\": \"Formulario 3.4 - Paso 2\",\n                \"code\": \"form_2\",\n                \"custom\": false,\n                \"fields\": []\n            }\n        ],\n        \"workflows\": [\n            {\n                \"id\": 2,\n                \"utility_id\": 1,\n                \"order\": 2,\n                \"name\": \"Formulario 3.4.2\",\n                \"code\": \"workflow_3_4_2\"\n            },\n            {\n                \"id\": 3,\n                \"utility_id\": 1,\n                \"order\": 3,\n                \"name\": \"Formulario 3.4.3\",\n                \"code\": \"workflow_3_4_3\"\n            }\n        ],\n        \"is_general_project\": false\n    },\n    {\n        \"name\": \"Proyecto instalación general de gas\",\n        \"forms\": [],\n        \"workflows\": [\n            {\n                \"id\": 5,\n                \"utility_id\": 1,\n                \"order\": 5,\n                \"name\": \"Formulario 3.4.2 General\",\n                \"code\": \"workflow_3_4_2_general\"\n            },\n            {\n                \"id\": 6,\n                \"utility_id\": 1,\n                \"order\": 6,\n                \"name\": \"Formulario 3.4.3 General\",\n                \"code\": \"workflow_3_4_3_general\"\n            }\n        ],\n        \"is_general_project\": true\n    }\n]"}],"_postman_id":"7a1551ba-ca64-487f-913a-1baa4025de69"}],"id":"aa14f4df-d292-4b18-8b1e-eedc873d204d","_postman_id":"aa14f4df-d292-4b18-8b1e-eedc873d204d","description":""},{"name":"Workflows","item":[{"name":"Index","id":"3bc2a0e6-2fe2-4e29-b317-3144cd5812a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","name":"Content-Type","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Content-Type","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/workflows","urlObject":{"path":["api","v1","workflows"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"f0351e29-ffb2-4fb1-88e1-af9e59a87c23","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","name":"Content-Type","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"44baf0628b1a65c15f40b95a4aea8232\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"37d20d3b-37f2-4049-8eba-b79f7558cb78"},{"key":"X-Runtime","value":"0.050787"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"utility_id\": 1,\n        \"order\": 1,\n        \"name\": \"Formulario 3.4\",\n        \"code\": \"workflow_3_4\"\n    },\n    {\n        \"id\": 2,\n        \"utility_id\": 1,\n        \"order\": 2,\n        \"name\": \"Formulario 3.4.2\",\n        \"code\": \"workflow_3_4_2\"\n    },\n    {\n        \"id\": 3,\n        \"utility_id\": 1,\n        \"order\": 3,\n        \"name\": \"Formulario 3.4.3\",\n        \"code\": \"workflow_3_4_3\"\n    }\n]"}],"_postman_id":"3bc2a0e6-2fe2-4e29-b317-3144cd5812a7"},{"name":"Show","id":"5f3b8efe-ba85-4b3f-9431-80c3170b99e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows/{{workflow-id}}","urlObject":{"path":["api","v1","workflows","{{workflow-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"ecbceefa-ee33-4e4a-ba76-a71d6240e51c","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows/{{workflow-id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"20268d4c49b4ba695323d5577b55be4a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e9ca3d68-a8ed-4b39-92f7-1cf3c974c222"},{"key":"X-Runtime","value":"0.249306"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"utility_id\": 1,\n    \"order\": 1,\n    \"name\": \"Formulario 3.4\",\n    \"code\": \"workflow_3_4\",\n    \"forms\": [\n        {\n            \"id\": 1,\n            \"workflow_id\": 1,\n            \"order\": 4,\n            \"name\": \"Formulario 3.4 - Paso 1\",\n            \"code\": \"form_1\",\n            \"custom\": false,\n            \"fields\": [\n                {\n                    \"id\": 3,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 1,\n                    \"suborder\": 1,\n                    \"title\": \"Dirección\",\n                    \"code\": \"field_3\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"direction\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 4,\n                    \"type\": \"Fields::Image\",\n                    \"order\": 2,\n                    \"suborder\": 1,\n                    \"title\": \"Foto de la factura\",\n                    \"code\": \"field_4\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"photo\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 5,\n                    \"type\": \"Fields::Text\",\n                    \"order\": 3,\n                    \"suborder\": 1,\n                    \"title\": \"Campo Requerido\",\n                    \"code\": \"field_5\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": \"Campo requerido!\",\n                    \"key\": \"required\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 6,\n                    \"type\": \"Fields::Rating\",\n                    \"order\": 4,\n                    \"suborder\": 1,\n                    \"title\": \"Satisfacción\",\n                    \"code\": \"field_6\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"rating\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Carita feliz\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.498-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.504-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_1\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Carita triste\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 6,\n                            \"created_at\": \"2020-02-18T16:40:54.509-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.514-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_2\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"type\": \"Fields::Checklist\",\n                    \"order\": 5,\n                    \"suborder\": 1,\n                    \"title\": \"Listado\",\n                    \"code\": \"field_7\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"list\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false,\n                    \"field_options\": [\n                        {\n                            \"id\": 3,\n                            \"name\": \"Check 1\",\n                            \"order\": 1,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_1\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.558-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.562-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_3\"\n                        },\n                        {\n                            \"id\": 4,\n                            \"name\": \"Check 2\",\n                            \"order\": 2,\n                            \"field_option_validation\": null,\n                            \"value\": \"field_option_2\",\n                            \"field_id\": 7,\n                            \"created_at\": \"2020-02-18T16:40:54.567-03:00\",\n                            \"updated_at\": \"2020-02-18T16:40:54.571-03:00\",\n                            \"parent_field_option_id\": null,\n                            \"configuration\": {},\n                            \"code\": \"field_option_4\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"type\": \"Fields::AutoComplete\",\n                    \"order\": 6,\n                    \"suborder\": 1,\n                    \"title\": \"External Field Options\",\n                    \"code\": \"field_8\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"external_options\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": true,\n                    \"field_options\": []\n                },\n                {\n                    \"id\": 2,\n                    \"type\": \"Fields::Switch\",\n                    \"order\": 10,\n                    \"suborder\": 1,\n                    \"title\": \"Switch\",\n                    \"code\": \"field_2\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                },\n                {\n                    \"id\": 1,\n                    \"type\": \"Fields::Checkbox\",\n                    \"order\": 11,\n                    \"suborder\": 1,\n                    \"title\": \"Checkbok\",\n                    \"code\": \"field_1\",\n                    \"description\": null,\n                    \"required\": true,\n                    \"required_message\": null,\n                    \"key\": \"Check\",\n                    \"placeholder\": null,\n                    \"tooltip\": null,\n                    \"format\": null,\n                    \"format_error_message\": null,\n                    \"form_id\": 1,\n                    \"child_keys\": null,\n                    \"visibility_parent_field_key_id\": null,\n                    \"visibility_parent_field_option_value_id\": null,\n                    \"visibility_parent_field_option_values\": [],\n                    \"visibility_toggleable_field_id\": null,\n                    \"visibility_toggleable_field_value\": null,\n                    \"read_only\": false,\n                    \"default_value\": null,\n                    \"auxiliary\": false,\n                    \"hidden\": false,\n                    \"logic_evaluation\": null,\n                    \"logic_evaluation_error_message\": null,\n                    \"image_url\": null,\n                    \"configuration\": {},\n                    \"editable\": true,\n                    \"linked_default_value_key\": null,\n                    \"external_field_options\": false\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"workflow_id\": 1,\n            \"order\": 5,\n            \"name\": \"Formulario 3.4 - Paso 2\",\n            \"code\": \"form_2\",\n            \"custom\": false,\n            \"fields\": []\n        }\n    ]\n}"}],"_postman_id":"5f3b8efe-ba85-4b3f-9431-80c3170b99e0"},{"name":"Decode","id":"6725ed36-b25e-4083-8211-2a1dc9946ad1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows/decode?workflow_code=workflow_1","urlObject":{"path":["api","v1","workflows","decode"],"host":["{{base-api-url}}"],"query":[{"key":"workflow_code","value":"workflow_1"}],"variable":[]}},"response":[{"id":"09ba1f93-8799-4bfc-936a-405366f0382e","name":"Decode 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{base-api-url}}/api/v1/workflows/decode?code=workflow_1","host":["{{base-api-url}}"],"path":["api","v1","workflows","decode"],"query":[{"key":"code","value":"workflow_1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d0c5e712d241058b71b38576dcecf1d0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f08df8ae-6ae0-4c3a-901b-01bb8dcd60b7"},{"key":"X-Runtime","value":"0.043840"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"workflow_id\": 1\n}"},{"id":"3b86a723-f6e0-4518-9622-f4d7e416893b","name":"Decode 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{base-api-url}}/api/v1/workflows/decode?code=invalid_code","host":["{{base-api-url}}"],"path":["api","v1","workflows","decode"],"query":[{"key":"code","value":"invalid_code"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"2ad5b081-2e84-4ab8-9266-d16e16724133"},{"key":"X-Runtime","value":"0.024148"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6725ed36-b25e-4083-8211-2a1dc9946ad1"}],"id":"83d7be44-f3a0-4e12-b4dc-dc422a2e8dba","_postman_id":"83d7be44-f3a0-4e12-b4dc-dc422a2e8dba","description":""},{"name":"Forms","item":[{"name":"Show","id":"db8c29ea-b964-48da-82fb-d3504d288b8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-Id","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows/{{workflow_id}}/forms/{{form_id}}","urlObject":{"path":["api","v1","workflows","{{workflow_id}}","forms","{{form_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"1bedfd29-7b98-4a0a-b7c7-ca87ec9af711","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows/{{workflow_id}}/forms/{{form_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"workflow_id\": 1,\n    \"order\": 4,\n    \"name\": \"Formulario 3.4 - Paso 1\",\n    \"code\": \"form_4\",\n    \"custom\": false,\n    \"fields\": [\n        {\n            \"id\": 3,\n            \"type\": \"Fields::Text\",\n            \"order\": 1,\n            \"suborder\": 1,\n            \"title\": \"Dirección\",\n            \"code\": \"field_3\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"\",\n            \"key\": \"direction\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": \"rating\"\n        },\n        {\n            \"id\": 4,\n            \"type\": \"Fields::Image\",\n            \"order\": 2,\n            \"suborder\": 1,\n            \"title\": \"Foto de la factura\",\n            \"code\": \"field_4\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"\",\n            \"key\": \"photo\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": null\n        },\n        {\n            \"id\": 5,\n            \"type\": \"Fields::Text\",\n            \"order\": 3,\n            \"suborder\": 1,\n            \"title\": \"Campo Requerido\",\n            \"code\": \"field_5\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"Campo requerido!\",\n            \"key\": \"required\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": null\n        },\n        {\n            \"id\": 6,\n            \"type\": \"Fields::Rating\",\n            \"order\": 4,\n            \"suborder\": 1,\n            \"title\": \"Satisfacción\",\n            \"code\": \"field_6\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"\",\n            \"key\": \"rating\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": null,\n            \"field_options\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Carita feliz\",\n                    \"order\": 1,\n                    \"field_option_validation\": \"\",\n                    \"value\": \"field_option_1\",\n                    \"field_id\": 6,\n                    \"created_at\": \"2019-12-10T12:57:46.332-03:00\",\n                    \"updated_at\": \"2019-12-11T11:11:50.655-03:00\",\n                    \"parent_field_option_id\": null,\n                    \"configuration\": {},\n                    \"code\": \"field_option_1\"\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"Carita triste\",\n                    \"order\": 2,\n                    \"field_option_validation\": \"\",\n                    \"value\": \"field_option_2\",\n                    \"field_id\": 6,\n                    \"created_at\": \"2019-12-10T12:57:46.341-03:00\",\n                    \"updated_at\": \"2019-12-11T11:11:50.668-03:00\",\n                    \"parent_field_option_id\": null,\n                    \"configuration\": {},\n                    \"code\": \"field_option_2\"\n                }\n            ]\n        },\n        {\n            \"id\": 7,\n            \"type\": \"Fields::Checklist\",\n            \"order\": 5,\n            \"suborder\": 1,\n            \"title\": \"Listado\",\n            \"code\": \"field_7\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"\",\n            \"key\": \"list\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": null,\n            \"field_options\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Check 1\",\n                    \"order\": 1,\n                    \"field_option_validation\": \"\",\n                    \"value\": \"field_option_1\",\n                    \"field_id\": 7,\n                    \"created_at\": \"2019-12-10T12:57:46.375-03:00\",\n                    \"updated_at\": \"2019-12-11T11:11:50.731-03:00\",\n                    \"parent_field_option_id\": null,\n                    \"configuration\": {},\n                    \"code\": \"field_option_3\"\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Check 2\",\n                    \"order\": 2,\n                    \"field_option_validation\": \"\",\n                    \"value\": \"field_option_2\",\n                    \"field_id\": 7,\n                    \"created_at\": \"2019-12-10T12:57:46.383-03:00\",\n                    \"updated_at\": \"2019-12-11T11:11:50.740-03:00\",\n                    \"parent_field_option_id\": null,\n                    \"configuration\": {},\n                    \"code\": \"field_option_4\"\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"type\": \"Fields::Switch\",\n            \"order\": 10,\n            \"suborder\": 1,\n            \"title\": \"Switch\",\n            \"code\": \"field_2\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"\",\n            \"key\": \"Check\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": null\n        },\n        {\n            \"id\": 1,\n            \"type\": \"Fields::Checkbox\",\n            \"order\": 11,\n            \"suborder\": 1,\n            \"title\": \"Checkbok\",\n            \"code\": \"field_1\",\n            \"description\": \"\",\n            \"required\": true,\n            \"required_message\": \"\",\n            \"key\": \"Check\",\n            \"placeholder\": \"\",\n            \"tooltip\": \"\",\n            \"format\": \"\",\n            \"format_error_message\": \"\",\n            \"form_id\": 4,\n            \"child_keys\": \"\",\n            \"visibility_parent_field_key_id\": null,\n            \"visibility_parent_field_option_value_id\": null,\n            \"visibility_parent_field_option_values\": [],\n            \"visibility_toggleable_field_id\": null,\n            \"visibility_toggleable_field_value\": null,\n            \"read_only\": false,\n            \"default_value\": \"\",\n            \"auxiliary\": false,\n            \"hidden\": false,\n            \"logic_evaluation\": \"\",\n            \"logic_evaluation_error_message\": \"\",\n            \"image_url\": \"\",\n            \"configuration\": {},\n            \"editable\": true,\n            \"linked_default_value_key\": null\n        }\n    ]\n}"},{"id":"512bb9b9-219c-411e-8d7d-9ac28e5ff210","name":"Show - 200 OK (empty)","originalRequest":{"method":"GET","header":[{"key":"Utility-Id","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflows/1/forms/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"eb1a32bb4f28b5e842bed267d1647178\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"62d659a9-f762-4294-8945-da7157e578bd"},{"key":"X-Runtime","value":"0.262456"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"workflow_id\": 1,\n    \"order\": 1,\n    \"name\": \"Formulario 3.4 - Header 1\",\n    \"code\": \"form_1\",\n    \"custom\": false,\n    \"external_key\": \"Formulario_3_4_Paso_1\",\n    \"fields\": []\n}"}],"_postman_id":"db8c29ea-b964-48da-82fb-d3504d288b8d"}],"id":"725776eb-9f6d-416a-a302-2e7b23f75b56","_postman_id":"725776eb-9f6d-416a-a302-2e7b23f75b56","description":""},{"name":"Field Options","item":[{"name":"Index","id":"65331723-a1ab-4c69-b7f7-d0ca2ce1132e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/fields/8/field_options","description":"<p>Get external field options for a given field</p>\n","urlObject":{"path":["api","v1","fields","8","field_options"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0b74d7cf-0e75-49c1-a2c0-6042f68f74c0","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/fields/8/field_options"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bd369d7c-941e-4f56-936b-206457f592d6"},{"key":"X-Runtime","value":"0.039277"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"4616fcc6-633e-4a83-8994-cd11bdd71ccf\",\n    \"url\": \"http://localhost:3000/async_request/jobs/4616fcc6-633e-4a83-8994-cd11bdd71ccf\"\n}"},{"id":"4ca26abe-0a81-4582-9fc6-4fb7c1ee3d61","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/fields/8/field_options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bd369d7c-941e-4f56-936b-206457f592d6"},{"key":"X-Runtime","value":"0.039277"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": null,\n        \"field_id\": null,\n        \"name\": \"La Plata\",\n        \"order\": 1,\n        \"code\": null,\n        \"parent_field_option_id\": null,\n        \"value\": \"1\",\n        \"configuration\": {}\n    },\n    {\n        \"id\": null,\n        \"field_id\": null,\n        \"name\": \"Ensenada\",\n        \"order\": 2,\n        \"code\": null,\n        \"parent_field_option_id\": null,\n        \"value\": \"2\",\n        \"configuration\": {}\n    }\n]"},{"id":"61a97900-c3d1-4025-b3cf-57b81b409891","name":"Index - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/fields/56789/field_options"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b72b8ad1-07e6-4012-9613-c59afbb60960"},{"key":"X-Runtime","value":"0.012307"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"fade4a47-e6bb-4925-836c-01debe0a3e00","name":"Index - 422 Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/fields/1/field_options"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0d1feed9-b5bd-4f71-9760-d838ad32bfc1"},{"key":"X-Runtime","value":"0.019633"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"no_external_field_options\",\n            \"message\": \"El Field no tiene field options externos\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"65331723-a1ab-4c69-b7f7-d0ca2ce1132e"}],"id":"79dc4ae9-3234-4d77-9df0-3a3f53825032","_postman_id":"79dc4ae9-3234-4d77-9df0-3a3f53825032","description":""},{"name":"Project Responses","item":[{"name":"Index","id":"7e136f8d-d92a-45dd-b64d-9a42eec5c40e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses?page=1&page_size=10&order_by=last_workflow_client_approval_at&order_sort=desc&status=pending&statuses[]=pending&statuses[]=closed&status_group=final_inspection_rejected&project_number=63635&home_improvement_project=false&owner_city=Bahía%20Blanca&owner_name=Juan%20Perez&owner_document_type=dni&owner_document_number=23567897&owner_address=Juncal 984&pipes=true&service=false","urlObject":{"path":["api","v1","project_responses"],"host":["{{base-api-url}}"],"query":[{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>optional. Possible values: status, owner_address, owner_city, owner_document_type, owner_document_number, project_number, started_at, owner_name, external_id, pipes, service, project_type, last_workflow_client_approval_at</p>\n","type":"text/plain"},"key":"order_by","value":"last_workflow_client_approval_at"},{"description":{"content":"<p>optional. Possible values: asc, desc</p>\n","type":"text/plain"},"key":"order_sort","value":"desc"},{"description":{"content":"<p>optional. Possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed, partial_inspection_visa_without_inspection</p>\n","type":"text/plain"},"key":"status","value":"pending"},{"description":{"content":"<p>optional. Array with possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed, partial_inspection_visa_without_inspection</p>\n","type":"text/plain"},"key":"statuses[]","value":"pending"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"statuses[]","value":"closed"},{"description":{"content":"<p>optional. Possible values: in_progress, feasibility_observed, partial_inspection_rejected, final_inspection_rejected</p>\n","type":"text/plain"},"key":"status_group","value":"final_inspection_rejected"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"project_number","value":"63635"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"home_improvement_project","value":"false"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"owner_city","value":"Bahía%20Blanca"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_name","value":"Juan%20Perez"},{"description":{"content":"<p>optional. Possible values: dni</p>\n","type":"text/plain"},"key":"owner_document_type","value":"dni"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_document_number","value":"23567897"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_address","value":"Juncal 984"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"pipes","value":"true"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"service","value":"false"}],"variable":[]}},"response":[{"id":"7af60d91-09c9-4af3-8ee8-a6b2b9aadaa6","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"url":{"raw":"{{base-api-url}}/api/v1/project_responses","host":["{{base-api-url}}"],"path":["api","v1","project_responses"],"query":[{"key":"owner_city","value":"Bahía%20Blanca","disabled":true},{"key":"status","value":"pending","disabled":true},{"key":"page","value":"1","disabled":true},{"key":"page_size","value":"10","disabled":true},{"key":"order_by","value":"status","disabled":true},{"key":"order_sort","value":"desc","disabled":true},{"key":"statuses[]","value":"pending","disabled":true},{"key":"statuses[]","value":"closed","disabled":true},{"key":"project_number","value":"63635","description":"optional","disabled":true},{"key":"home_improvement_project","value":"false","description":"optional. Possible values: true, false","disabled":true},{"key":"owner_name","value":"Juan%20Perez","description":"optional","disabled":true},{"key":"owner_document_type","value":"dni","description":"optional. Possible values: dni","disabled":true},{"key":"owner_document_number","value":"23567897","description":"optional","disabled":true},{"key":"owner_address","value":"Juncal 984","description":"optional","disabled":true},{"key":"pipes","value":"true","description":"optional. Possible values: true, false","disabled":true},{"key":"service","value":"false","description":"optional. Possible values: true, false","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": \"100\",\n    \"data\": [\n        {\n            \"external_id\": \"123456\",\n            \"project_number\": \"4568765\",\n            \"status\": \"pending\",\n            \"status_label\": \"Nuevo\",\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"incomplete\": true,\n            \"cancellable\": true,\n            \"editable\": true,\n            \"can_create_workflow_3_4\": false,\n            \"can_create_workflow_3_5_partial\": true,\n            \"can_create_workflow_3_5_final\": true,\n            \"can_create_workflow_3_5_partial_reconnection\": false,\n            \"can_create_workflow_3_5_final_reconnection\": false,\n            \"can_disable\": false,\n            \"can_mark_as_seen\": false,\n            \"input_values\": {\n                \"AGAccountId\": \"003467754\",\n                \"ProjectType\": \"Ampliacion\",\n                \"HomeImprovementProject\": false,\n                \"OwnerCuit\": null,\n                \"OwnerFirstName\": \"Juan\",\n                \"OwnerLastName\": \"Perez\",\n                \"OwnerDocumentType\": \"DNI\",\n                \"OwnerDocumentNumber\": \"23567897\",\n                \"OwnerStreet\": \"Juncal\",\n                \"OwnerStreetNumber\": \"984\",\n                \"OwnerFloor\": \"2\",\n                \"OwnerApartment\": \"A\",\n                \"OwnerTower\": \"Golf\",\n                \"OwnerCity\": \"001\",\n                \"OwnerBetweenStreet1\": \"Belgrano\",\n                \"OwnerBetweenStreet2\": \"Larrea\",\n                \"MainPipe\": true,\n                \"SupplyPossibility\": true,\n                \"OwnerPhone\": {\n                    \"OwnerPhoneAreaCode\": \"11\",\n                    \"OwnerPhoneNumber\": \"45675788\"\n                },\n                \"OwnerPhoneType\": \"CELULAR\",\n                \"OwnerEmail\": \"juan_perez@example.com\",\n                \"IsFunctionalUnit\": null,\n                \"HasPipeModification\": null\n            },\n            \"last_workflow_client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n            \"id\": 2\n        }\n    ]\n}"},{"id":"908dd8cc-06d3-4034-8796-4a648f4325d8","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"url":{"raw":"{{base-api-url}}/api/v1/project_responses","host":["{{base-api-url}}"],"path":["api","v1","project_responses"],"query":[{"key":"owner_city","value":"Bahía%20Blanca","disabled":true},{"key":"status","value":"pending","disabled":true},{"key":"page","value":"1","disabled":true},{"key":"page_size","value":"10","disabled":true},{"key":"order_by","value":"status","disabled":true},{"key":"order_sort","value":"desc","disabled":true},{"key":"statuses[]","value":"pending","disabled":true},{"key":"statuses[]","value":"closed","disabled":true},{"key":"project_number","value":"63635","description":"optional","disabled":true},{"key":"home_improvement_project","value":"false","description":"optional. Possible values: true, false","disabled":true},{"key":"owner_name","value":"Juan%20Perez","description":"optional","disabled":true},{"key":"owner_document_type","value":"dni","description":"optional. Possible values: dni","disabled":true},{"key":"owner_document_number","value":"23567897","description":"optional","disabled":true},{"key":"owner_address","value":"Juncal 984","description":"optional","disabled":true},{"key":"pipes","value":"true","description":"optional. Possible values: true, false","disabled":true},{"key":"service","value":"false","description":"optional. Possible values: true, false","disabled":true}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7d2fa15f-d7aa-4126-af29-2d85906ec88d"},{"key":"X-Runtime","value":"0.027860"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"95b68624-0b9a-4959-8316-54bb6d9c91a3\",\n    \"url\": \"http://localhost:3000/async_request/jobs/95b68624-0b9a-4959-8316-54bb6d9c91a3\"\n}"},{"id":"ad0626ec-9afc-497c-a28b-0cf81b19b3e0","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"url":{"raw":"{{base-api-url}}/api/v1/project_responses","host":["{{base-api-url}}"],"path":["api","v1","project_responses"],"query":[{"key":"owner_city","value":"Bahía%20Blanca","disabled":true},{"key":"status","value":"pending","disabled":true},{"key":"page","value":"1","disabled":true},{"key":"page_size","value":"10","disabled":true},{"key":"order_by","value":"status","disabled":true},{"key":"order_sort","value":"desc","disabled":true},{"key":"statuses[]","value":"pending","disabled":true},{"key":"statuses[]","value":"closed","disabled":true},{"key":"project_number","value":"63635","description":"optional","disabled":true},{"key":"home_improvement_project","value":"false","description":"optional. Possible values: true, false","disabled":true},{"key":"owner_name","value":"Juan%20Perez","description":"optional","disabled":true},{"key":"owner_document_type","value":"dni","description":"optional. Possible values: dni","disabled":true},{"key":"owner_document_number","value":"23567897","description":"optional","disabled":true},{"key":"owner_address","value":"Juncal 984","description":"optional","disabled":true},{"key":"pipes","value":"true","description":"optional. Possible values: true, false","disabled":true},{"key":"service","value":"false","description":"optional. Possible values: true, false","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": 0,\n    \"data\": []\n}"}],"_postman_id":"7e136f8d-d92a-45dd-b64d-9a42eec5c40e"},{"name":"Show","id":"ca45e06d-f1f3-4f2b-b815-2979958a67de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/{{project-response-id}}","urlObject":{"path":["api","v1","project_responses","{{project-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"c31e61ab-5f50-4f01-acb3-b3c8bfa12a16","name":"202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"dbc96a88-11e6-4061-bb24-5fc3fc20e87b"},{"key":"X-Runtime","value":"0.138179"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"fbbb1d7f-3c47-4f97-9fb0-dea841c8cda8\",\n    \"url\": \"http://localhost:3000/async_request/jobs/fbbb1d7f-3c47-4f97-9fb0-dea841c8cda8\"\n}"},{"id":"fa9adb19-87d5-418c-97a3-58117d77bb03","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"dbc96a88-11e6-4061-bb24-5fc3fc20e87b"},{"key":"X-Runtime","value":"0.138179"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"user_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_number\": \"4568765\",\n    \"status\": \"pending\",\n    \"status_label\": \"Nuevo\",\n    \"last_snapshot_id\": \"1234\",\n    \"input_values\": {\n        \"AGAccountId\": \"003467754\",\n        \"ProjectType\": \"Ampliacion\",\n        \"HomeImprovementProject\": false,\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"IsFunctionalUnit\": null,\n        \"HasPipeModification\": null,\n        \"MeterNumber\": 123456\n    },\n    \"cancellable\": true,\n    \"editable\": true,\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"can_create_workflow_3_4\": false,\n    \"can_create_workflow_3_5_partial\": true,\n    \"can_create_workflow_3_5_final\": true,\n    \"can_create_workflow_3_5_partial_reconnection\": false,\n    \"can_create_workflow_3_5_final_reconnection\": false,\n    \"can_disable\": false,\n    \"can_mark_as_seen\": false,\n    \"initial_workflow_id\": 1,\n    \"last_workflow_client_approval_at\": null,\n    \"workflow_responses\": [\n        {\n            \"id\": 3,\n            \"workflow_id\": 1,\n            \"external_id\": \"123456\",\n            \"project_response_id\": 2,\n            \"workflow_name\": \"Formulario 3.4\",\n            \"status\": \"pending\",\n            \"status_label\": \"Trámite pendiente de enviar\",\n            \"incomplete\": true,\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"claimable\": false,\n            \"discharge_comment\": \"Pedido de revisión de trámite\",\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": null,\n            \"visit_information\": null,\n            \"client_approval_at\": null,\n            \"can_rectify\": true,\n            \"snapshot_id\": \"1234\"\n        },\n        {\n            \"id\": 4,\n            \"workflow_id\": 1,\n            \"external_id\": \"563456\",\n            \"project_response_id\": 2,\n            \"workflow_name\": \"Formulario 3.4\",\n            \"status\": \"observed\",\n            \"status_label\": \"Trámite observado\",\n            \"incomplete\": false,\n            \"started_at\": \"2019-03-20T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"claimable\": false,\n            \"discharge_comment\": null,\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": null,\n            \"visit_information\": null,\n            \"client_approval_at\": null,\n            \"can_rectify\": true,\n            \"snapshot_id\": \"1234\"\n        }\n    ]\n}"}],"_postman_id":"ca45e06d-f1f3-4f2b-b815-2979958a67de"},{"name":"Create","id":"c0d4f626-9efe-49e2-aa19-4f7cd74e795c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"input_values\": {\n\t\t\"workflow_type\": \"Nuevo\",\n    \t\"owner_name\": \"Juan Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"23567897\",\n    \t\"owner_address\": \"Juncal 984\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses","urlObject":{"path":["api","v1","project_responses"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3a304628-fb34-4f0b-a9aa-2f075d932c92","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"input_values\": {\n\t\t\"workflow_type\": \"Nuevo\",\n    \t\"owner_name\": \"Juan Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"23567897\",\n    \t\"owner_address\": \"Juncal 984\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","description":"","type":"text"},{"key":"X-XSS-Protection","value":"1; mode=block","description":"","type":"text"},{"key":" X-Content-Type-Options","value":"nosniff","description":"","type":"text"},{"key":"X-Download-Options","value":"noopen","description":"","type":"text"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","description":"","type":"text"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","description":"","type":"text"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"ETag","value":"W/\"c261c5e3c947c750e6b17135fdb97ba3\"","description":"","type":"text"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"","type":"text"},{"key":"X-Request-Id","value":"6741f199-6197-4876-a1aa-cbc6cdde07de","description":"","type":"text"},{"key":"X-Runtime","value":"0.009035","description":"","type":"text"},{"key":"Vary","value":"Origin","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"user_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_number\": \"4568765\",\n    \"status\": \"pending\",\n    \"status_label\": \"Nuevo\",\n    \"input_values\": {\n        \"AGAccountId\": \"003467754\",\n        \"ProjectType\": \"Ampliacion\",\n        \"HomeImprovementProject\": false,\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"IsFunctionalUnit\": null,\n        \"HasPipeModification\": null\n    },\n    \"cancellable\": true,\n    \"editable\": true,\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"can_create_workflow_3_4\": false,\n    \"can_create_workflow_3_5_partial\": true,\n    \"can_create_workflow_3_5_final\": true,\n    \"can_create_workflow_3_5_partial_reconnection\": false,\n    \"can_create_workflow_3_5_final_reconnection\": false,\n    \"can_disable\": false,\n    \"can_mark_as_seen\": false,\n    \"initial_workflow_id\": 1,\n    \"last_workflow_client_approval_at\": \"2019-03-30T14:10:55.000-03:00\"\n}"},{"id":"928e02fa-81fc-458a-9788-268100e86446","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"input_values\": {\n\t\t\"workflow_type\": \"Nuevo\",\n    \t\"owner_name\": \"Juan Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"23567897\",\n    \t\"owner_address\": \"Juncal 984\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c95c5277-c67f-4bb5-8a40-e94fda715b20"},{"key":"X-Runtime","value":"0.106716"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"4e75e777-5a99-4bd1-afee-8a411511d937\",\n    \"url\": \"http://localhost:3000/async_request/jobs/4e75e777-5a99-4bd1-afee-8a411511d937\"\n}"}],"_postman_id":"c0d4f626-9efe-49e2-aa19-4f7cd74e795c"},{"name":"Update","id":"e5fd3517-4320-4e2f-affd-ab5be55f1144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"123456\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false,\n    \t\"ProjectResponse\": \"reconexion\",\n    \t\"HasPipeModification\": \"true\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses/12","urlObject":{"path":["api","v1","project_responses","12"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"7290c4f8-5c43-47f3-b5a5-b6ce7c05473c","name":"422 - Update fail","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"123456\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false,\n    \t\"ProjectResponse\": \"reconexion\",\n    \t\"HasPipeModification\": \"true\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses/12"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b632584f-5380-4bf6-a3ba-a8d4bc80830c"},{"key":"X-Runtime","value":"0.031416"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"project_response_error\",\n            \"message\": \"debe existir\",\n            \"meta\": null\n        },\n        {\n            \"status\": 422,\n            \"code\": \"project_response_error\",\n            \"message\": \"no puede estar en blanco\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"7b2128ca-16de-466b-ba55-afc45d9123a9","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"123456\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f765a8a5-005a-4dfa-9d21-e56920c8e0ed"},{"key":"X-Runtime","value":"0.167628"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Proyecto actualizado correctamente.\",\n    \"project_response\": {\n        \"id\": 1,\n        \"user_id\": 1,\n        \"external_id\": \"123456\",\n        \"project_number\": \"4568765\",\n        \"status\": \"closed\",\n        \"status_label\": \"Cerrado\",\n        \"input_values\": {\n            \"AGAccountId\": null,\n            \"ProjectType\": \"Nuevo\",\n            \"HomeImprovementProject\": false,\n            \"IsFunctionalUnit\": null,\n            \"HasPipeModification\": null,\n            \"OwnerCuit\": null,\n            \"OwnerCity\": \"001\",\n            \"OwnerFirstName\": \"Juan\",\n            \"OwnerLastName\": \"Perez\",\n            \"OwnerAddress\": \"Juncal 984\",\n            \"OwnerDocumentNumber\": \"23567897\",\n            \"OwnerDocumentType\": \"DNI\",\n            \"OwnerStreet\": \"Juncal\",\n            \"OwnerStreetNumber\": \"984\",\n            \"OwnerFloor\": \"2\",\n            \"OwnerApartment\": \"A\",\n            \"OwnerTower\": \"Golf\",\n            \"OwnerBetweenStreet1\": \"Belgrano\",\n            \"OwnerBetweenStreet2\": \"Larrea\",\n            \"MainPipe\": true,\n            \"SupplyPossibility\": true,\n            \"OwnerPhone\": {\n                \"OwnerPhoneAreaCode\": \"11\",\n                \"OwnerPhoneNumber\": \"45675788\"\n            },\n            \"OwnerPhoneType\": \"CELULAR\",\n            \"OwnerEmail\": \"juan_perez@example.com\"\n        },\n        \"cancellable\": true,\n        \"editable\": true,\n        \"incomplete\": true,\n        \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"can_create_workflow_3_4\": false,\n        \"can_create_workflow_3_5_partial\": true,\n        \"can_create_workflow_3_5_final\": true,\n        \"can_create_workflow_3_5_partial_reconnection\": false,\n        \"can_create_workflow_3_5_final_reconnection\": false,\n        \"can_disable\": false,\n        \"can_mark_as_seen\": false,\n        \"initial_workflow_id\": 1,\n        \"last_workflow_client_approval_at\": null\n    }\n}"},{"id":"b094d522-dfe9-4f38-b428-84c6064b47e2","name":"202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"pending\",\n\t\"external_id\": \"123456\",\n\t\"input_values\": {\n    \t\"owner_name\": \"Damian Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"12345678\",\n    \t\"owner_address\": \"Juncal 800\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f765a8a5-005a-4dfa-9d21-e56920c8e0ed"},{"key":"X-Runtime","value":"0.167628"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"b5571466-ba0d-494a-b119-ef305bd5bd99\",\n    \"url\": \"http://localhost:3000/async_request/jobs/b5571466-ba0d-494a-b119-ef305bd5bd99\"\n}"}],"_postman_id":"e5fd3517-4320-4e2f-affd-ab5be55f1144"},{"name":"Delete","id":"fe05d0fe-df7b-4c17-a9fd-53f58ba049f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/{{project-response-id}}","urlObject":{"path":["api","v1","project_responses","{{project-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"9033ae5e-eaf2-47e0-bb91-e92fe69b87f3","name":"202 Accepted","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6a6f10a3-a85d-49ea-bde1-30cf98669779"},{"key":"X-Runtime","value":"0.583558"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"55e35763-ce41-4dec-aef5-ca27326500ec\",\n    \"url\": \"http://localhost:3000/async_request/jobs/55e35763-ce41-4dec-aef5-ca27326500ec\"\n}"},{"id":"ff32c2d6-52cf-4129-b0e2-4eb3df6da0a3","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/1"},"status":"OK","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6a6f10a3-a85d-49ea-bde1-30cf98669779"},{"key":"X-Runtime","value":"0.583558"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Proyecto cancelado correctamente.\"\n}"}],"_postman_id":"fe05d0fe-df7b-4c17-a9fd-53f58ba049f7"},{"name":"History","id":"f406ca07-6727-4f73-a99d-da1f9218fee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/{{project-response-id}}/history","urlObject":{"path":["api","v1","project_responses","{{project-response-id}}","history"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"4b008b85-9a35-43da-8376-b7db51f708cb","name":"202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/1/history"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"08391ca3-a874-462b-82f3-f5912ad6095d"},{"key":"X-Runtime","value":"0.040187"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"8dae4ce5-6ec4-441b-9fcc-16e17649c935\",\n    \"url\": \"http://localhost:3000/async_request/jobs/8dae4ce5-6ec4-441b-9fcc-16e17649c935\"\n}"},{"id":"f8712d0f-4823-487a-8f73-007ec1ccb792","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/1/history"},"status":"OK","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"08391ca3-a874-462b-82f3-f5912ad6095d"},{"key":"X-Runtime","value":"0.040187"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"order\": 1,\n        \"updated_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"status_label\": \"Abierto\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null,\n        \"snapshot_id\": 1\n    },\n    {\n        \"order\": 2,\n        \"updated_at\": \"2019-03-30T14:20:55.000-03:00\",\n        \"status_label\": \"En curso\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null,\n        \"snapshot_id\": null\n    },\n    {\n        \"order\": 3,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Inspección parcial en curso\",\n        \"observations\": null,\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\",\n        \"snapshot_id\": 3\n    },\n    {\n        \"order\": 4,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Rechazado\",\n        \"observations\": \"Faltó definir altura de la calle\",\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\",\n        \"snapshot_id\": null\n    }\n]"}],"_postman_id":"f406ca07-6727-4f73-a99d-da1f9218fee0"},{"name":"Seen","id":"b213930e-6505-4ecb-90b8-a5c50f1ae768","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/seen","description":"<p>Mark a project response as seen</p>\n","urlObject":{"path":["api","v1","project_responses","{{project_response_id}}","seen"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"28a12236-532c-4659-bafd-29bfc8e6434a","name":"Seen  - 202 Accepted","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/1/seen"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"92e24e1a-7048-48f1-aaae-0b79809cfe42"},{"key":"X-Runtime","value":"0.079806"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"586dd4b0-ded1-4286-be3e-96718d497dbd\",\n    \"url\": \"http://localhost:3000/async_request/jobs/586dd4b0-ded1-4286-be3e-96718d497dbd\"\n}"},{"id":"79354021-40fa-4712-82b5-e2986d033eb7","name":"Seen - 404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/100/seen"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"4672c38f-a7cd-4c56-97d5-8710b5bff809"},{"key":"X-Runtime","value":"0.013545"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"e32635d8-9596-458d-ae77-4906891791c4","name":"Seen - 200 OK","originalRequest":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"url":"{{base-api-url}}/api/v1/project_responses/1/seen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"92e24e1a-7048-48f1-aaae-0b79809cfe42"},{"key":"X-Runtime","value":"0.079806"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Proyecto marcado visto correctamente.\"\n}"}],"_postman_id":"b213930e-6505-4ecb-90b8-a5c50f1ae768"},{"name":"Snapshot","id":"dc13a190-c8ab-456d-ba2c-20cefce033d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/snapshot/{{snapshot_id}}","description":"<p>Retrieves the snapshot of a project response</p>\n","urlObject":{"path":["api","v1","project_responses","{{project_response_id}}","snapshot","{{snapshot_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"4f42910f-658d-4bb0-b672-f1ff6540404e","name":"Snapshot- 202 accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/snapshot/{{snapshot_id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8692d61b-f58a-4e8b-97c0-e4c9d9ecb07a"},{"key":"X-Runtime","value":"0.074477"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"d05ba93e-e53b-4682-a87e-f5b6418bf750\",\n    \"url\": \"http://localhost:3000/async_request/jobs/d05ba93e-e53b-4682-a87e-f5b6418bf750\"\n}"},{"id":"c55dccbf-1ac8-4309-a3b1-12b39f23f956","name":"Snapshot- 200 ok","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/123/snapshot/123"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8692d61b-f58a-4e8b-97c0-e4c9d9ecb07a"},{"key":"X-Runtime","value":"0.074477"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"input_values\": {\n        \"ProjectType\": \"Ampliacion\",\n        \"OwnerCuit\": null,\n        \"OwnerFirstName\": \"Juan\",\n        \"OwnerLastName\": \"Perez\",\n        \"OwnerDocumentType\": \"DNI\",\n        \"OwnerDocumentNumber\": \"23567897\",\n        \"OwnerStreet\": \"Juncal\",\n        \"OwnerStreetNumber\": \"984\",\n        \"OwnerFloor\": \"2\",\n        \"OwnerApartment\": \"A\",\n        \"OwnerTower\": \"Golf\",\n        \"OwnerCity\": \"001\",\n        \"OwnerBetweenStreet1\": \"Belgrano\",\n        \"OwnerBetweenStreet2\": \"Larrea\",\n        \"OwnerPhone\": {\n            \"OwnerPhoneAreaCode\": \"11\",\n            \"OwnerPhoneNumber\": \"45675788\"\n        },\n        \"OwnerPhoneType\": \"CELULAR\",\n        \"OwnerEmail\": \"juan_perez@example.com\",\n        \"HomeImprovementProject\": true,\n        \"MainPipe\": true,\n        \"SupplyPossibility\": true,\n        \"InstallationType\": null,\n        \"HasPipeModification\": null,\n        \"MeterNumber\": 123456\n    },\n    \"workflow_response\": {\n        \"workflow_id\": 1,\n        \"form_responses\": [\n            {\n                \"input_values\": {\n                    \"CANTIDAD_INSTALACIONES\": \"3\",\n                    \"CANTIDAD_TOMAS\": \"5\",\n                    \"TIPO_DE_USO\": \"xxxxx\",\n                    \"TIPO_DE_PLANO\": \"triangular\",\n                    \"CALLE_1\": \"xxxx\",\n                    \"CALLE_2\": \"xxxx\",\n                    \"CALLE_3\": \"xxxx\",\n                    \"CALLE_4\": \"xxxx\",\n                    \"DISTANCIA_COTA_A\": \"70\",\n                    \"DISTANCIA_COTA_B\": \"50\",\n                    \"NUM_VECINO_IZQ\": \"345\",\n                    \"NUM_VECINO_DER\": \"12\",\n                    \"OBSERVACIONES\": \"xxxxxx\"\n                },\n                \"form_id\": 1\n            },\n            {\n                \"input_values\": {\n                    \"CANTIDAD_INSTALACIONES\": \"3\",\n                    \"CANTIDAD_TOMAS\": \"5\",\n                    \"TIPO_DE_USO\": \"xxxxx\",\n                    \"TIPO_DE_PLANO\": \"triangular\",\n                    \"CALLE_1\": \"xxxx\",\n                    \"CALLE_2\": \"xxxx\",\n                    \"CALLE_3\": \"xxxx\",\n                    \"CALLE_4\": \"xxxx\",\n                    \"DISTANCIA_COTA_A\": \"70\",\n                    \"DISTANCIA_COTA_B\": \"50\",\n                    \"NUM_VECINO_IZQ\": \"345\",\n                    \"NUM_VECINO_DER\": \"12\",\n                    \"OBSERVACIONES\": \"xxxxxx\"\n                },\n                \"form_id\": 1\n            }\n        ]\n    }\n}"}],"_postman_id":"dc13a190-c8ab-456d-ba2c-20cefce033d6"},{"name":"Unassign User","id":"98acbcee-ddd9-4eb0-9f3c-0f1dc05daac5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/unassign","urlObject":{"path":["api","v1","project_responses","{{project_response_id}}","unassign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"97062f4f-7223-4216-8ecc-96f8b4129588","name":"Unassign - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6IlMxa1Zzel9aTERoenJvU0VYUjFLV1MzeXlzaFdpaFhxbjRYTUIzalV5Q0NSY2ZMWVhHb1lOZ005SzVEMlBxd3IiLCJyZW5ld19pZCI6InpFUWlfTXNScmd5Z0FSdXlNcmtlWnRia0xIZ2M4MWt6IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTY4NTU2NDY1NCwiZXhwaXJhdGlvbl9kYXRlIjoxNjgyNTQwNjU0LCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTY1MTA5MTA1NH0.Qf25ynIk0wXEwiuwp2DYGLCW7gO-cC4g3K5EZGFyaW4","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/0/unassign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a5f07a39-3614-41fc-8bfa-3e2e98e44f16"},{"key":"X-Runtime","value":"0.007282"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"191db3e4-13a7-4d5e-ab51-1949fdb178ce","name":"Unassign - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6IlMxa1Zzel9aTERoenJvU0VYUjFLV1MzeXlzaFdpaFhxbjRYTUIzalV5Q0NSY2ZMWVhHb1lOZ005SzVEMlBxd3IiLCJyZW5ld19pZCI6InpFUWlfTXNScmd5Z0FSdXlNcmtlWnRia0xIZ2M4MWt6IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTY4NTU2NDY1NCwiZXhwaXJhdGlvbl9kYXRlIjoxNjgyNTQwNjU0LCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTY1MTA5MTA1NH0.Qf25ynIk0wXEwiuwp2DYGLCW7gO-cC4g3K5EZGFyaW4","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/1/unassign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"563b8324-469c-45af-905d-0a0a1bc10579"},{"key":"X-Runtime","value":"0.021709"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"7ca22fd5-7df8-4efc-896d-839ea8eb5faa\",\n    \"url\": \"http://localhost:3000/async_request/jobs/7ca22fd5-7df8-4efc-896d-839ea8eb5faa\"\n}"},{"id":"06564171-aa53-449f-a110-e5883838d18c","name":"Unassign - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6IlMxa1Zzel9aTERoenJvU0VYUjFLV1MzeXlzaFdpaFhxbjRYTUIzalV5Q0NSY2ZMWVhHb1lOZ005SzVEMlBxd3IiLCJyZW5ld19pZCI6IkFKelpyQTUydkJGYmk2QWlhM3U2b1JwdXhKVU54WGJ5IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTY4NTYyMjE0MCwiZXhwaXJhdGlvbl9kYXRlIjoxNjgyNTk4MTQwLCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTY1MTE0ODU0MH0.7kj6i4JlnBEa-ixg46C9CXytEDUDpgoG3KQanqU4QTk","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/1/unassign"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6efc51dc-d543-4f69-86c6-4d37212c917b"},{"key":"X-Runtime","value":"0.116860"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: reason\"\n        }\n    ]\n}"}],"_postman_id":"98acbcee-ddd9-4eb0-9f3c-0f1dc05daac5"},{"name":"Resolve Assign User","id":"cf3878a5-14cf-480c-a047-4f969b5594c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"assignment_rejected\",\n    \"observation\": \"Motivo de rechazo.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/resolve_assign","urlObject":{"path":["api","v1","project_responses","{{project_response_id}}","resolve_assign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf3878a5-14cf-480c-a047-4f969b5594c9"},{"name":"Reason","id":"f73a6769-e611-4697-ad54-05b50a07ad75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/reason","urlObject":{"path":["api","v1","project_responses","{{project_response_id}}","reason"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f73a6769-e611-4697-ad54-05b50a07ad75"},{"name":"By Project Number","id":"b2c42ccc-aa8b-46b7-879f-b9a025aead24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"project_number\": \"123456\",\n    \"city\": \"Campana\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/by_project_number","urlObject":{"path":["api","v1","project_responses","by_project_number"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2c42ccc-aa8b-46b7-879f-b9a025aead24"},{"name":"By External Id","id":"3e905aa4-bd30-417d-8ad2-e9a7f4d09df0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/by_external_id?external_id=123456","urlObject":{"path":["api","v1","project_responses","by_external_id"],"host":["{{base-api-url}}"],"query":[{"key":"external_id","value":"123456"}],"variable":[]}},"response":[],"_postman_id":"3e905aa4-bd30-417d-8ad2-e9a7f4d09df0"},{"name":"Pending","id":"e1261199-d1dc-4571-81cf-ab8d90dbfea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/pending","urlObject":{"path":["api","v1","project_responses","pending"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1261199-d1dc-4571-81cf-ab8d90dbfea4"},{"name":"Assign User","id":"52f7e892-b336-48a4-8721-3b80d48f93e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/{{project_response_id}}/assign","urlObject":{"path":["api","v1","project_responses","{{project_response_id}}","assign"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"89bf9ba0-67a3-4aa5-9fea-f4bd9ff3fb3d","name":"Assign - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6IlMxa1Zzel9aTERoenJvU0VYUjFLV1MzeXlzaFdpaFhxbjRYTUIzalV5Q0NSY2ZMWVhHb1lOZ005SzVEMlBxd3IiLCJyZW5ld19pZCI6InpFUWlfTXNScmd5Z0FSdXlNcmtlWnRia0xIZ2M4MWt6IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTY4NTU2NDY1NCwiZXhwaXJhdGlvbl9kYXRlIjoxNjgyNTQwNjU0LCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTY1MTA5MTA1NH0.Qf25ynIk0wXEwiuwp2DYGLCW7gO-cC4g3K5EZGFyaW4","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/0/unassign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a5f07a39-3614-41fc-8bfa-3e2e98e44f16"},{"key":"X-Runtime","value":"0.007282"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"3d0bcf5a-cbb3-4b55-a217-a526f5f3ed84","name":"Assign - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6IlMxa1Zzel9aTERoenJvU0VYUjFLV1MzeXlzaFdpaFhxbjRYTUIzalV5Q0NSY2ZMWVhHb1lOZ005SzVEMlBxd3IiLCJyZW5ld19pZCI6InpFUWlfTXNScmd5Z0FSdXlNcmtlWnRia0xIZ2M4MWt6IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTY4NTU2NDY1NCwiZXhwaXJhdGlvbl9kYXRlIjoxNjgyNTQwNjU0LCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTY1MTA5MTA1NH0.Qf25ynIk0wXEwiuwp2DYGLCW7gO-cC4g3K5EZGFyaW4","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Reason\",\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/1/unassign"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"563b8324-469c-45af-905d-0a0a1bc10579"},{"key":"X-Runtime","value":"0.021709"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"7ca22fd5-7df8-4efc-896d-839ea8eb5faa\",\n    \"url\": \"http://localhost:3000/async_request/jobs/7ca22fd5-7df8-4efc-896d-839ea8eb5faa\"\n}"},{"id":"4746c455-69bd-4359-b6d1-bf1e26b8e48a","name":"Assign - 400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ2ZXJpZmljYXRpb25fY29kZSI6IlMxa1Zzel9aTERoenJvU0VYUjFLV1MzeXlzaFdpaFhxbjRYTUIzalV5Q0NSY2ZMWVhHb1lOZ005SzVEMlBxd3IiLCJyZW5ld19pZCI6IkFKelpyQTUydkJGYmk2QWlhM3U2b1JwdXhKVU54WGJ5IiwibWF4aW11bV91c2VmdWxfZGF0ZSI6MTY4NTYyMjE0MCwiZXhwaXJhdGlvbl9kYXRlIjoxNjgyNTk4MTQwLCJ3YXJuaW5nX2V4cGlyYXRpb25fZGF0ZSI6MTY1MTE0ODU0MH0.7kj6i4JlnBEa-ixg46C9CXytEDUDpgoG3KQanqU4QTk","type":"text"},{"key":"Utility-ID","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"details\": \"Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/1/unassign"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6efc51dc-d543-4f69-86c6-4d37212c917b"},{"key":"X-Runtime","value":"0.116860"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 400,\n            \"code\": \"param_is_missing\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": \"param is missing or the value is empty: reason\"\n        }\n    ]\n}"}],"_postman_id":"52f7e892-b336-48a4-8721-3b80d48f93e0"},{"name":"Docket","id":"3a152bfe-bf9f-4596-8866-f16c1c0c5bbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/:project_response_id/docket","description":"<p>Retrieves the snapshot of a project response</p>\n","urlObject":{"path":["api","v1","project_responses",":project_response_id","docket"],"host":["{{base-api-url}}"],"query":[],"variable":[{"type":"any","value":"1","key":"project_response_id"}]}},"response":[{"id":"49dfe432-9e24-44ed-b6ca-c85c1b4a287e","name":"Docket - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/1/docket"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d4707019-d5b6-4483-bf54-c21ba076fc76"},{"key":"X-Runtime","value":"0.026752"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"0ffab21b-50f5-4bf8-b41a-deba725b8c3f\",\n    \"url\": \"http://localhost:3000/async_request/jobs/0ffab21b-50f5-4bf8-b41a-deba725b8c3f\"\n}"},{"id":"0cb2a97c-8ddd-48ff-b7e8-6c60ccdd57e4","name":"Docket - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/project_responses/1/docket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"d4707019-d5b6-4483-bf54-c21ba076fc76"},{"key":"X-Runtime","value":"0.026752"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_calories\": \"154.67\",\n    \"can_create_workflow_3_5_final\": true,\n    \"included_projects\": [\n        {\n            \"project_response_id\": null,\n            \"external_id\": 1,\n            \"project_number\": 2,\n            \"status_label\": \"Sin Matriculado\",\n            \"calories\": \"25.4\",\n            \"owner_full_name\": \"Facu García\",\n            \"owner_document_type\": \"DNI\",\n            \"owner_document_number\": \"2485249\",\n            \"owner_address\": \"CA. L. N. Alem 250 1 D\",\n            \"owner_city\": 60700,\n            \"is_from_ag\": true,\n            \"can_assign\": false,\n            \"can_view\": false\n        },\n        {\n            \"project_response_id\": null,\n            \"external_id\": 2,\n            \"project_number\": 2234,\n            \"status_label\": \"Sin Matriculado\",\n            \"calories\": \"25.4\",\n            \"owner_full_name\": \"Derek Dannevig\",\n            \"owner_document_type\": \"DNI\",\n            \"owner_document_number\": \"2485444\",\n            \"owner_address\": \"CA. L. N. Alem 250 1 A\",\n            \"owner_city\": 60700,\n            \"is_from_ag\": false,\n            \"can_assign\": false,\n            \"can_view\": true\n        },\n        {\n            \"project_response_id\": null,\n            \"external_id\": 3,\n            \"project_number\": 1234,\n            \"status_label\": \"Sin Matriculado\",\n            \"calories\": \"25.4\",\n            \"owner_full_name\": \"Roy Vicente\",\n            \"owner_document_type\": \"DNI\",\n            \"owner_document_number\": \"24555249\",\n            \"owner_address\": \"CA. L. N. Alem 250 1 B\",\n            \"owner_city\": 60700,\n            \"is_from_ag\": false,\n            \"can_assign\": false,\n            \"can_view\": true\n        }\n    ],\n    \"related_projects\": [\n        {\n            \"project_response_id\": null,\n            \"external_id\": 5,\n            \"project_number\": 2234,\n            \"status_label\": \"Sin Matriculado\",\n            \"calories\": \"25.4\",\n            \"owner_full_name\": \"Derek Dannevig\",\n            \"owner_document_type\": \"DNI\",\n            \"owner_document_number\": \"2485444\",\n            \"owner_address\": \"CA. L. N. Alem 250 5 A\",\n            \"owner_city\": 60700,\n            \"is_from_ag\": false,\n            \"can_assign\": false,\n            \"can_view\": true\n        },\n        {\n            \"project_response_id\": null,\n            \"external_id\": null,\n            \"project_number\": 1234,\n            \"status_label\": \"Sin Matriculado\",\n            \"calories\": \"25.4\",\n            \"owner_full_name\": \"Roy Vicente\",\n            \"owner_document_type\": \"DNI\",\n            \"owner_document_number\": \"24555249\",\n            \"owner_address\": \"CA. L. N. Alem 250 7 B\",\n            \"owner_city\": 60700,\n            \"is_from_ag\": true,\n            \"can_assign\": false,\n            \"can_view\": false\n        }\n    ],\n    \"pending_projects\": [\n        {\n            \"project_response_id\": null,\n            \"external_id\": 4,\n            \"project_number\": 1234,\n            \"status_label\": \"Sin Matriculado\",\n            \"calories\": \"25.4\",\n            \"owner_full_name\": \"Roy Vicente\",\n            \"owner_document_type\": \"DNI\",\n            \"owner_document_number\": \"24555249\",\n            \"owner_address\": \"CA. L. N. Alem 250 2 C\",\n            \"owner_city\": 60700,\n            \"is_from_ag\": false,\n            \"can_assign\": false,\n            \"can_view\": true\n        }\n    ]\n}"}],"_postman_id":"3a152bfe-bf9f-4596-8866-f16c1c0c5bbc"},{"name":"Association","id":"db26ed7f-0c75-46c8-8a93-9ebaff2ef8a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"body":{"mode":"raw","raw":"{\n  \"project_response_external_id\": 4,\n  \"project_number\": 1234,\n  \"owner_city_id\": 3,\n  \"associate\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base-api-url}}/api/v1/project_responses/{{general-project-response-id}}/association","description":"<p>Mark a project response as seen</p>\n","urlObject":{"path":["api","v1","project_responses","{{general-project-response-id}}","association"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db26ed7f-0c75-46c8-8a93-9ebaff2ef8a6"}],"id":"375fc77c-c1e4-4dca-a704-ca58a2018dd5","description":"<p>Statuses: <code>pending</code>, <code>in_progress</code>, <code>feasibility_sent</code>, <code>feasibility_approved_by_client</code>, <code>feasibility_under_review</code>, <code>feasibility_observed</code>, <code>feasibility_approved</code>, <code>feasibility_answered</code>, <code>ongoing_partial_inspection</code>, <code>ongoing_final_inspection</code>, <code>partial_inspection_sent</code>, <code>final_inspection_sent</code>, <code>partial_inspection_approved_by_client</code>, <code>final_inspection_approved_by_client</code>, <code>partial_inspection_rejected_by_client</code>, <code>final_inspection_rejected_by_client</code>, <code>partial_inspection_observed</code>, <code>partial_inspection_rejected</code>, <code>partial_inspection_approved</code>, <code>final_inspection_observed</code>, <code>final_inspection_rejected</code>, <code>final_inspection_approved</code>, <code>final_inspection_approved_with_deadline</code>, <code>closed</code>, <code>canceled</code>, <code>blocked</code>, <code>partial_inspection_visa_without_inspection</code>.</p>\n","event":[{"listen":"prerequest","script":{"id":"8ff3fc27-9ee5-4148-a2dc-8d5abd1c7150","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e1f70fa1-3b12-4989-8011-a1b3ab1d715d","type":"text/javascript","exec":[""]}}],"_postman_id":"375fc77c-c1e4-4dca-a704-ca58a2018dd5"},{"name":"Workflow Responses","item":[{"name":"Show","id":"ace3c75f-213e-41e6-a54f-d320ddb11d21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}","urlObject":{"path":["api","v1","workflow_responses","{{workflow_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"1cc90c3e-a52f-4b84-b001-9f2f32d13adb","name":"Show - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d8bee97259d6688a51138c94c9344d68\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4f5a2987-45db-4691-a86c-dfd2a3addb99"},{"key":"X-Runtime","value":"1.184806"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"26b11e96-2fb2-405f-b833-02b10977286b\",\n    \"url\": \"http://localhost:3000/async_request/jobs/26b11e96-2fb2-405f-b833-02b10977286b\"\n}"},{"id":"44807b08-383a-419b-b27b-915574b66241","name":"Show - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d8bee97259d6688a51138c94c9344d68\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4f5a2987-45db-4691-a86c-dfd2a3addb99"},{"key":"X-Runtime","value":"1.184806"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"workflow_id\": 1,\n    \"external_id\": \"123456\",\n    \"project_response_id\": 2,\n    \"workflow_name\": \"Formulario 3.4\",\n    \"status\": \"pending\",\n    \"status_label\": \"Trámite pendiente de enviar\",\n    \"incomplete\": true,\n    \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n    \"cancellable\": true,\n    \"editable\": true,\n    \"observable\": true,\n    \"approvable\": true,\n    \"client_approvable\": false,\n    \"client_observable\": false,\n    \"client_rejectable\": false,\n    \"observations\": null,\n    \"rejection_reasons\": [\n        {\n            \"reason\": \"Instalación rechazada por X\",\n            \"comments\": \"Comentario\"\n        }\n    ],\n    \"claimable\": false,\n    \"discharge_comment\": \"Pedido de revisión de trámite\",\n    \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n    \"inspector_name\": \"Martin Gonzalez\",\n    \"visit_information\": {\n        \"message\": null,\n        \"notify_user\": true,\n        \"notify_owner\": true,\n        \"date\": \"2020-09-01\",\n        \"start_time\": \"11:00\",\n        \"end_time\": \"12:00\"\n    },\n    \"client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n    \"can_rectify\": true,\n    \"snapshot_id\": \"1234\",\n    \"head_form_response_id\": 5,\n    \"current_form_response_id\": 5,\n    \"editable_form_responses_ids\": [\n        5\n    ],\n    \"fees_and_charges\": {\n        \"applicable\": true,\n        \"details\": [\n            702,\n            703\n        ]\n    },\n    \"form_responses\": [\n        {\n            \"id\": 5,\n            \"form_id\": 1,\n            \"form_code\": \"form_1\",\n            \"external_id\": \"654432\",\n            \"workflow_response_id\": 3,\n            \"editable\": true,\n            \"observations\": null,\n            \"input_values\": {\n                \"CALLE_1\": \"xxxx\",\n                \"CALLE_2\": \"xxxx\",\n                \"CALLE_3\": \"xxxx\",\n                \"CALLE_4\": \"xxxx\",\n                \"TIPO_DE_USO\": \"xxxxx\",\n                \"OBSERVACIONES\": \"xxxxxx\",\n                \"TIPO_DE_PLANO\": \"triangular\",\n                \"CANTIDAD_TOMAS\": \"5\",\n                \"NUM_VECINO_DER\": \"12\",\n                \"NUM_VECINO_IZQ\": \"345\",\n                \"DISTANCIA_COTA_A\": \"70\",\n                \"DISTANCIA_COTA_B\": \"50\",\n                \"CANTIDAD_INSTALACIONES\": \"3\"\n            }\n        }\n    ]\n}"}],"_postman_id":"ace3c75f-213e-41e6-a54f-d320ddb11d21"},{"name":"Create","id":"52c47101-4eb7-4a31-ae49-6bf089f2e310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 1, \n\t\"project_response_id\": 1\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses","urlObject":{"path":["api","v1","workflow_responses"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"35af548b-2277-4bbc-a153-bf7692c29d58","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 1,\n\t\"project_response_id\": 1\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"599bf76d-b64e-462f-bf8c-ead5c2b72b94\",\n    \"url\": \"http://localhost:3000/async_request/jobs/599bf76d-b64e-462f-bf8c-ead5c2b72b94\"\n}"},{"id":"57dbbb21-0125-4b04-8d0e-a368e2a69fa8","name":"Create - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 1,\n\t\"input_values\": {\n\t\t\"workflow_type\": \"Nuevo\",\n    \t\"owner_name\": \"Juan Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"23567897\",\n    \t\"owner_address\": \"Juncal 984\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"external_id\": \"123456\",\n    \"message\": \"Trámite generado con éxito bajo el nº 123456.\"\n}"}],"_postman_id":"52c47101-4eb7-4a31-ae49-6bf089f2e310"},{"name":"Destroy","id":"2d107776-c92f-4a03-bdd9-c45fd3967ac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}","urlObject":{"path":["api","v1","workflow_responses","{{workflow_id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"a9f23f13-4df4-44ca-a170-daa55abe157d","name":"Destroy - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"http://localhost:3000/async_request/jobs/599bf76d-b64e-462f-bf8c-ead5c2b72b94"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"Trámite cancelado correctamente.\"\n}"},{"id":"fac0eaec-b75a-46ef-bf91-fa7997865fd5","name":"Destroy - 202 Accepted","originalRequest":{"method":"DELETE","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base-api-url}}/api/v1/workflow_responses/1234"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"599bf76d-b64e-462f-bf8c-ead5c2b72b94\",\n    \"url\": \"http://localhost:3000/async_request/jobs/599bf76d-b64e-462f-bf8c-ead5c2b72b94\"\n}"}],"_postman_id":"2d107776-c92f-4a03-bdd9-c45fd3967ac9"},{"name":"Index","id":"d542bec5-dc8e-4568-9e21-f5d2c071e626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses?owner_city=Bahía%20Blanca&status=pending&page=1&page_size=10&order_by=status&order_sort=desc&status_group=completed&statuses[]=pending&statuses[]=sent&workflow_id=1&project_number=546800001&home_improvement_project=true&owner_name=Juan%20Perez&owner_document_type=dni&owner_document_number=20123456&owner_address=Juncal 984&pipes=true&service=false","urlObject":{"path":["api","v1","workflow_responses"],"host":["{{base-api-url}}"],"query":[{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"owner_city","value":"Bahía%20Blanca"},{"description":{"content":"<p>optional. Possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed, approved_under_review, approved_with_deadline_under_review</p>\n","type":"text/plain"},"key":"status","value":"pending"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>optional. Possible values: status, owner_address, owner_city, owner_document_type, owner_document_number, project_number, started_at, owner_name, external_id, pipes, service</p>\n","type":"text/plain"},"key":"order_by","value":"status"},{"description":{"content":"<p>optional. Possible values: in_progress, completed</p>\n","type":"text/plain"},"key":"order_sort","value":"desc"},{"description":{"content":"<p>optional. Possible values: asc, desc</p>\n","type":"text/plain"},"key":"status_group","value":"completed"},{"description":{"content":"<p>optional. Array with possible values: pending, sent, under_review, observed, approved_with_net_without_supply, approved_with_net_and_supply, approved_without_net_with_supply, approved_without_net_and_supply, in_progress, completed, approved_under_review, approved_with_deadline_under_review</p>\n","type":"text/plain"},"key":"statuses[]","value":"pending"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"statuses[]","value":"sent"},{"description":{"content":"<p>optional.</p>\n","type":"text/plain"},"key":"workflow_id","value":"1"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"project_number","value":"546800001"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"home_improvement_project","value":"true"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_name","value":"Juan%20Perez"},{"description":{"content":"<p>optional. Possible values: dni</p>\n","type":"text/plain"},"key":"owner_document_type","value":"dni"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_document_number","value":"20123456"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"owner_address","value":"Juncal 984"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"pipes","value":"true"},{"description":{"content":"<p>optional. Possible values: true, false</p>\n","type":"text/plain"},"key":"service","value":"false"}],"variable":[]}},"response":[{"id":"8b00a38e-cd38-4f15-8182-6872f9fe0dbf","name":"Index - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Utility-ID","type":"text","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/workflow_responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": \"100\",\n    \"data\": [\n        {\n            \"project_response_id\": 1,\n            \"workflow_id\": 1,\n            \"external_id\": 123456,\n            \"status\": \"pending\",\n            \"status_label\": \"Trámite pendiente de enviar\",\n            \"incomplete\": true,\n            \"started_at\": \"2019-03-29T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"claimable\": false,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"discharge_comment\": \"Pedido de revisión de trámite\",\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": \"Martin Gonzalez\",\n            \"visit_information\": null,\n            \"fees_and_charges\": {\n                \"applicable\": true,\n                \"details\": [\n                    702,\n                    703\n                ]\n            },\n            \"client_approval_at\": \"2019-03-30T14:10:55.000-03:00\",\n            \"id\": 1,\n            \"workflow_name\": \"Formulario 3.4\"\n        },\n        {\n            \"project_response_id\": 1,\n            \"workflow_id\": 1,\n            \"external_id\": 563456,\n            \"status\": \"observed\",\n            \"status_label\": \"Trámite observado\",\n            \"incomplete\": false,\n            \"started_at\": \"2019-03-20T14:20:55.000-03:00\",\n            \"cancellable\": true,\n            \"editable\": true,\n            \"observable\": true,\n            \"approvable\": true,\n            \"claimable\": false,\n            \"client_approvable\": false,\n            \"client_observable\": false,\n            \"client_rejectable\": false,\n            \"observations\": null,\n            \"discharge_comment\": null,\n            \"rejection_reasons\": [\n                {\n                    \"reason\": \"Instalación rechazada por X\",\n                    \"comments\": \"Comentario\"\n                }\n            ],\n            \"last_backoffice_reviewer_name\": \"Luis Oroquieta\",\n            \"inspector_name\": \"Martin Gonzalez\",\n            \"visit_information\": null,\n            \"fees_and_charges\": {\n                \"applicable\": true,\n                \"details\": [\n                    702,\n                    703\n                ]\n            },\n            \"client_approval_at\": null,\n            \"id\": 2,\n            \"workflow_name\": \"Formulario 3.4\"\n        }\n    ]\n}"},{"id":"99180880-d66b-4d07-9fe9-3d3ad03d66d9","name":"Index - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"a24b59ba-789c-47a8-a18d-289b85ebfe0a\",\n    \"url\": \"http://localhost:3000/async_request/jobs/a24b59ba-789c-47a8-a18d-289b85ebfe0a\"\n}"}],"_postman_id":"d542bec5-dc8e-4568-9e21-f5d2c071e626"},{"name":"Clone","id":"db15ca14-257d-4187-b6e1-bd5094c7de29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_response_id}}/clone","description":"<p>Returns the parameters to clone a workflow response. Does not create the workflow response</p>\n","urlObject":{"path":["api","v1","workflow_responses","{{workflow_response_id}}","clone"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"a5b2b92f-a6d4-4f6b-a1fa-f008bd757fb7","name":"Clone - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_resonse_id}}/clone"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6ade6d22-e15f-4821-9a1b-c036b2ce6465"},{"key":"X-Runtime","value":"0.009991"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null},{"id":"c1339cf2-3908-4dd8-8185-d76b988552a7","name":"Clone - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_response_id}}/clone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"ab954a85ffd2ac22d9f74cb99872b53d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"7a9af8af-c459-4fb7-a613-6de39453dc59"},{"key":"X-Runtime","value":"0.327087"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"input_values\": {\n        \"owner_city\": \"Bahía Blanca\",\n        \"owner_name\": \"Juan Perez\",\n        \"project_type\": \"A definir valores posibles\",\n        \"owner_address\": \"Juncal 984\",\n        \"workflow_type\": \"Nuevo\",\n        \"project_number\": \"546800001\",\n        \"owner_document_type\": \"DNI\",\n        \"owner_document_number\": \"23567897\",\n        \"home_improvement_project\": false\n    },\n    \"workflow_responses\": [\n        {\n            \"workflow_id\": 1,\n            \"form_responses\": [\n                {\n                    \"id\": 5,\n                    \"form_id\": 1,\n                    \"input_values\": {\n                        \"CALLE_1\": \"xxxx\",\n                        \"CALLE_2\": \"xxxx\",\n                        \"CALLE_3\": \"xxxx\",\n                        \"CALLE_4\": \"xxxx\",\n                        \"TIPO_DE_USO\": \"xxxxx\",\n                        \"OBSERVACIONES\": \"xxxxxx\",\n                        \"TIPO_DE_PLANO\": \"triangular\",\n                        \"CANTIDAD_TOMAS\": \"5\",\n                        \"NUM_VECINO_DER\": \"12\",\n                        \"NUM_VECINO_IZQ\": \"345\",\n                        \"DISTANCIA_COTA_A\": \"70\",\n                        \"DISTANCIA_COTA_B\": \"50\",\n                        \"CANTIDAD_INSTALACIONES\": \"3\"\n                    }\n                },\n                {\n                    \"id\": 1,\n                    \"form_id\": 4,\n                    \"input_values\": {\n                        \"CALLE_1\": \"xxxx\",\n                        \"CALLE_2\": \"xxxx\",\n                        \"CALLE_3\": \"xxxx\",\n                        \"CALLE_4\": \"xxxx\",\n                        \"TIPO_DE_USO\": \"xxxxx\",\n                        \"OBSERVACIONES\": \"xxxxxx\",\n                        \"TIPO_DE_PLANO\": \"triangular\",\n                        \"CANTIDAD_TOMAS\": \"5\",\n                        \"NUM_VECINO_DER\": \"12\",\n                        \"NUM_VECINO_IZQ\": \"345\",\n                        \"DISTANCIA_COTA_A\": \"70\",\n                        \"DISTANCIA_COTA_B\": \"50\",\n                        \"CANTIDAD_INSTALACIONES\": \"3\"\n                    }\n                },\n                {\n                    \"id\": 2,\n                    \"form_id\": 5,\n                    \"input_values\": {}\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"db15ca14-257d-4187-b6e1-bd5094c7de29"},{"name":"History","id":"e2bae44b-534d-418b-bff9-c7765422e04c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/history","urlObject":{"path":["api","v1","workflow_responses","{{workflow_id}}","history"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"93ec9299-099f-413e-b4b7-f06aec457cfe","name":"History - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"order\": 1,\n        \"updated_at\": \"2019-03-29T14:20:55.000-03:00\",\n        \"status_label\": \"Borrador\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null\n    },\n    {\n        \"order\": 2,\n        \"updated_at\": \"2019-03-30T14:20:55.000-03:00\",\n        \"status_label\": \"Enviado\",\n        \"observations\": null,\n        \"user_name\": \"Irma Iuquich\",\n        \"backoffice_user_name\": null\n    },\n    {\n        \"order\": 3,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"En Revision\",\n        \"observations\": null,\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\"\n    },\n    {\n        \"order\": 4,\n        \"updated_at\": \"2019-04-02T14:20:55.000-03:00\",\n        \"status_label\": \"Observado\",\n        \"observations\": \"Faltó definir altura de la calle\",\n        \"user_name\": null,\n        \"backoffice_user_name\": \"Juan Perez\"\n    }\n]"},{"id":"aac111c1-ae74-4a01-8c32-6078e9449594","name":"History - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/history"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"432a19d6-cbca-4569-9ea8-594c6ef44aef\",\n    \"url\": \"http://localhost:3000/async_request/jobs/432a19d6-cbca-4569-9ea8-594c6ef44aef\"\n}"}],"_postman_id":"e2bae44b-534d-418b-bff9-c7765422e04c"},{"name":"Update","id":"abf6c42b-4353-48d0-8c42-8ea06e338c05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"status\": \"client_approved\"\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/1","urlObject":{"path":["api","v1","workflow_responses","1"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"157570b8-2f91-4a82-bc20-d0f92c3f17ae","name":"Update - 202 Accepted","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","type":"text","value":"{{utility-id}}"},{"key":"Authorization","type":"text","value":"{{user-access-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"observations\": \"Caso cerrado.\"\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"e377f21f-2570-4456-b47e-4b3accb0d1a0\",\n    \"url\": \"http://localhost:3000/async_request/jobs/e377f21f-2570-4456-b47e-4b3accb0d1a0\"\n}"},{"id":"de603e71-0c4b-4a48-bc99-6872f0aa7bf8","name":"Update - 200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite actualizado correctamente.\"\n}"}],"_postman_id":"abf6c42b-4353-48d0-8c42-8ea06e338c05"},{"name":"Validation","id":"cf3cfa90-a62d-4efd-bb54-7984accd263f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 1,\n\t\"workflow_response_id\": 1,\n\t\"project_response_id\": 1\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/validation","description":"<p>Validate workflow response params</p>\n","urlObject":{"path":["api","v1","workflow_responses","validation"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"b0d7cbc1-503d-42d5-b66f-30539ae0ed9d","name":"Validation - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 1,\n\t\"workflow_response_id\": 1,\n\t\"project_response_id\": 1\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/validation"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b470bc90-4252-4f1d-884a-0ad8977bf77f"},{"key":"X-Runtime","value":"0.068347"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"52c72421-5abe-4b40-99c3-55ee7a93e867\",\n    \"url\": \"http://localhost:3000/async_request/jobs/52c72421-5abe-4b40-99c3-55ee7a93e867\"\n}"},{"id":"bdd6e5df-2f19-494f-9858-aed6acfb248d","name":"Validation - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 1,\n\t\"workflow_response_id\": 1,\n\t\"project_response_id\": 1\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/validation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b470bc90-4252-4f1d-884a-0ad8977bf77f"},{"key":"X-Runtime","value":"0.068347"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite válido.\"\n}"},{"id":"e55e64e2-1d4b-45d8-a1b3-cc5e59169d73","name":"Validation - 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"workflow_id\": 12,\n\t\"workflow_response_id\": 1,\n\t\"input_values\": {\n\t\t\"workflow_type\": \"Nuevo\",\n    \t\"owner_name\": \"Juan Perez\",\n    \t\"owner_document_type\": \"DNI\",\n    \t\"owner_document_number\": \"23567897\",\n    \t\"owner_address\": \"Juncal 984\",\n    \t\"owner_city\": \"Bahía Blanca\",\n    \t\"home_improvement_project\": false\n\t}\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/validation"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ac6909d7-bedb-47e8-a1af-6b9116016389"},{"key":"X-Runtime","value":"0.016637"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cf3cfa90-a62d-4efd-bb54-7984accd263f"},{"name":"Rectification","id":"bf7b8b9d-81e5-41b7-aa06-5440c986a869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/1/rectification","urlObject":{"path":["api","v1","workflow_responses","1","rectification"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"68116cc4-547e-4f42-8c01-d75116ab60d3","name":"Rectification - 200 OK","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/async_request/jobs/c9eac0ac-e976-458b-80ce-21eb247cfe71"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e2118115-d622-4a33-881a-89d8feb437cc"},{"key":"X-Runtime","value":"0.155027"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"workflow_response_id\": 3\n}"},{"id":"c6957368-c45b-4b37-96c0-dbbdd8f5d839","name":"Rectification - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/1/rectification"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e2118115-d622-4a33-881a-89d8feb437cc"},{"key":"X-Runtime","value":"0.155027"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"c9eac0ac-e976-458b-80ce-21eb247cfe71\",\n    \"url\": \"http://localhost:3000/async_request/jobs/c9eac0ac-e976-458b-80ce-21eb247cfe71\"\n}"},{"id":"c99b025e-2748-4ea0-9eb4-46372bbc64c2","name":"Rectification 404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/10/rectification"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7fe29475-81a8-4480-a650-2ab4f4c45cd6"},{"key":"X-Runtime","value":"0.022427"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bf7b8b9d-81e5-41b7-aa06-5440c986a869"}],"id":"7cdc9a50-0945-4d66-9954-837cd49528b5","description":"<p>Statuses: <code>pending</code>, <code>sent</code>, <code>under_review</code>, <code>observed</code>, <code>rejected</code>, <code>approved</code>, <code>answered</code>, <code>cancelled</code>, <code>visa_without_inspection</code>, <code>client_approved</code>, <code>approved_with_deadline</code>, <code>client_observed</code>, <code>visited</code>, <code>assigned</code>.</p>\n","event":[{"listen":"prerequest","script":{"id":"c0365133-405d-4bfe-8cc6-ba060006cdf6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b4aa5b38-1c71-48ab-b4f1-77ea9de6bc64","type":"text/javascript","exec":[""]}}],"_postman_id":"7cdc9a50-0945-4d66-9954-837cd49528b5"},{"name":"Form Responses","item":[{"name":"Create","id":"cb204a6a-5bac-48d4-8efd-a268a64309c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"form_id\": 1,\n\t\"input_values\": {\n\t  \"CANTIDAD_INSTALACIONES\": \"3\",\n\t   \"CANTIDAD_TOMAS\": \"5\",\n\t   \"TIPO_DE_USO\": \"xxxxx\",\n\t   \"TIPO_DE_PLANO\": \"triangular\",\n\t   \"CALLE_1\": \"xxxx\",\n\t   \"CALLE_2\": \"xxxx\",\n       \"CALLE_3\": \"xxxx\",\n\t   \"CALLE_4\": \"xxxx\",\n\t   \"DISTANCIA_COTA_A\": \"70\",\n\t   \"DISTANCIA_COTA_B\": \"50\",\n\t   \"NUM_VECINO_IZQ\": \"345\",\n\t   \"NUM_VECINO_DER\": \"12\",\n\t   \"OBSERVACIONES\": \"xxxxxx\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/1/form_responses","description":"<p>Create a form response for a particular workflow response.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user-access-token}}"}]},"isInherited":true,"source":{"_postman_id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","name":"Form Responses","type":"folder"}},"urlObject":{"path":["api","v1","workflow_responses","1","form_responses"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"0b668d57-caf0-4a7d-8a87-c5590ca41746","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"form_id\": 1,\n\t\"input_values\": {\n\t  \"CANTIDAD_INSTALACIONES\": \"3\",\n\t   \"CANTIDAD_TOMAS\": \"5\",\n\t   \"TIPO_DE_USO\": \"xxxxx\",\n\t   \"TIPO_DE_PLANO\": \"triangular\",\n\t   \"CALLE_1\": \"xxxx\",\n\t   \"CALLE_2\": \"xxxx\",\n       \"CALLE_3\": \"xxxx\",\n\t   \"CALLE_4\": \"xxxx\",\n\t   \"DISTANCIA_COTA_A\": \"70\",\n\t   \"DISTANCIA_COTA_B\": \"50\",\n\t   \"NUM_VECINO_IZQ\": \"345\",\n\t   \"NUM_VECINO_DER\": \"12\",\n\t   \"OBSERVACIONES\": \"xxxxxx\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/1/form_responses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"98b993f5-5ebe-48cb-81cd-5eb122c18364"},{"key":"X-Runtime","value":"0.016624"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"c8dd7d5a-a176-42b7-8048-8696ee75faba\",\n    \"url\": \"http://localhost:3000/async_request/jobs/c8dd7d5a-a176-42b7-8048-8696ee75faba\"\n}"},{"id":"747378b1-d3b3-4a16-a6e6-935e266a6bc4","name":"Create - 422 Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"form_id\": 4,\n\t\"input_values\": {\n\t  \"CANTIDAD_INSTALACIONES\": \"3\",\n\t   \"CANTIDAD_TOMAS\": \"5\",\n\t   \"TIPO_DE_USO\": \"xxxxx\",\n\t   \"TIPO_DE_PLANO\": \"triangular\",\n\t   \"CALLE_1\": \"xxxx\",\n\t   \"CALLE_2\": \"xxxx\",\n       \"CALLE_3\": \"xxxx\",\n\t   \"CALLE_4\": \"xxxx\",\n\t   \"DISTANCIA_COTA_A\": \"70\",\n\t   \"DISTANCIA_COTA_B\": \"50\",\n\t   \"NUM_VECINO_IZQ\": \"345\",\n\t   \"NUM_VECINO_DER\": \"12\",\n\t   \"OBSERVACIONES\": \"xxxxxx\"\n\t}\n}"},"url":"{{base-api-url}}/api/v1/workflow_responses/1/form_responses"},"code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b916f950-b538-4c80-a008-f48a491266bd"},{"key":"X-Runtime","value":"0.021851"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 422,\n            \"code\": \"form_response_error\",\n            \"message\": \"(form) debe existir en el workflow asociado\",\n            \"meta\": null\n        }\n    ]\n}"},{"id":"a165b203-4cf1-4e69-9eb2-7ed6ea4e71a8","name":"Async Request Response","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","disabled":true},{"key":"Authorization","value":"{{backoffice-user-access-token}}","type":"text","disabled":true}],"url":"{{base-api-url}}/async_request/jobs/903d2871-f104-4399-9990-8c614601dd85"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"8a50cd44-a1b1-4f61-b638-222e224682f2"},{"key":"X-Runtime","value":"0.027466"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Trámite actualizado correctamente.\",\n    \"id\": 5\n}"}],"_postman_id":"cb204a6a-5bac-48d4-8efd-a268a64309c7"},{"name":"Show","id":"23c6b4ef-6e2c-4ed9-94e8-7bbf7d3766df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/1/form_responses/1","description":"<p>Retrieve specific form response from Utiity</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user-access-token}}"}]},"isInherited":true,"source":{"_postman_id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","name":"Form Responses","type":"folder"}},"urlObject":{"path":["api","v1","workflow_responses","1","form_responses","1"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"5c325f48-e4ba-4d50-ba49-c7aef79f56fa","name":"Show","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{base-api-url}}/api/v1/workflow_responses/1/form_responses/1"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"40888a7d-dd56-4679-996c-d4231745891c"},{"key":"X-Runtime","value":"0.301468"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"927b0775-ff89-496a-ab16-350f57e2fe37\",\n    \"url\": \"http://localhost:3000/async_request/jobs/927b0775-ff89-496a-ab16-350f57e2fe37\"\n}"},{"id":"6fdc160c-ab8a-4b48-9082-cef1e284377c","name":"Async Request Response","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","disabled":true},{"key":"Content-Type","value":"application/json","disabled":true}],"url":"{{base-api-url}}/async_request/jobs/927b0775-ff89-496a-ab16-350f57e2fe37"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"40888a7d-dd56-4679-996c-d4231745891c"},{"key":"X-Runtime","value":"0.301468"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"form_id\": 1,\n    \"form_code\": \"form_1\",\n    \"external_id\": \"654432\",\n    \"workflow_response_id\": 1,\n    \"editable\": true,\n    \"observations\": null,\n    \"input_values\": {\n        \"CANTIDAD_INSTALACIONES\": \"3\",\n        \"CANTIDAD_TOMAS\": \"5\",\n        \"TIPO_DE_USO\": \"xxxxx\",\n        \"TIPO_DE_PLANO\": \"triangular\",\n        \"CALLE_1\": \"xxxx\",\n        \"CALLE_2\": \"xxxx\",\n        \"CALLE_3\": \"xxxx\",\n        \"CALLE_4\": \"xxxx\",\n        \"DISTANCIA_COTA_A\": \"70\",\n        \"DISTANCIA_COTA_B\": \"50\",\n        \"NUM_VECINO_IZQ\": \"345\",\n        \"NUM_VECINO_DER\": \"12\",\n        \"OBSERVACIONES\": \"xxxxxx\"\n    }\n}"}],"_postman_id":"23c6b4ef-6e2c-4ed9-94e8-7bbf7d3766df"},{"name":"Update","id":"b8668592-058b-48c7-9bee-f3492fe96a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user-access-token}}"}]},"isInherited":true,"source":{"_postman_id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","name":"Form Responses","type":"folder"}},"urlObject":{"path":["api","v1","workflow_responses","{{workflow_id}}","form_responses","{{form-response-id}}"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"2807c7da-dfee-458f-bfe6-ad8a0aaf70c0","name":"Update - 200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Paso de trámite actualizado correctamente.\"\n}"},{"id":"a0ab43e3-7ce5-4993-ace9-a0a98d8dad1a","name":"Update - 202 Accepted","originalRequest":{"method":"PATCH","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"observations\": null,\n  \"input_values\": {\n    \"CANTIDAD_INSTALACIONES\": \"3\",\n    \"CANTIDAD_TOMAS\": \"5\",\n    \"TIPO_DE_USO\": \"xxxxx\",\n    \"TIPO_DE_PLANO\": \"triangular\",\n    \"CALLE_1\": \"xxxx\",\n    \"CALLE_2\": \"xxxx\",\n    \"CALLE_3\": \"xxxx\",\n    \"CALLE_4\": \"xxxx\",\n    \"DISTANCIA_COTA_A\": \"70\",\n    \"DISTANCIA_COTA_B\": \"50\",\n    \"NUM_VECINO_IZQ\": \"345\",\n    \"NUM_VECINO_DER\": \"12\",\n    \"OBSERVACIONES\": \"xxxxxx\"\n  }\n}\n\n"},"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/form_responses/{{form-response-id}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"0a1dc31d-a599-44b6-a36c-8346496e35b4\",\n    \"url\": \"http://localhost:3000/async_request/jobs/0a1dc31d-a599-44b6-a36c-8346496e35b4\"\n}"}],"_postman_id":"b8668592-058b-48c7-9bee-f3492fe96a61"},{"name":"Upload URL","id":"0e3ab204-770b-488f-abd2-264b1c3edbbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/workflow_responses/{{workflow_id}}/form_responses/upload_url","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user-access-token}}"}]},"isInherited":true,"source":{"_postman_id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","name":"Form Responses","type":"folder"}},"urlObject":{"path":["api","v1","workflow_responses","{{workflow_id}}","form_responses","upload_url"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"db466bde-b29f-4fb1-9d63-b358717e1a58","name":"Upload URL - OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/api/v1/workflow_responses/:workflow_id/form_responses/upload_url","host":["{{base-api-url}}"],"path":["api","v1","workflow_responses",":workflow_id","form_responses","upload_url"],"variable":[{"key":"workflow_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://utility-form-images.s3.us-west-2.amazonaws.com/0019/ae2e4dbe2b5637efd74795b650cbce6e9932f626?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJE6D5DHDG6KK4R6Q%2F20190723%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20190723T150451Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&x-amz-acl=public-read&X-Amz-Signature=4f54615bfd338030bfd32176da4265e7b3a2b3455cb5ac9073ddd6b13ab2f8c9\",\n    \"get_url\": \"https://utility-form-images.s3.us-west-2.amazonaws.com/0019/ae2e4dbe2b5637efd74795b650cbce6e9932f626?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJE6D5DHDG6KK4R6Q%2F20190723%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20190723T150451Z&X-Amz-Expires=43200&X-Amz-SignedHeaders=host&X-Amz-Signature=9487e482103eae2c6b312e6e626cccbf97f5fbe52426269c804d6fe8085e57aa\"\n}"}],"_postman_id":"0e3ab204-770b-488f-abd2-264b1c3edbbb"}],"id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user-access-token}}"}]},"isInherited":false},"_postman_id":"20456d06-3d53-4755-9f2f-75cdbdd995bd","description":""},{"name":"Payments","item":[{"name":"Create","id":"992a0105-26fe-49be-88e2-d1fa2d9ace94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"dsalfl3-234dfsjljnasdj\",\n    \"total_amount\": \"1500.3\",\n    \"bin\": \"423821\",\n    \"payment_method\": \"visa\",\n    \"last_four_digits\": \"8936\"\n}"},"url":"{{base-api-url}}/api/v1/payments","urlObject":{"path":["api","v1","payments"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"657e772a-d95a-4323-900e-b6877677a52f","name":"Create 200","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}","description":"optional"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"1234asda\",\n    \"total_amount\": \"12345\",\n    \"bin\": \"bin\",\n    \"payment_method\": \"payment_method\",\n    \"last_four_digits\": \"1234\"\n}"},"url":"{{base-api-url}}/api/v1/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a074d00d-dc64-4ec2-b394-be686b8e8139"},{"key":"X-Runtime","value":"0.073183"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"Message\": \"El pago fue realizado con éxito. La información puede tardar en reflejarse hasta 24hs.\"\n}"},{"id":"666156c7-39a1-42ad-aaee-40657dbff6bb","name":"Create - 202 Accepted","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{UTILITY_ID}}"},{"key":"Authorization","value":"{{API_TOKEN}}","description":"optional","disabled":true},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"bills\": [{\n    \"external_id\": \"11223344\",\n    \"client_number\": \"12345678\",\n    \"amount\": \"1234\"\n  }],\n  \"token\": \"1234asda\",\n  \"email\": \"test@example.com\",\n  \"total_amount\": \"12345\",\n  \"bin\": \"bin\",\n  \"payment_method\": \"payment_method\",\n  \"concept\": \"concept\",\n  \"last_four_digits\": \"1234\",\n  \"client_number\": \"123456\"\n}"},"url":"{{URL}}/api/v1/payments"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 18:24:07 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"54fafd77-4552-42d9-a9ec-bcc1e2183df7","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.025069","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\"response\":\"a908c817-4e7e-486d-b6db-e9121031670c\",\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/a908c817-4e7e-486d-b6db-e9121031670c\"}"},{"id":"ed2f0a40-247a-41b2-84d0-72d39776d4a0","name":"Create 202","originalRequest":{"method":"POST","header":[{"key":"Utility-ID","value":"{{utility-id}}"},{"key":"Authorization","value":"{{user-access-token}}","description":"optional"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"1234asda\",\n    \"total_amount\": \"12345\",\n    \"bin\": \"bin\",\n    \"payment_method\": \"payment_method\",\n    \"last_four_digits\": \"1234\"\n}"},"url":"{{base-api-url}}/api/v1/payments"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a074d00d-dc64-4ec2-b394-be686b8e8139"},{"key":"X-Runtime","value":"0.073183"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"fdf99a16-e06e-40d6-9593-ddd3e8f641ef\",\n    \"url\": \"http://localhost:3000/async_request/jobs/fdf99a16-e06e-40d6-9593-ddd3e8f641ef\"\n}"}],"_postman_id":"992a0105-26fe-49be-88e2-d1fa2d9ace94"}],"id":"35a7b79c-6610-4082-9685-1e8941ab1ade","_postman_id":"35a7b79c-6610-4082-9685-1e8941ab1ade","description":""},{"name":"Geographic Information","item":[{"name":"Buildings","id":"2270357e-baf8-448f-a66b-db85124e71c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/buildings","description":"<p>Buildings naming info.</p>\n","urlObject":{"path":["api","v1","geographic_information","buildings"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"59f7f9af-f008-4de0-a88b-d9bc80299086","name":"Buildings - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/buildings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f881b119-6f04-43d9-accc-bb975faa4883"},{"key":"X-Runtime","value":"0.095810"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"floors\": [\n        \"PB\",\n        \"1\",\n        \"2\"\n    ],\n    \"apartments\": [\n        \"1\",\n        \"2\",\n        \"A\",\n        \"B\"\n    ],\n    \"towers\": [\n        \"A\",\n        \"B\",\n        \"C\"\n    ]\n}"},{"id":"ccf7285f-2bfb-4192-8d52-d783947a3019","name":"Buildings - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/buildings"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f881b119-6f04-43d9-accc-bb975faa4883"},{"key":"X-Runtime","value":"0.095810"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"7073b460-8b85-4ff8-b317-e54c5c3f0c05\",\n    \"url\": \"http://localhost:3000/async_request/jobs/7073b460-8b85-4ff8-b317-e54c5c3f0c05\"\n}"}],"_postman_id":"2270357e-baf8-448f-a66b-db85124e71c2"},{"name":"Streets","id":"92fb1940-161f-49b1-a66f-36c57cab1309","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities/{{city_id}}/streets","description":"<p>Streets naming info at given city.</p>\n","urlObject":{"path":["api","v1","geographic_information","cities","{{city_id}}","streets"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"3bbc0d16-0572-44d8-8adb-163ece98148c","name":"Streets - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities/001/streets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"34bfe59c-832b-4a39-a3d7-c6d27dc7cdc3"},{"key":"X-Runtime","value":"0.015336"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"city_id\": \"001\",\n        \"street_type\": \"Avenida\",\n        \"street\": \"Olazabal\",\n        \"street_number_from\": 2000,\n        \"street_number_to\": 9000\n    },\n    {\n        \"city_id\": \"001\",\n        \"street_type\": \"Calle\",\n        \"street\": \"Conde\",\n        \"street_number_from\": 0,\n        \"street_number_to\": 1000\n    }\n]"},{"id":"ff1a136c-04f4-4434-a697-03d9097b6b3a","name":"Streets - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities/001/streets"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"34bfe59c-832b-4a39-a3d7-c6d27dc7cdc3"},{"key":"X-Runtime","value":"0.015336"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"c139d10b-1fdf-490b-b5dd-37d35ac2455b\",\n    \"url\": \"http://localhost:3000/async_request/jobs/c139d10b-1fdf-490b-b5dd-37d35ac2455b\"\n}"}],"_postman_id":"92fb1940-161f-49b1-a66f-36c57cab1309"},{"name":"Cities","id":"6ed5890e-5a6a-46ee-a34c-5c3ff5f11fb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities","description":"<p>List all cities registered at utility</p>\n","urlObject":{"path":["api","v1","geographic_information","cities"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"53380391-3129-4d6a-b5f2-c2366e9145fc","name":"Cities - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7cb48a4a-1091-40b4-8b3d-90e2609e4fec"},{"key":"X-Runtime","value":"0.056886"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"da0caacf-5406-46d4-a966-fe827a57bbc2\",\n    \"url\": \"http://localhost:3000/async_request/jobs/da0caacf-5406-46d4-a966-fe827a57bbc2\"\n}"},{"id":"d14127b6-4a32-496c-b643-e7a83497b300","name":"Cities - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7cb48a4a-1091-40b4-8b3d-90e2609e4fec"},{"key":"X-Runtime","value":"0.056886"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"La Plata\",\n        \"value\": 1,\n        \"order\": 1\n    },\n    {\n        \"name\": \"Ensenada\",\n        \"value\": 2,\n        \"order\": 2\n    }\n]"}],"_postman_id":"6ed5890e-5a6a-46ee-a34c-5c3ff5f11fb0"},{"name":"Planchette","id":"46b93343-5f9f-498d-8118-4f4b568a9cbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":"{{base-api-url}}/api/v1/geographic_information/cities/{{city_id}}/planchette?street=Belgrano&street_number=123","description":"<p>Rertieve planchette info</p>\n","urlObject":{"path":["api","v1","geographic_information","cities","{{city_id}}","planchette"],"host":["{{base-api-url}}"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}],"variable":[]}},"response":[{"id":"30232340-c129-4e1a-a0b9-ff290111b471","name":"Planchette  - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/api/v1/geographic_information/cities/001/planchette?street=Belgrano&street_number=123","host":["{{base-api-url}}"],"path":["api","v1","geographic_information","cities","001","planchette"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b6ccbef1-5f0e-4fcc-8412-7e8bc9a5e2e8"},{"key":"X-Runtime","value":"0.048713"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"planchette\": 40,\n        \"annex\": \"B\",\n        \"issuer\": 70002,\n        \"project\": \"6119/98\",\n        \"street_number_from\": 100,\n        \"street_number_to\": 200,\n        \"sidewalk\": \"P\"\n    },\n    {\n        \"planchette\": 20,\n        \"annex\": \"\",\n        \"issuer\": 70002,\n        \"project\": \"MC LPL AÑO93\",\n        \"street_number_from\": 300,\n        \"street_number_to\": 400,\n        \"sidewalk\": \"I\"\n    }\n]"},{"id":"6a784ba0-8dfc-423c-975b-fd43fafab3ca","name":"Planchette - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"},{"key":"Authorization","value":"{{user-access-token}}","type":"text"}],"url":{"raw":"{{base-api-url}}/api/v1/geographic_information/cities/001/planchette?street=Belgrano&street_number=123","host":["{{base-api-url}}"],"path":["api","v1","geographic_information","cities","001","planchette"],"query":[{"key":"street","value":"Belgrano"},{"key":"street_number","value":"123"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"720c9bcd-4f29-4b9b-9667-5d9153fa16f4"},{"key":"X-Runtime","value":"0.049837"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"acfa828d-b8a1-48ae-909b-68a08fd13832\",\n    \"url\": \"http://localhost:3000/async_request/jobs/acfa828d-b8a1-48ae-909b-68a08fd13832\"\n}"}],"_postman_id":"46b93343-5f9f-498d-8118-4f4b568a9cbf"}],"id":"552174b4-7b90-492f-998e-612b45578041","description":"<p>Streets and Buildings naming info.</p>\n","_postman_id":"552174b4-7b90-492f-998e-612b45578041"},{"name":"File Downloads","item":[{"name":"Show","id":"c371864e-f652-4b9e-92a8-c4a51c19ddd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/file_downloads/2013","description":"<p>Download file by ID</p>\n","urlObject":{"path":["api","v1","file_downloads","2013"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"9ddc1cff-62aa-4c6d-8fec-cd176e9cead0","name":"Show - 404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/api/v1/file_downloads/2017a"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bc3988c1-546d-4cfd-b208-6ffbdd913bd3"},{"key":"X-Runtime","value":"1.360077"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 404,\n            \"code\": \"utility_error\",\n            \"message\": \"Algo salió mal. Por favor intente nuevamente más tarde.\",\n            \"meta\": null\n        }\n    ]\n}"}],"_postman_id":"c371864e-f652-4b9e-92a8-c4a51c19ddd8"}],"id":"a4f3719f-f413-4ef7-bf30-73ca21d5cb0a","_postman_id":"a4f3719f-f413-4ef7-bf30-73ca21d5cb0a","description":""},{"name":"Utilities","item":[{"name":"Configuration","id":"da9cad47-9ad1-4bdb-917e-5d4cc532a79c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/utilities/configuration","urlObject":{"path":["api","v1","utilities","configuration"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"6e7d954c-1dee-4948-8a0d-c5dd2b80f9c6","name":"Configuration - 202 Accepted","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}"}],"url":"{{base-api-url}}/api/v1/utilities/configuration"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"156","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Feb 2019 18:41:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.1","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"621e4807-4418-428b-afb7-d23f1de9644f","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.022369","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"utilitygo-api-dev.widergydev.com","path":"/","secure":false,"value":"D71F8393142602D1A29FEAE50BB7FB1EDCE7E70E4F813AE6EA3B6FD0066B94EE18F04E32BA185D0D6D219C21D6199C8B8EF15F81E96ECE49BDFC5F64CE9F3CCE4E053DEA55","key":"AWSELB"}],"responseTime":null,"body":"{\n\t\"job_id\":\"03ad4954-bbc9-4639-baa1-8d5b475bdb90\",\n\t\"url\":\"https://utilitygo-api-dev.widergydev.com/async_request/jobs/03ad4954-bbc9-4639-baa1-8d5b475bdb90\"\n}"},{"id":"ffbdb3b5-d13c-417e-a9ab-7bcebf94b700","name":"Configuration - 200 OK","originalRequest":{"method":"GET","header":[{"key":"Utility-ID","value":"{{utility-id}}","type":"text"}],"url":"{{base-api-url}}/async_request/jobs/03ad4954-bbc9-4639-baa1-8d5b475bdb90"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 06 Mar 2019 13:28:09 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Server","value":"nginx/1.12.1"},{"key":"Vary","value":"Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Request-Id","value":"d6c473b3-efed-445e-b4f7-99da4b1bd553"},{"key":"X-Runtime","value":"0.027815"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"156"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"da9cad47-9ad1-4bdb-917e-5d4cc532a79c"}],"id":"ae308af3-c5c9-4e38-8811-5d5250c8141c","_postman_id":"ae308af3-c5c9-4e38-8811-5d5250c8141c","description":""},{"name":"Utility API","item":[{"name":"Notifications","item":[{"name":"Create","id":"8524e861-b8f6-401c-845c-83a575361604","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"api-key","value":"4m7Pg2vudKhk7byWzysGz3MTJtysqs17"},{"key":"api-secret","value":"y1ye5KsEhJA4zLAoaQddkwV_pbJusYyZ5LeNynXWRhWUbfaDZsqxQEEpRxKezoaJ"}],"body":{"mode":"raw","raw":"{\n  \"destination\": \"home\",\n  \"target\": \"custom_user\",\n  \"message\": \"Notificación de Prueba 1\"\n  \"category\": \"user_license\"\n}"},"url":"{{base-api-url}}/utility_api/v1/notifications","urlObject":{"path":["utility_api","v1","notifications"],"host":["{{base-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"07dba968-e199-49ee-8b53-3793d29dd17b","name":"Create 202","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"api-key","value":"kHzHWgkgZrQB-kn2HQyTUG15VxfcsgsD"},{"key":"api-secret","value":"GXYsLssPYtF9fDVdNrF5XkTzu53Z9XM1RxeYPAWRyCSJBjMUyETDuy_sbRYYVRAw"}],"body":{"mode":"raw","raw":"{\n  \"destination\": \"home\",\n  \"target\": \"all\",\n  \"message\": \"Notificación de Prueba 1\"\n}"},"url":"{{base-api-url}}/utility_api/v1/notifications"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"30b0539d-7a4f-47c2-aeca-a3adc9d43038"},{"key":"X-Runtime","value":"0.087611"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": \"0bb5e7ae-77e6-400c-a038-52142007ed1f\",\n    \"url\": \"http://localhost:3000/async_request/jobs/0bb5e7ae-77e6-400c-a038-52142007ed1f\"\n}"},{"id":"e4f0f655-9d19-4f04-8ba7-dae2bfa2ce46","name":"Create 200","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"api-key","value":"kHzHWgkgZrQB-kn2HQyTUG15VxfcsgsD"},{"key":"api-secret","value":"GXYsLssPYtF9fDVdNrF5XkTzu53Z9XM1RxeYPAWRyCSJBjMUyETDuy_sbRYYVRAw"}],"body":{"mode":"raw","raw":"{\n  \"destination\": \"home\",\n  \"target\": \"all\",\n  \"message\": \"Notificación de Prueba 1\"\n}"},"url":"{{base-api-url}}/utility_api/v1/notifications"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"30b0539d-7a4f-47c2-aeca-a3adc9d43038"},{"key":"X-Runtime","value":"0.087611"},{"key":"Vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Notifications sent successfully\"\n}"}],"_postman_id":"8524e861-b8f6-401c-845c-83a575361604"}],"id":"a3a92824-c0ac-40cc-ba56-8bd82ac6dec1","_postman_id":"a3a92824-c0ac-40cc-ba56-8bd82ac6dec1","description":""}],"id":"55cbdb1a-29a0-4c94-8292-fbdb12cd9965","_postman_id":"55cbdb1a-29a0-4c94-8292-fbdb12cd9965","description":""}],"event":[{"listen":"prerequest","script":{"id":"4cad7346-ffe8-4136-af04-a52022aa8483","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1617f12f-fa44-4ed8-94c0-6615a3b74b1c","type":"text/javascript","exec":[""]}}]}