{"info":{"_postman_id":"7e2b3c84-9c7f-4bd2-3b75-562f0555cc18","name":"RVTech Lora App","description":"<html><head></head><body><p>REST API pro komunikaci s LoRa aplikací. Veškerá data jsou přenášena v <code>JSON</code> formátu a UTF-8 kódování.</p>\n<h2 id=\"autorizace\">Autorizace</h2>\n<p>Ověřování probíhá pomocí JWT (JSON Web Token), který předáte v parametrem v hlavičce <code>Authorization: Bearer JWT</code>\nAlternativně lze použít parametr <code>token</code> v URL požadavku. </p>\n<blockquote>\n<p>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9</p>\n</blockquote>\n<p>JWT získáte <a href=\"#39d1a7be-d149-d61c-c67b-a4c7728d3406\">přihlášením</a> zadáním e-mailové adresy a hesla. </p>\n<h2 id=\"odpovědi-serveru\">Odpovědi serveru</h2>\n<p>Při správném požadavku je návratový HTTP stav <code>200</code>, <code>201</code>, <code>204</code>. Chybný požadavek může být ve stavu <code>400</code>, <code>401</code>, <code>403</code>, <code>409</code>. HTTP stavové kódy odpovídají <a href=\"https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html\">RFC2616</a>.</p>\n<p>Při chybě odpovídá odpověď tvaru</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"message\": \"text chyby\",\n    \"status_code\": 400\n}\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"17338","collectionId":"7e2b3c84-9c7f-4bd2-3b75-562f0555cc18","publishedId":"7EG8Cqd","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2017-12-01T09:58:48.000Z"},"item":[{"name":"Nody","item":[{"name":"Seznam nodu","id":"9f72a02a-18c3-4cad-7ede-a15867dcaf75","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/nodes","urlObject":{"protocol":"https","path":["api","v2","nodes"],"host":["app","loratech","cz"],"query":[],"variable":[]}},"response":[{"id":"3a15607a-4437-24c1-2eb9-d59d285dc2ae","name":"200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/nodes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Length","value":"286","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 18:04:16 GMT","name":"Date","description":""},{"key":"ETag","value":"\"d8daf942355ff3e9b9b5f6d79c46ed95715d57e8\"","name":"ETag","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""},{"key":"X-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":""},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":""}],"cookie":[],"responseTime":"539","body":"{\n    \"data\": [\n        {\n            \"devEUI\": \"0000000000000000\",\n            \"appEUI\": \"0000000000000000\",\n            \"appKey\": \"00000000000000000000000000000000\",\n            \"rxDelay\": 0,\n            \"rx1DROffset\": 0,\n            \"rxWindow\": \"RX1\",\n            \"rx2DR\": 0,\n            \"name\": \"string\",\n            \"relaxFCnt\": true,\n            \"isABP\": false,\n            \"applicationID\": 20,\n            \"isClassC\": false,\n            \"useApplicationSettings\": false\n        }\n    ]\n}"}],"_postman_id":"9f72a02a-18c3-4cad-7ede-a15867dcaf75"},{"name":"Vytvoření nodu","id":"78292d71-0289-18cb-f3ba-a3e09e2cefcc","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"devEUI\": \"0000000000000000\",\r\n  \"appEUI\": \"0000000000000000\",\r\n  \"appKey\": \"00000000000000000000000000000000\",\r\n  \"applicationID\": 1,\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"name\": \"string\",\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\",\r\n  \"useApplicationSettings\": false,\r\n  \"latitude\": 0,\r\n  \"longtitude\": 0\r\n}"},"url":"https://app.loratech.cz/api/v2/nodes","urlObject":{"protocol":"https","path":["api","v2","nodes"],"host":["app","loratech","cz"],"query":[],"variable":[]}},"response":[{"id":"942153be-4f4b-aeb7-f8ce-0126059b0468","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"devEUI\": \"{{devEUI}}\",\r\n  \"appEUI\": \"12ab6e4bb2e8a228\",\r\n  \"appKey\": \"00000000000000000000000000000000\",\r\n  \"applicationID\": 20,\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"name\": \"name\",\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\",\r\n  \"useApplicationSettings\": false,\r\n  \"latitude\": 0,\r\n  \"longtitude\": 0\r\n}"},"url":"https://app.loratech.cz/api/v2/nodes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"275","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":"Sun, 12 Nov 2017 18:09:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"61786b48918dae39dec0b771cb56738e33ec4497\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Location","value":"http://dev.sfortelem.cz/api/v2/nodes/0006110070710000","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"51","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"251","body":"{\n    \"data\": {\n        \"devEUI\": \"0000000000000000\",\n        \"appEUI\": \"0000000000000000\",\n        \"appKey\": \"00000000000000000000000000000000\",\n        \"rxDelay\": 0,\n        \"rx1DROffset\": 0,\n        \"rxWindow\": \"RX1\",\n        \"rx2DR\": 0,\n        \"name\": \"string\",\n        \"relaxFCnt\": true,\n        \"isABP\": true,\n        \"applicationID\": 1,\n        \"isClassC\": true,\n        \"useApplicationSettings\": false\n    }\n}"}],"_postman_id":"78292d71-0289-18cb-f3ba-a3e09e2cefcc"},{"name":"Detail nodu","id":"7fe4b977-a997-41a6-8b47-57d3e082c0ca","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"6562a421-feda-d14d-fb23-be852726965c","name":"200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"275","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":"Sun, 12 Nov 2017 18:09:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"61786b48918dae39dec0b771cb56738e33ec4497\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"306","body":"{\n    \"data\": {\n        \"devEUI\": \"0000000000000000\",\n        \"appEUI\": \"0000000000000000\",\n        \"appKey\": \"00000000000000000000000000000000\",\n        \"rxDelay\": 0,\n        \"rx1DROffset\": 0,\n        \"rxWindow\": \"RX1\",\n        \"rx2DR\": 0,\n        \"name\": \"name\",\n        \"relaxFCnt\": true,\n        \"isABP\": true,\n        \"applicationID\": 1,\n        \"isClassC\": true,\n        \"useApplicationSettings\": false\n    }\n}"}],"_postman_id":"7fe4b977-a997-41a6-8b47-57d3e082c0ca"},{"name":"Aktualizace nodu","id":"f0e908f1-2133-d81a-5dbe-15cb1873ee82","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"appEUI\": \"0000000000000000\",\r\n  \"appKey\": \"00000000000000000000000000000000\",\r\n  \"applicationID\": 1,\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"name\": \"string\",\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\",\r\n  \"useApplicationSettings\": false,\r\n  \"latitude\": 0,\r\n  \"longtitude\": 0\r\n}"},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"72f6a11a-51f2-e6f4-5639-074473b8f6d4","name":"204 No Content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"appEUI\": \"0000000000000000\",\r\n  \"appKey\": \"00000000000000000000000000000000\",\r\n  \"applicationID\": 1,\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"name\": \"string\",\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\",\r\n  \"useApplicationSettings\": false,\r\n  \"latitude\": 0,\r\n  \"longtitude\": 0\r\n}"},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:10:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"58","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"732","body":""}],"_postman_id":"f0e908f1-2133-d81a-5dbe-15cb1873ee82"},{"name":"Smazání nodu","id":"91f1d763-3ae6-3961-688e-cd1765562f64","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"0867b6c2-4d01-ec92-8118-51a9807e591f","name":"204 No Content","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:13:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"541","body":""}],"_postman_id":"91f1d763-3ae6-3961-688e-cd1765562f64"},{"name":"Aktivace nodu","id":"7c2e288c-f226-c8d9-7625-427c6d4bb5d8","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n        \"devAddr\": \"7d90b6b2\",\n        \"appSKey\": \"ff6391baf365d2bc6c448e0a0908ab1d\",\n        \"nwkSKey\": \"d892f04c73edb60567de7b9c64756a21\",\n        \"fCntUp\": 0,\n        \"fCntDown\": 0\n}"},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI/activation","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI","activation"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"4cb4d2e7-5a77-9715-b83e-5f6413c7122f","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"devAddr\": \"7d90b6b2\",\n        \"appSKey\": \"ff6391baf365d2bc6c448e0a0908ab1d\",\n        \"nwkSKey\": \"d892f04c73edb60567de7b9c64756a21\",\n        \"fCntUp\": 0,\n        \"fCntDown\": 0\n}"},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI/activation","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI","activation"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","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":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:11:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"670","body":""}],"_postman_id":"7c2e288c-f226-c8d9-7625-427c6d4bb5d8"},{"name":"Přístup nodu","id":"3c5b6610-0d20-91ef-38ad-40fbae730a35","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI/activation","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI","activation"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"472031ab-4f24-faaf-9eed-3e78c97cbc1b","name":"200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI/activation","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI","activation"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Length","value":"145","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 18:11:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"d62e0332840718bde2aa82cc59269a37cdbd5c4e\"","name":"ETag","description":""},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""},{"key":"X-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":""},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":""}],"cookie":[],"responseTime":"221","body":"{\n    \"data\": {\n        \"devAddr\": \"0000000000000000\",\n        \"appSKey\": \"00000000000000000000000000000000\",\n        \"nwkSKey\": \"00000000000000000000000000000000\",\n        \"fCntUp\": 0,\n        \"fCntDown\": 0\n    }\n}"}],"_postman_id":"3c5b6610-0d20-91ef-38ad-40fbae730a35"},{"name":"Data","id":"dad837dc-8cfe-5373-3018-e82e480a51a7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI/data?perPage=10&page=1","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI","data"],"host":["app","loratech","cz"],"query":[{"description":{"content":"<p>počet položek na 1 požadavek (výchozí 100, v rozsahu 1 - 250)</p>\n","type":"text/plain"},"key":"perPage","value":"10"},{"description":{"content":"<p>stránka (výchozí 1)</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"a4401c34-93ed-a8e4-f935-611173c3802c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"","value":""}],"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI/data?perPage=10&page=1","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI","data"],"query":[{"key":"perPage","value":"10","description":"počet položek na 1 požadavek (výchozí 100, v rozsahu 1 - 250)"},{"key":"page","value":"1","description":"stránka (výchozí 1)"}],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Length","value":"2647","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 26 Nov 2017 19:35:22 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ed77c6d210954234046cffeaca92c125fd699189\"","name":"ETag","description":""},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""},{"key":"X-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":""},{"key":"X-RateLimit-Remaining","value":"58","name":"X-RateLimit-Remaining","description":""}],"cookie":[],"responseTime":"619","body":"{\n    \"data\": [\n        {\n            \"time\": \"2018-06-10T17:21:51+02:00\",\n            \"rssi\": \"-111\",\n            \"snr\": 2,\n            \"gwCount\": 3,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1FNCYM\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 29\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 974\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 52\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 38\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T16:45:44+02:00\",\n            \"rssi\": \"-115\",\n            \"snr\": -1,\n            \"gwCount\": 1,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1FMiWU\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 29\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 962\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 50\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T16:09:38+02:00\",\n            \"rssi\": \"-108\",\n            \"snr\": -4,\n            \"gwCount\": 3,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1HMCW8\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 31\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 966\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 48\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T15:33:31+02:00\",\n            \"rssi\": \"-108\",\n            \"snr\": 1,\n            \"gwCount\": 2,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1GLSWy\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 30\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 965\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 45\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T14:57:24+02:00\",\n            \"rssi\": \"-113\",\n            \"snr\": 0,\n            \"gwCount\": 2,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1ILCWy\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 32\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 965\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 44\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T14:21:18+02:00\",\n            \"rssi\": \"-108\",\n            \"snr\": -4,\n            \"gwCount\": 2,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1JLCW8\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 33\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 966\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 44\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T13:45:11+02:00\",\n            \"rssi\": \"-114\",\n            \"snr\": 1,\n            \"gwCount\": 1,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1JLCXk\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 33\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 970\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 44\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T13:09:05+02:00\",\n            \"rssi\": \"-114\",\n            \"snr\": 1,\n            \"gwCount\": 1,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1MJiWy\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 36\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 965\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 38\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T12:32:59+02:00\",\n            \"rssi\": \"-108\",\n            \"snr\": -3,\n            \"gwCount\": 3,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1NKCXQ\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 37\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 968\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 40\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        },\n        {\n            \"time\": \"2018-06-10T11:56:53+02:00\",\n            \"rssi\": \"-114\",\n            \"snr\": -3,\n            \"gwCount\": 2,\n            \"fPort\": 50,\n            \"fCnt\": 1,\n            \"data\": \"AP1LKCW8\",\n            \"txInfo\": {\n                \"frequency\": 867900000,\n                \"dataRate\": {\n                    \"modulation\": \"LORA\",\n                    \"bandWidth\": 125,\n                    \"spreadFactor\": 12\n                }\n            },\n            \"value\": [\n                {\n                    \"name\": \"battery\",\n                    \"unit\": \"V\",\n                    \"value\": 3.4399999999999999\n                },\n                {\n                    \"name\": \"temperature\",\n                    \"unit\": \"°C\",\n                    \"value\": 35\n                },\n                {\n                    \"name\": \"pressure_hpa\",\n                    \"unit\": \"hPa\",\n                    \"value\": 966\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 40\n                },\n                {\n                    \"name\": \"humidity\",\n                    \"unit\": \"%\",\n                    \"value\": 37\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 32929,\n            \"count\": 10,\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"total_pages\": 3293,\n            \"links\": {\n                \"next\": \"https://app.loratech.cz/api/v2/nodes/:devEUI/data?page=2\"\n            }\n        }\n    }\n}"}],"_postman_id":"dad837dc-8cfe-5373-3018-e82e480a51a7"}],"id":"b4b5bf87-88e5-0413-e0b4-75912e51052e","_postman_id":"b4b5bf87-88e5-0413-e0b4-75912e51052e","description":""},{"name":"Aplikace","item":[{"name":"Seznam aplikací","id":"05457b3d-a1d3-e9ea-6aae-e07e9dc05254","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/applications","urlObject":{"protocol":"https","path":["api","v2","applications"],"host":["app","loratech","cz"],"query":[],"variable":[]}},"response":[{"id":"e8277265-818d-62e2-f909-cc19900d9e61","name":"200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"944","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":"Sun, 12 Nov 2017 17:54:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"5b1b6c7b8c072166a73e4c86edc01624c24bbbc8\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"58","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"415","body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"string\",\n            \"description\": \"string\",\n            \"rxDelay\": 0,\n            \"rx1DROffset\": 0,\n            \"rxWindow\": \"RX1\",\n            \"rx2DR\": 0,\n            \"relaxFCnt\": false,\n            \"isABP\": false,\n            \"isClassC\": false\n        }\n    ]\n}"}],"_postman_id":"05457b3d-a1d3-e9ea-6aae-e07e9dc05254"},{"name":"Detail aplikace","id":"4e5a7dc0-2dcb-972e-064f-d2a98e5270a3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/applications/:id","urlObject":{"protocol":"https","path":["api","v2","applications",":id"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"a54d4bef-8f4f-1397-6da5-fde2aacd76dd","name":"200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":{"raw":"https://app.loratech.cz/api/v2/applications/:id","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","applications",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"181","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":"Sun, 12 Nov 2017 17:57:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"cfe062208a0e8038a4977af0beb35612bdb698a2\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"337","body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"string\",\n        \"description\": \"string\",\n        \"rxDelay\": 0,\n        \"rx1DROffset\": 0,\n        \"rxWindow\": \"RX1\",\n        \"rx2DR\": 0,\n        \"relaxFCnt\": false,\n        \"isABP\": false,\n        \"isClassC\": false\n    }\n}"}],"_postman_id":"4e5a7dc0-2dcb-972e-064f-d2a98e5270a3"},{"name":"Aktualizace aplikace","id":"c55d07e3-1078-c1b9-034b-eb7b6ea2f9e1","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"string\",\r\n  \"description\": \"string\",\r\n  \"isABP\": false,\r\n  \"isClassC\": false,\r\n  \"relaxFCnt\": false,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\"\r\n}"},"url":"https://app.loratech.cz/api/v2/applications/:id","urlObject":{"protocol":"https","path":["api","v2","applications",":id"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"c03e94bd-7376-2585-74b3-c6fecc520674","name":"204 No Content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"string\",\r\n  \"description\": \"string\",\r\n  \"isABP\": false,\r\n  \"isClassC\": false,\r\n  \"relaxFCnt\": false,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\"\r\n}"},"url":{"raw":"https://app.loratech.cz/api/v2/applications/:id","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","applications",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 17:58:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"269","body":""}],"_postman_id":"c55d07e3-1078-c1b9-034b-eb7b6ea2f9e1"},{"name":"Vytvoření aplikace","id":"dd2622b2-5bf5-b91f-e36c-b84b9e360dd5","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"string\",\r\n  \"description\": \"string\",\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\"\r\n}"},"url":"https://app.loratech.cz/api/v2/applications","urlObject":{"protocol":"https","path":["api","v2","applications"],"host":["app","loratech","cz"],"query":[],"variable":[]}},"response":[{"id":"61cbfa42-7aa2-24a0-0833-074a5fe25980","name":"409 Conflict","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"string\",\r\n  \"description\": \"string\",\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\"\r\n}"},"url":"https://app.loratech.cz/api/v2/applications"},"status":"Conflict","code":409,"_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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"53","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":"Sun, 12 Nov 2017 17:58:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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."}],"cookie":[],"responseTime":"610","body":"{\"message\":\"object already exists\",\"status_code\":409}"},{"id":"a3f0231d-11d4-1a7d-8278-a7dd36b808be","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"string\",\r\n  \"description\": \"string\",\r\n  \"isABP\": true,\r\n  \"isClassC\": true,\r\n  \"relaxFCnt\": true,\r\n  \"rx1DROffset\": 0,\r\n  \"rx2DR\": 0,\r\n  \"rxDelay\": 0,\r\n  \"rxWindow\": \"RX1\"\r\n}"},"url":"https://app.loratech.cz/api/v2/applications"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"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":"close","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","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:00:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"a14d9faffb22857ff4768a5d252faa759f953bf3\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Location","value":"http://dev.sfortelem.cz/api/v2/applications/35","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"323","body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"string\",\n        \"description\": \"string\",\n        \"rxDelay\": 0,\n        \"rx1DROffset\": 0,\n        \"rxWindow\": \"RX1\",\n        \"rx2DR\": 0,\n        \"relaxFCnt\": true,\n        \"isABP\": true,\n        \"isClassC\": true\n    }\n}"}],"_postman_id":"dd2622b2-5bf5-b91f-e36c-b84b9e360dd5"},{"name":"Smazání aplikace","id":"c41d6c56-ed97-5f98-2156-346d3e30d320","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":"https://app.loratech.cz/api/v2/applications/:id","urlObject":{"protocol":"https","path":["api","v2","applications",":id"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"1e60a1b1-1673-29d6-348e-8a5e9287c7d3","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://app.loratech.cz/api/v2/applications/:id","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","applications",":id"],"variable":[{"key":"id","value":"30"}]}},"status":"Not Found","code":404,"_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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","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":"Sun, 12 Nov 2017 18:00:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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."}],"cookie":[],"responseTime":"217","body":"{\"message\":\"Not Found\",\"status_code\":404}"},{"id":"a894c9cd-00e8-0085-48ec-df5c595e62c5","name":"204 No Content","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://app.loratech.cz/api/v2/applications/:id","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","applications",":id"],"variable":[{"key":"id","value":"30"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:00:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"262","body":""}],"_postman_id":"c41d6c56-ed97-5f98-2156-346d3e30d320"}],"id":"c30b3f14-4a5f-529f-1116-0bc584277d7f","_postman_id":"c30b3f14-4a5f-529f-1116-0bc584277d7f","description":""},{"name":"DownlinkQueue","item":[{"name":"Vytvoření","id":"110b28f8-d8f6-9e6a-72b2-27e807379a51","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"confirmed\": true,\r\n  \"data\": \"data\",\r\n  \"fPort\": 0,\r\n  \"reference\": \"string\"\r\n}"},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI/queue","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI","queue"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"c8a7e0cd-85da-fe42-eaba-8726a8ab106f","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"confirmed\": true,\r\n  \"data\": \"data\",\r\n  \"fPort\": 0,\r\n  \"reference\": \"string\"\r\n}"},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI/queue","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI","queue"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","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":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:01:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"582","body":""}],"_postman_id":"110b28f8-d8f6-9e6a-72b2-27e807379a51"},{"name":"Detail","id":"1c42c029-161b-c526-c626-930540a1a76f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":"https://app.loratech.cz/api/v2/nodes/:devEUI/queue","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI","queue"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"}]}},"response":[{"id":"dac0f773-aaeb-19e5-4e60-e5d0cb8073ac","name":"200 OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text"},{"key":"password","value":"","type":"text"}]},"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI/queue","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI","queue"],"variable":[{"key":"devEUI","value":"{{devEUI}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"481","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":"Sun, 12 Nov 2017 18:01:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6489ab6d2327a64e4950d07b0e8d928ccaf8b790\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"281","body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"devEUI\": \"0006110070712009\",\n            \"reference\": \"string\",\n            \"confirmed\": true,\n            \"pending\": true,\n            \"fPort\": 0,\n            \"data\": \"data\"\n        }\n    ]\n}"}],"_postman_id":"1c42c029-161b-c526-c626-930540a1a76f"},{"name":"Smazání","id":"15626ccf-4f36-842e-b07f-64ea11a682dd","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"https://app.loratech.cz/api/v2/nodes/:devEUI/queue/:id","urlObject":{"protocol":"https","path":["api","v2","nodes",":devEUI","queue",":id"],"host":["app","loratech","cz"],"query":[],"variable":[{"type":"any","value":"","key":"devEUI"},{"type":"any","value":"","key":"id"}]}},"response":[{"id":"6e912ed7-f7aa-ff9e-0164-ddc7d8ff13b4","name":"204 No Content","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://app.loratech.cz/api/v2/nodes/:devEUI/queue/:id","protocol":"https","host":["app","loratech","cz"],"path":["api","v2","nodes",":devEUI","queue",":id"],"variable":[{"key":"devEUI","value":"{{devEUI}}"},{"key":"id","value":"1"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"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":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 18:03:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"da39a3ee5e6b4b0d3255bfef95601890afd80709\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","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-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[],"responseTime":"484","body":""}],"_postman_id":"15626ccf-4f36-842e-b07f-64ea11a682dd"}],"id":"1e662e5e-24df-2daa-d693-d1d957b6a4af","_postman_id":"1e662e5e-24df-2daa-d693-d1d957b6a4af","description":""},{"name":"Přihlášení","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var data = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"token\", data.token);"]}}],"id":"14d737cd-91a0-7829-b572-0ba6a6d9345f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"{{email}}\",\n\t\"password\": \"{{password}}\"\n}"},"url":"https://app.loratech.cz/api/v2/login","urlObject":{"protocol":"https","path":["api","v2","login"],"host":["app","loratech","cz"],"query":[],"variable":[]}},"response":[{"id":"273bd3eb-37c3-01f1-0c59-d62e9895d94d","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"{{email}}\",\n\t\"password\": \"{{password}}\"\n}"},"url":"https://app.loratech.cz/api/v2/login"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Length","value":"332","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 11 Nov 2017 21:53:41 GMT","name":"Date","description":""},{"key":"ETag","value":"\"7cc6f06169100eefbde45f0ad96c0a7e5a4213d2\"","name":"ETag","description":""},{"key":"Server","value":"Apache/2.4.25 (Debian)","name":"Server","description":""},{"key":"X-RateLimit-Limit","value":"60","name":"X-RateLimit-Limit","description":""},{"key":"X-RateLimit-Remaining","value":"59","name":"X-RateLimit-Remaining","description":""}],"cookie":[],"responseTime":"237","body":"{\n    \"token\": \"ey1iJ9.eyJpc\"\n}"}],"_postman_id":"14d737cd-91a0-7829-b572-0ba6a6d9345f"}]}