{"info":{"_postman_id":"e13247e4-aa6b-463c-b83f-e9b80ac40097","name":"Superclouds API Documentation","description":"<html><head></head><body><h2 id=\"the-super-api\">The Super API</h2>\n<p>The Super API is built on REST principles. It features predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON responses, and adheres to standard HTTP response codes and verbs.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The Super API utilizes a <strong>two-factor authentication</strong> approach for enhanced security, requiring both a <strong>client certificate</strong> and a <strong>bearer token</strong> for successful authentication.</p>\n<h3 id=\"client-certificate-setup\">Client Certificate Setup</h3>\n<ol>\n<li><strong>Obtain Certificates:</strong><ul>\n<li>Contact your valid client certificate (<code>.crt</code> or <code>.pem</code> format) and its corresponding private key (<code>.key</code> or <code>.pem</code> format) from the Superclouds Console.</li>\n</ul>\n</li>\n<li><strong>Postman Setup:</strong><ul>\n<li>Open Postman and navigate to <strong>Settings</strong> (the wrench icon).</li>\n<li>Select <strong>Certificates</strong>.</li>\n<li>Under <strong>Client Certificates</strong>, click <strong>Add Certificate</strong>.</li>\n<li>Enter the host domain for your API (e.g., <code>api.superclouds.ooo</code>).</li>\n<li>Select the appropriate <code>.crt</code> and <code>.key</code> (or <code>.pem</code>) files.</li>\n<li>Click <strong>Add</strong>.</li>\n</ul>\n</li>\n</ol>\n<h3 id=\"bearer-token\">Bearer Token</h3>\n<p>In addition to the client certificate, you'll need a valid bearer token for each request.</p>\n<ol>\n<li><strong>Obtain Token:</strong> Acquire a bearer token from the Superclouds Console.</li>\n<li>Authorization: Bearer <em>Replace</em> <em>with your actual token value.</em></li>\n</ol>\n<p>** Please ensure to add your downloaded cert in your code along with the bearer token for a successfull request / response</p>\n<p><strong>For example :</strong><br>const cert = fs.readFileSync('/path/to/client.crt');<br>const key = fs.readFileSync('/path/to/client.key');</p>\n<p>(or)</p>\n<p>cert, err := tls.LoadX509KeyPair(\"/path/to/client.crt\", \"/path/to/client.key\")<br>if err != nil {<br>panic(err)<br>}</p>\n<p>(or) similar in your choice of language.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25556074","collectionId":"e13247e4-aa6b-463c-b83f-e9b80ac40097","publishedId":"2sA3JQ5L4h","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"f81c06"},"publishDate":"2024-05-14T20:56:09.000Z"},"item":[{"name":"Users","item":[{"name":"Users","event":[{"listen":"test","script":{"id":"ce9a3c4d-7a30-4819-bd3f-5220878b8166","exec":["// Removed redundant test"],"type":"text/javascript","packages":{}}}],"id":"45599f7e-e147-4027-b1bf-d913a25c650a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/users","description":"<p>Retrieve a paginated list of users belonging to an organization. This endpoint allows for filtering users based on a search term.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>size</strong> (optional, integer): The number of users to return per page. Default is 10.</p>\n</li>\n<li><p><strong>page</strong> (optional, integer): The page number to retrieve. Default is 1.</p>\n</li>\n<li><p><strong>s</strong> (optional, string): A search term to filter users by their first name, last name, or email.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","users"],"host":["api","superclouds","ooo"],"query":[{"disabled":true,"description":{"content":"<p>(optional, integer): The number of users to return per page. Default is 10.</p>\n","type":"text/plain"},"key":"size","value":"10"},{"disabled":true,"description":{"content":"<p>(optional, integer): The page number to retrieve. Default is 1</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>(optional, string): A search term to filter users by their first name, last name, or email</p>\n","type":"text/plain"},"key":"s","value":"john"}],"variable":[]}},"response":[{"id":"0a432114-0965-416c-b73f-b0c246a68b92","name":"Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":{"raw":"https://api.superclouds.ooo/v1/users?size=10&page=1&s=john","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","users"],"query":[{"key":"size","value":"10","description":"(optional, integer): The number of users to return per page. Default is 10."},{"key":"page","value":"1"},{"key":"s","value":"john"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"60a1e34f8c3c923674175b0a\",\n            \"email\": \"john.doe@example.com\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"role\": \"SUPER\"\n        },\n        {\n            \"id\": \"60a1e34f8c3c923674175b0b\",\n            \"email\": \"jane.smith@example.com\",\n            \"first_name\": \"Jane\",\n            \"last_name\": \"Smith\",\n            \"role\": \"READ\"\n        }\n    ],\n    \"message\": \"User List\",\n    \"page\": 1,\n    \"pages\": 1,\n    \"size\": 2,\n    \"status\": 1,\n    \"total\": 2\n}"},{"id":"6d246bcd-6e21-4b7c-8d19-e9b400f8f7cc","name":"400","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.superclouds.ooo/v1/users","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","users"],"query":[{"key":"size","value":"10","description":"(optional, integer): The number of users to return per page. Default is 10.","disabled":true},{"key":"page","value":"1","description":"(optional, integer): The page number to retrieve. Default is 1","disabled":true},{"key":"s","value":"john","description":"(optional, string): A search term to filter users by their first name, last name, or email","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": -1,\n  \"message\": \"Invalid request parameters.\"\n}"},{"id":"e867be13-62c9-4d8c-9dfe-3a12d6834a06","name":"401","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.superclouds.ooo/v1/users","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","users"],"query":[{"key":"size","value":"ten","description":"(optional, integer): The number of users to return per page. Default is 10.","disabled":true},{"key":"page","value":"one","description":"(optional, integer): The page number to retrieve. Default is 1","disabled":true},{"key":"s","value":"john","description":"(optional, string): A search term to filter users by their first name, last name, or email","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": -1,\n  \"message\": \"You are not authorized.\"\n}"},{"id":"fe0a21ae-34c4-47aa-a46c-256b0a77a394","name":"404","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.superclouds.ooo/v1/users","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","users"],"query":[{"key":"size","value":"10","description":"(optional, integer): The number of users to return per page. Default is 10.","disabled":true},{"key":"page","value":"1","description":"(optional, integer): The page number to retrieve. Default is 1","disabled":true},{"key":"s","value":"john","description":"(optional, string): A search term to filter users by their first name, last name, or email","disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": -1,\n  \"message\": \"No user found.\"\n}"}],"_postman_id":"45599f7e-e147-4027-b1bf-d913a25c650a"},{"name":"User Details","id":"e5a4d8d6-fc7d-4e03-81a1-4593b43e45be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/user","description":"<p>Retrieve detailed information about the authenticated user.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint does not require any query parameters. The user's details are retrieved based on the authenticated session.</p>\n","urlObject":{"protocol":"https","path":["v1","user"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"67a0d0ba-9f98-474e-bb39-3a79b585ed41","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"User details\",\n    \"data\": {\n        \"id\": \"60a1e34f8c3c923674175b0a\",\n        \"contact\": \"999XXXX999\",\n        \"email\": \"john.doe@example.com\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"role\": \"SUPER\"\n    },\n    \"errors\": []\n}"}],"_postman_id":"e5a4d8d6-fc7d-4e03-81a1-4593b43e45be"},{"name":"Update User Details","id":"ab56906e-2453-427e-b9dd-34034c561e84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"contact\": \"999XXXX999\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/user","description":"<p>Update details of the authenticated user. Only the specified fields will be updated, allowing for partial updates.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the fields to be updated. All fields are optional and can include:</p>\n<ul>\n<li><p><strong>first_name</strong> (string): The user's first name.</p>\n</li>\n<li><p><strong>last_name</strong> (string): The user's last name.</p>\n</li>\n<li><p><strong>contact</strong> (string): The user's contact information.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","user"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"4161aa3c-b00b-41ab-b2f5-de3529b30804","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"User successfully updated\",\n    \"errors\": []\n}"}],"_postman_id":"ab56906e-2453-427e-b9dd-34034c561e84"},{"name":"Change Password","id":"267bd948-a0a5-4cc0-9964-b64c05989cfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"current_password\": \"password\",\n    \"password\":\"secret\",\n    \"confirm_password\":\"secret\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/change-password","description":"<p>Allows the authenticated user to change their password by providing the current password and a new password.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following fields:</p>\n<ul>\n<li><p><strong>current_password</strong> (string): The user's current password.</p>\n</li>\n<li><p><strong>password</strong> (string): The new password.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","change-password"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"c2e075c6-98b8-4b8a-8d52-29c75f47c90d","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"current_password\": \"password\",\n    \"password\":\"secret\",\n    \"confirm_password\":\"secret\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/change-password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"password changed successfully\",\n    \"errors\": []\n}"}],"_postman_id":"267bd948-a0a5-4cc0-9964-b64c05989cfe"},{"name":"Create User","id":"6d037fdb-1f9e-4462-9453-1969cda8879a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\":\"new.user@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users","description":"<p>Creates a new user within the organization. If the user does not have a password, a random password is generated and sent to the user via email.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following field:</p>\n<ul>\n<li><strong>email</strong> (string): The email address of the new user.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","users"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"50bf0314-bd38-42be-9984-61fbf5133947","name":"201","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\":\"new.user@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"User successfully created\",\n    \"errors\": []\n}"}],"_postman_id":"6d037fdb-1f9e-4462-9453-1969cda8879a"},{"name":"Delete User","id":"d5cb3fe2-6bad-44ec-857e-64d3b0693662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"email\":\"delete.user@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users","description":"<p>Removes a user from the organization. The user will be detached from the specified organization but not deleted from the system if they belong to multiple organizations.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following field:</p>\n<ul>\n<li><strong>email</strong> (string): The email address of the user to be deleted.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","users"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"1fd7672a-05f2-49f9-a817-ba6e69a6c3ed","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\":\"delete.user@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"User successfully delete\",\n    \"errors\": []\n}"}],"_postman_id":"d5cb3fe2-6bad-44ec-857e-64d3b0693662"},{"name":"Update User Role","id":"ca93f330-79a0-4df8-bf0b-9022ffc787fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"email\":\"user@example.com\",\n    \"role\": \"MODIFY\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users/role","description":"<p>Updates the role of a user within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following fields:</p>\n<ul>\n<li><p><strong>email</strong> (string): The email address of the user whose role is to be updated.</p>\n</li>\n<li><p><strong>role</strong> (string): The new role to be assigned to the user.</p>\n</li>\n</ul>\n<p><strong>Available Roles</strong></p>\n<ul>\n<li><p><code>READ</code></p>\n</li>\n<li><p><code>MODIFY</code></p>\n</li>\n<li><p><code>EXECUTE</code></p>\n</li>\n<li><p><code>MANAGE</code></p>\n</li>\n<li><p><code>SUPER</code></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","users","role"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"d1c270d2-2d8b-4dbb-a8a2-415dfb56d6ee","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\":\"user@example.com\",\n    \"role\": \"MODIFY\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users/role"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"successfully update role\",\n    \"errors\": []\n}"}],"_postman_id":"ca93f330-79a0-4df8-bf0b-9022ffc787fb"},{"name":"List of Roles","id":"a7b52111-2051-44ad-9a5d-d95171fc2483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users/roles","description":"<p>Retrieve a list of available roles within the system.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint does not require any query parameters.</p>\n<p><strong>Available Roles</strong></p>\n<ul>\n<li><p><code>READ</code></p>\n</li>\n<li><p><code>MODIFY</code></p>\n</li>\n<li><p><code>EXECUTE</code></p>\n</li>\n<li><p><code>MANAGE</code></p>\n</li>\n<li><p><code>SUPER</code></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","users","roles"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"ea7e52d7-7b1a-41ed-b6e3-dfa9278b1c37","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/users/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Roles\",\n    \"data\": [\n        {\n            \"role\": \"SUPER\",\n            \"name\": \"SUPER\"\n        },\n        {\n            \"role\": \"READ\",\n            \"name\": \"READ\"\n        },\n        {\n            \"role\": \"MODIFY\",\n            \"name\": \"MODIFY\"\n        },\n        {\n            \"role\": \"EXECUTE\",\n            \"name\": \"EXECUTE\"\n        },\n        {\n            \"role\": \"MANAGE\",\n            \"name\": \"MANAGE\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"a7b52111-2051-44ad-9a5d-d95171fc2483"}],"id":"bf780976-d763-4441-8951-c89e7ca5b1b3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"2ccd5c98-8476-4964-ae37-e5a1f6000435","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"8c898e65-60f1-4b35-ad89-5a408f102f43","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"bf780976-d763-4441-8951-c89e7ca5b1b3","description":""},{"name":"Prefixes","item":[{"name":"Prefixes","id":"b3c31ea1-572c-4a67-b7bd-2a6020e426dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/prefixes","description":"<p>Retrieve a paginated list of prefixes associated with the organization. This endpoint allows for filtering prefixes based on a search term.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><strong>size</strong> (optional, integer): The number of prefixes to return per page. Default is 10.</li>\n<li><strong>page</strong> (optional, integer): The page number to retrieve. Default is 1.</li>\n<li><strong>s</strong> (optional, string): A search term to filter prefixes by their name.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes"],"host":["api","superclouds","ooo"],"query":[{"disabled":true,"description":{"content":"<p>(optional, integer): The number of prefixes to return per page. Default is 10.</p>\n","type":"text/plain"},"key":"size","value":"10"},{"disabled":true,"description":{"content":"<p>(optional, integer): The page number to retrieve. Default is 1.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>(optional, string): A search term to filter prefixes by their name.</p>\n","type":"text/plain"},"key":"s","value":"PROJECT"}],"variable":[]}},"response":[{"id":"9c8f8954-d80d-4411-94fb-0159a7de8c11","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":{"raw":"https://api.superclouds.ooo/v1/prefixes?size=10&page=1&s=PROJECT","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","prefixes"],"query":[{"key":"size","value":"10"},{"key":"page","value":"1"},{"key":"s","value":"PROJECT"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n            \"name\": \"PROJECT1\",\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n        },\n        {\n            \"super_id\": \"a9c350d7-7013-4939-8e44-98f7ae4178d1\",\n            \"name\": \"PROJECT2\",\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n        },\n        {\n            \"super_id\": \"cd4dc879-7aa7-4fc7-b75c-c3a707bfcd10\",\n            \"name\": \"PROJECT3\",\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n        }\n    ],\n    \"message\": \"successfully fetched all prefix\",\n    \"page\": 1,\n    \"pages\": 1,\n    \"size\": 3,\n    \"status\": 1,\n    \"total\": 3\n}"}],"_postman_id":"b3c31ea1-572c-4a67-b7bd-2a6020e426dc"},{"name":"Prefixes by User","id":"aa0fdfce-f392-4d4d-9144-36fbc6935ee7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/user/prefixes?uid={{user_id}}","description":"<p>Retrieve a list of prefixes associated with a specific user within the organization. If no user ID is provided, the prefixes of the authenticated user will be returned.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint does not require any query parameters, but can use a path parameter to specify a user ID.</p>\n<ul>\n<li>user_id (optional, string): The user ID to retrieve prefixes for. If not provided, the authenticated user's prefixes will be returned.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","user","prefixes"],"host":["api","superclouds","ooo"],"query":[{"description":{"content":"<p>(optional) Id of user, if did not give this value then it will take logged in user.</p>\n","type":"text/plain"},"key":"uid","value":"{{user_id}}"}],"variable":[]}},"response":[{"id":"d161e7ff-8b47-41db-9a9a-bd938796d506","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":{"raw":"https://api.superclouds.ooo/v1/user/prefixes?uid={{user_id}}","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","user","prefixes"],"query":[{"key":"uid","value":"{{user_id}}","description":"(optional) Id of user, if did not give this value then it will take logged in user."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n            \"name\": \"PROJECT1\",\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n        },\n        {\n            \"super_id\": \"cd4dc879-7aa7-4fc7-b75c-c3a707bfcd10\",\n            \"name\": \"PROJECT3\",\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n        }\n    ],\n    \"message\": \"successfully fetched all prefix\",\n    \"page\": 1,\n    \"pages\": 1,\n    \"size\": 3,\n    \"status\": 1,\n    \"total\": 3\n}"}],"_postman_id":"aa0fdfce-f392-4d4d-9144-36fbc6935ee7"},{"name":"Prefix","id":"07e63cb0-fedf-4db1-9d8a-cb98dba2953f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}","description":"<p>Retrieve details of a specific prefix by its unique identifier.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter:</p>\n<ul>\n<li><strong>super_id</strong> (string): The unique identifier of the prefix to be retrieved.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"3142cd2e-df2e-49ef-9d8e-fd97a0b32bfb","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully fetched\",\n    \"data\": {\n        \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n        \"name\": \"PROJECT1\",\n        \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n    },\n    \"errors\": []\n}"}],"_postman_id":"07e63cb0-fedf-4db1-9d8a-cb98dba2953f"},{"name":"Prefix","id":"55609136-d904-4643-bcac-c81516e37ba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\":\"Project 4\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/prefixes","description":"<p>Creates a new prefix within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following field:</p>\n<ul>\n<li><strong>name</strong> (string): The name of the new prefix.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"c5fb04b8-7a60-4539-8dbb-1a8403a8be3f","name":"201","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\":\"Project 4\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/prefixes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully created\",\n    \"data\": {\n        \"super_id\": \"a034735f-ef32-4a08-8dee-f18c3705eff4\"\n    },\n    \"errors\": null\n}"}],"_postman_id":"55609136-d904-4643-bcac-c81516e37ba0"},{"name":"Prefix","id":"bf0b0127-8d4a-4228-b798-bbac2baab01b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\":\"Project Dev\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}","description":"<p>Updates the details of an existing prefix within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter and a JSON body:</p>\n<ul>\n<li><p><strong>super_id</strong> (string): The unique identifier of the prefix to be updated.</p>\n</li>\n<li><p><strong>name</strong> (string): The new name for the prefix.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"1702adbf-d7c5-4f91-8884-676571aece3f","name":"200","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\":\"Project Dev\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully updated\",\n    \"errors\": []\n}"}],"_postman_id":"bf0b0127-8d4a-4228-b798-bbac2baab01b"},{"name":"Prefix","id":"e7164010-5f8f-4382-9e2c-3fdaba79a3ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}","description":"<p>Deletes a specific prefix within the organization. A prefix can only be deleted if it is not being used by any services.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter:</p>\n<ul>\n<li><strong>super_id</strong> (string): The unique identifier of the prefix to be deleted.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"6417b442-5e4c-4b2c-9ba8-9eae86cb4d34","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully deleted\",\n    \"errors\": []\n}"}],"_postman_id":"e7164010-5f8f-4382-9e2c-3fdaba79a3ae"},{"name":"List User Attached to a Prefix","id":"5be64ebd-3a6c-46a7-b8c2-274c27471494","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/attach/prefix/users?super-id={{super_id}}&role={{role}}","description":"<p>Retrieve a list of users attached to a specific prefix within the organization. Optionally, filter by role.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>super-id</strong> (optional, string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>role</strong> (optional, string): The role of the users to filter by.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","attach","prefix","users"],"host":["api","superclouds","ooo"],"query":[{"key":"super-id","value":"{{super_id}}"},{"key":"role","value":"{{role}}"}],"variable":[]}},"response":[{"id":"4e59053e-dd8b-4087-b2ea-4533f3bd2e25","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":{"raw":"https://api.superclouds.ooo/v1/attach/prefix/users?super-id={{super_id}}&role={{role}}","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","attach","prefix","users"],"query":[{"key":"super-id","value":"{{super_id}}"},{"key":"role","value":"{{role}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"successfully fetched all prefix\",\n    \"data\": [\n        {\n            \"email\": \"john.doe@example.com\",\n            \"prefix_name\": \"PROJECT1\",\n            \"prefix_role\": \"SUPER\",\n            \"prefix_super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n            \"user_id\": \"60a1e34f8c3c923674175b0a\"\n        },\n        {\n            \"email\": \"jane.doe@example.com\",\n            \"prefix_name\": \"PROJECT1\",\n            \"prefix_role\": \"SUPER\",\n            \"prefix_super_id\": \"1126e702-99a8-4abb-acb4-e531955c107e\",\n            \"user_id\": \"60a1e34f8c3c923674175b0b\"\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"5be64ebd-3a6c-46a7-b8c2-274c27471494"},{"name":"Attach Prefix to Users","id":"61494434-0734-4905-9b62-d1373ca3c89a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"prefix_role\": {\n        \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n        \"role\": \"SUPER\"\n    },\n    \"user_ids\": [\n        \"60a1e34f8c3c923674175b0a\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/attach/prefix/users","description":"<p>Attaches a specified prefix to multiple users within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following fields:</p>\n<ul>\n<li><p><strong>prefix_role</strong> (object): The prefix role object containing:</p>\n<ul>\n<li><p><strong>super_id</strong> (string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>role</strong> (string): The role to be assigned to the users for this prefix.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>users</strong> (array): An array of user identifiers to attach the prefix to.</p>\n<ul>\n<li><strong>user_id</strong> (string): The unique identifier of a user.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","attach","prefix","users"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"ff32f070-7fc6-4d24-a8ca-d49099f67a4f","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"prefix_role\": {\n        \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n        \"role\": \"SUPER\"\n    },\n    \"user_ids\": [\n        \"60a1e34f8c3c923674175b0a\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/attach/prefix/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully attached.\",\n    \"errors\": []\n}"}],"_postman_id":"61494434-0734-4905-9b62-d1373ca3c89a"},{"name":"Attach Prefixes to User","id":"1ee3ab95-0d9d-4307-8904-fc603bacd1eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"prefix_roles\": [{\n        \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n        \"role\": \"MANAGE\"\n    },\n    {\n        \"super_id\": \"a9c350d7-7013-4939-8e44-98f7ae4178d1\",\n        \"role\": \"READ\"\n    }],\n    \"user_id\": \"60a1e34f8c3c923674175b0a\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/attach/prefixes/user","description":"<p>Attaches multiple prefixes to a specific user within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following fields:</p>\n<ul>\n<li><p><strong>user_id</strong> (string): The unique identifier of the user to attach the prefixes to.</p>\n</li>\n<li><p><strong>prefixes</strong> (array): An array of prefix role objects to be attached to the user.</p>\n<ul>\n<li><p><strong>super_id</strong> (string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>role</strong> (string): The role to be assigned to the user for this prefix.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","attach","prefixes","user"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"23eaa454-6069-44e9-861d-93911f472855","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"prefix_roles\": [{\n        \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n        \"role\": \"MANAGE\"\n    },\n    {\n        \"super_id\": \"a9c350d7-7013-4939-8e44-98f7ae4178d1\",\n        \"role\": \"READ\"\n    }],\n    \"user_id\": \"60a1e34f8c3c923674175b0a\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/attach/prefixes/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully attached.\",\n    \"errors\": []\n}"}],"_postman_id":"1ee3ab95-0d9d-4307-8904-fc603bacd1eb"},{"name":"Detach Prefix to Users","id":"ed281985-11b1-4e6c-bcc6-2af6e1ea20d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n    \"user_ids\": [\n        \"60a1e34f8c3c923674175b0a\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/detach/prefix/users","description":"<p>Detaches a specified prefix from multiple users within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following fields:</p>\n<ul>\n<li><p><strong>super_id</strong> (string): The unique identifier of the prefix to be detached.</p>\n</li>\n<li><p><strong>users</strong> (array): An array of user identifiers from whom the prefix will be detached.</p>\n<ul>\n<li><strong>user_id</strong> (string): The unique identifier of a user.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","detach","prefix","users"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"fe2f06a6-ce36-4aa5-9281-2aec6b98ad80","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n    \"user_ids\": [\n        \"60a1e34f8c3c923674175b0a\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/detach/prefix/users"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully detached.\",\n    \"errors\": []\n}"}],"_postman_id":"ed281985-11b1-4e6c-bcc6-2af6e1ea20d3"},{"name":"Detach Prefixes to User","id":"1493ae92-933d-4e36-9740-889569ccbba7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"super_ids\": [\"4bfec645-3d18-4f65-832d-8d54c93f6f5a\", \"a9c350d7-7013-4939-8e44-98f7ae4178d1\"],\n    \"user_id\": \"60a1e34f8c3c923674175b0a\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/detach/prefixes/user","description":"<p>Detaches multiple prefixes from a specific user within the organization.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body with the following fields:</p>\n<ul>\n<li><p><strong>user_id</strong> (string): The unique identifier of the user from whom the prefixes will be detached.</p>\n</li>\n<li><p><strong>super_ids</strong> (array): An array of prefix identifiers to be detached from the user.</p>\n<ul>\n<li><strong>super_id</strong> (string): The unique identifier of a prefix.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","detach","prefixes","user"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"dcf3497d-5fae-4e93-b1e6-fe0b7e1b1f99","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"super_ids\": [\"4bfec645-3d18-4f65-832d-8d54c93f6f5a\", \"a9c350d7-7013-4939-8e44-98f7ae4178d1\"],\n    \"user_id\": \"60a1e34f8c3c923674175b0a\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/detach/prefixes/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Successfully detached.\",\n  \"errors\": []\n}"}],"_postman_id":"1493ae92-933d-4e36-9740-889569ccbba7"}],"id":"63c809ad-e3be-447e-bc7c-a0a0ef9782df","description":"<p>Prefixes are special labels attahed to a Organization.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4557d88f-c152-44b7-abf9-b011db99b1d8","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"1095231d-10a1-4d1f-b4cd-162fb1b441a2","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"63c809ad-e3be-447e-bc7c-a0a0ef9782df"},{"name":"Services","item":[{"name":"List Services","id":"53547ac5-9e3e-4324-8f6e-e3b0630c49c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/services","description":"<p>Retrieve a list of services associated with the organization, along with their prefixes.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint does not require any query parameters.</p>\n","urlObject":{"protocol":"https","path":["v1","services"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"973771e1-4bf7-4112-af9c-ade467f0dd1e","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"prefixes\": [\n                {\n                    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n                    \"name\": \"PROJECT1\",\n                    \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n                }\n            ],\n            \"super_id\": \"acfb883e-7986-4e6e-9861-004f0287d796\",\n            \"type\": \"super-machine\"\n        },\n        {\n            \"prefixes\": [\n                {\n                    \"super_id\": \"a9c350d7-7013-4939-8e44-98f7ae4178d1\",\n                    \"name\": \"PROJECT2\",\n                    \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n                  }\n            ],\n            \"super_id\": \"2e8b74fa-889e-4dbf-b411-558b68a2b96a\",\n            \"type\": \"super-machine\"\n        }\n    ],\n    \"errors\": null\n}\n"}],"_postman_id":"53547ac5-9e3e-4324-8f6e-e3b0630c49c4"},{"name":"List Services with Filter","id":"798a0802-b772-4b4a-b312-38f29e57d046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": [\n        {\n            \"field\": \"type\",\n            \"operator\": \"in\",\n            \"terms\": [\n                \"super-drive\"\n            ]\n        },\n        {\n            \"field\": \"prefix.super_id\",\n            \"operator\": \"in\",\n            \"terms\": [\n                \"23e6d503-d852-47ed-870b-c1ad158f0d28\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/services","description":"<p>Retrieve a filtered list of services associated with the organization, along with their prefixes. Supports both basic and detailed results.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a JSON body to specify filters, and supports optional query parameters:</p>\n<ul>\n<li><p><strong>filters</strong> (array): An array of filter objects.</p>\n<ul>\n<li><p><strong>field</strong> (string): The field to filter by.</p>\n</li>\n<li><p><strong>operator</strong> (string): The filter operator (e.g., \"in\").</p>\n</li>\n<li><p><strong>terms</strong> (array): An array of terms to filter the field by.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>size</strong> (optional, integer): The number of services to return per page. Default is 10.</p>\n</li>\n<li><p><strong>page</strong> (optional, integer): The page number to retrieve. Default is 0.</p>\n</li>\n<li><p><strong>result</strong> (optional, string): The result type (\"basic\" or \"detail\"). Default is \"basic\".</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","services"],"host":["api","superclouds","ooo"],"query":[{"disabled":true,"description":{"content":"<p>(optional, string): The result type (\"basic\" or \"detail\"). Default is \"basic\".</p>\n","type":"text/plain"},"key":"result","value":"detail"}],"variable":[]}},"response":[{"id":"217c5db0-5123-4c00-a09f-6c1e10226d0d","name":"200-Detailed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filters\": [\n        {\n            \"field\": \"type\",\n            \"operator\": \"in\",\n            \"terms\": [\n                \"super-drive\"\n            ]\n        },\n        {\n            \"field\": \"prefix.super_id\",\n            \"operator\": \"in\",\n            \"terms\": [\n                \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.superclouds.ooo/v1/services?result=detail","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","services"],"query":[{"key":"result","value":"detail","description":"(optional, string): The result type (\"basic\" or \"detail\"). Default is \"basic\"."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"prefixes\": [\n                {\n                    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n                    \"name\": \"PROJECT1\",\n                    \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n                }\n            ],\n            \"super_id\": \"234cb566-c609-4f43-a6b7-6357a1e96a37\",\n            \"type\": \"super-drive\"\n        },\n        {\n            \"prefixes\": [\n                {\n                    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n                    \"name\": \"PROJECT1\",\n                    \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n                }\n            ],\n            \"super_id\": \"b2578cd8-041c-43e0-9705-7b332661d39b\",\n            \"type\": \"super-drive\"\n        }\n    ],\n    \"errors\": null\n}"},{"id":"402b6404-5a3f-4654-9b3b-f190dbc3257f","name":"200-Basic","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filters\": [\n        {\n            \"field\": \"type\",\n            \"operator\": \"in\",\n            \"terms\": [\n                \"super-drive\"\n            ]\n        },\n        {\n            \"field\": \"prefix.super_id\",\n            \"operator\": \"in\",\n            \"terms\": [\n                \"23e6d503-d852-47ed-870b-c1ad158f0d28\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.superclouds.ooo/v1/services","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","services"],"query":[{"key":"result","value":"detail","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"prefix\": {\n                \"super_id\": \"23e6d503-d852-47ed-870b-c1ad158f0d28\"\n            },\n            \"super_id\": \"c0acb976-e359-4d5c-9c2f-6372faac974a\",\n            \"type\": \"super-drive\"\n        },\n        {\n            \"prefix\": {\n                \"super_id\": \"23e6d503-d852-47ed-870b-c1ad158f0d28\"\n            },\n            \"super_id\": \"b5cd7059-b4e8-411f-9cf1-2734429733e8\",\n            \"type\": \"super-drive\"\n        },\n        {\n            \"prefix\": {\n                \"super_id\": \"23e6d503-d852-47ed-870b-c1ad158f0d28\"\n            },\n            \"super_id\": \"2cef7f1a-cb32-4dca-98a8-e19093f5d4ab\",\n            \"type\": \"super-drive\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"798a0802-b772-4b4a-b312-38f29e57d046"},{"name":"Validate Prefixed Linked Services By SuperIds","id":"79a75e2d-0f73-4ca5-aece-f19d511d4199","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"super_ids\": [\n        \"bc3671ce-3dad-4f87-b90b-762478c7de5f\",\n        \"5850f8eb-92a5-4058-ba9f-6fbb4be54f50\",\n        \"e5e4b318-d3ca-42dd-b0e3-6f3d3b863dd6\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/validate/prefix/{{prefix_super_id}}/services","description":"<p>Validates the services linked to a specified prefix by their Super IDs. Supports both basic and detailed views.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter and a JSON body, with an optional query parameter:</p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>super_ids</strong> (array): An array of service Super IDs to be validated.</p>\n<ul>\n<li><strong>super_id</strong> (string): The unique identifier of a service.</li>\n</ul>\n</li>\n<li><p><strong>view</strong> (optional, string): The view type (\"basic\" or \"detail\"). Default is \"basic\".</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","validate","prefix","{{prefix_super_id}}","services"],"host":["api","superclouds","ooo"],"query":[{"disabled":true,"key":"view","value":"detail"}],"variable":[]}},"response":[{"id":"00309c3e-d838-4295-a3fa-2af7eb51112b","name":"200-Detailed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"super_ids\": [\n        \"bc3671ce-3dad-4f87-b90b-762478c7de5f\",\n        \"5850f8eb-92a5-4058-ba9f-6fbb4be54f50\",\n        \"e5e4b318-d3ca-42dd-b0e3-6f3d3b863dd6\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.superclouds.ooo/v1/validate/prefix/{{prefix_super_id}}/services","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","validate","prefix","{{prefix_super_id}}","services"],"query":[{"key":"view","value":"detail","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"super_id\": \"bc3671ce-3dad-4f87-b90b-762478c7de5f\",\n            \"role\": \"SUPER\"\n        },\n        {\n            \"super_id\": \"e5e4b318-d3ca-42dd-b0e3-6f3d3b863dd6\",\n            \"role\": \"SUPER\"\n        }\n    ],\n    \"errors\": null\n}"},{"id":"980db4ea-9394-4e2e-be76-aa7ad8d41eca","name":"200-Basic","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"super_ids\": [\n        \"bc3671ce-3dad-4f87-b90b-762478c7de5f\",\n        \"5850f8eb-92a5-4058-ba9f-6fbb4be54f50\",\n        \"e5e4b318-d3ca-42dd-b0e3-6f3d3b863dd6\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.superclouds.ooo/v1/validate/prefix/{{prefix_super_id}}/services","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","validate","prefix","{{prefix_super_id}}","services"],"query":[{"key":"view","value":"detail","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": {\n        \"super_ids\": [\n            \"bc3671ce-3dad-4f87-b90b-762478c7de5f\",\n            \"e5e4b318-d3ca-42dd-b0e3-6f3d3b863dd6\"\n        ]\n    },\n    \"errors\": null\n}"}],"_postman_id":"79a75e2d-0f73-4ca5-aece-f19d511d4199"},{"name":"Service Details","id":"608b262d-b726-4839-8bdf-f74416823b6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/services/{{super_id}}","description":"<p>Retrieve details of a specific service by its unique identifier, including the prefixes associated with it.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter:</p>\n<ul>\n<li><strong>super_id</strong> (string): The unique identifier of the service to be retrieved.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","services","{{super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"739fdccc-1934-4493-88ca-3e45713e4b84","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/services/{{super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"prefixes\": [\n                {\n                    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n                    \"name\": \"PROJECT1\",\n                    \"org_id\": \"617d2d899b510a4b4b21a1d9\"\n                }\n            ],\n            \"super_id\": \"234cb566-c609-4f43-a6b7-6357a1e96a37\",\n            \"type\": \"super-drive\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"608b262d-b726-4839-8bdf-f74416823b6b"},{"name":"Update Service Details","id":"954e9e50-4b87-48fb-ba6e-a6866700638e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"prefix_ids\": [\n        \"22ac7ef8-e999-48aa-b449-789ec135a7fb\",\n        \"d7876e86-fe20-4ab3-b0f8-531ef23e46bd\"\n    ],\n    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n    \"type\": \"super-machine\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/services/{{super_id}}","description":"<p>Update the details of a specific service by its unique identifier, including its associated prefixes.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter and a JSON body:</p>\n<ul>\n<li><p><strong>super_id</strong> (string): The unique identifier of the service to be updated.</p>\n</li>\n<li><p><strong>prefix_ids</strong> (array): An array of prefix identifiers to be associated with the service.</p>\n<ul>\n<li><strong>prefix_id</strong> (string): The unique identifier of a prefix.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","services","{{super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"eaf73c1d-f55e-4587-b680-220f651d74b3","name":"200","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"prefix_ids\": [\n        \"22ac7ef8-e999-48aa-b449-789ec135a7fb\",\n        \"d7876e86-fe20-4ab3-b0f8-531ef23e46bd\"\n    ],\n    \"super_id\": \"4bfec645-3d18-4f65-832d-8d54c93f6f5a\",\n    \"type\": \"super-machine\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/services/{{super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Successfully updated\",\n  \"errors\": []\n}"}],"_postman_id":"954e9e50-4b87-48fb-ba6e-a6866700638e"},{"name":"Services by Prefix","id":"c0a96847-c1b2-4b4f-9c17-4c0a96182cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}","services"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"fa2b31d9-de71-4b3b-979d-2a8daa5ea554","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\",\n            \"super_id\": \"acfb883e-7986-4e6e-9861-004f0287d796\",\n            \"type\": \"super-machine\"\n        },\n        {\n            \"org_id\": \"617d2d899b510a4b4b21a1d9\",\n            \"super_id\": \"2e8b74fa-889e-4dbf-b411-558b68a2b96a\",\n            \"type\": \"super-machine\"\n        }\n    ],\n    \"errors\": null\n}\n"}],"_postman_id":"c0a96847-c1b2-4b4f-9c17-4c0a96182cad"},{"name":"Service Details by Prefix","id":"8457df1d-2d4c-4e4d-b593-456814bf78dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services/{{super_id}}","description":"<p>Retrieve the details of a specific service by its unique identifier within a specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters:</p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>super_id</strong> (string): The unique identifier of the service.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}","services","{{super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"45edfa61-fc33-4a5c-8043-c406e42c09e5","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services/{{super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully fetched\",\n    \"data\": {\n        \"org_id\": \"617d2d899b510a4b4b21a1d9\",\n        \"super_id\": \"acfb883e-7986-4e6e-9861-004f0287d796\",\n        \"type\": \"super-machine\"\n    },\n    \"errors\": null\n}"}],"_postman_id":"8457df1d-2d4c-4e4d-b593-456814bf78dd"},{"name":"Create Service by Prefix","id":"f2d37123-86de-4486-ac56-1bd470b9bff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"super_id\": \"39a7168e-37e2-420a-9c1c-457d4bf52778\",\n    \"type\":\"super-machine\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services","description":"<p>Create a new service under a specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter and a JSON body:</p>\n<ul>\n<li><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</li>\n<li><strong>service</strong> (object): The service details to be created.<ul>\n<li><strong>super_id</strong> (string): The unique identifier of the service.</li>\n<li><strong>type</strong> (string): The type of the service.<br />  <code>super-machine</code> and <code>super-drive</code></li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}","services"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"91ca39f6-81ff-4b0e-8862-3890f9784eb7","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"super_id\": \"39a7168e-37e2-420a-9c1c-457d4bf52778\",\n    \"type\":\"super-machine\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully created\"\n}"}],"_postman_id":"f2d37123-86de-4486-ac56-1bd470b9bff4"},{"name":"Delete Service by Prefix","id":"46852404-1409-41d7-b117-029ab704025c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNjQyMzA1MDhkMWQzMDk1OGMxMmU3NjBkIiwib3JnX2lkIjoiIiwiaWF0IjoxNjgwMDIyNzgxLCJleHAiOjE2ODAwMjMzODF9.bqLxQsne5-RjAIyB3ilwHSaJEjQM-lYBPHH7iB2mWc4","type":"text"}],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services/{{super_id}}","description":"<p>Delete a specific service by its unique identifier within a specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters:</p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>super_id</strong> (string): The unique identifier of the service.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","prefixes","{{prefix_super_id}}","services","{{super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"6f5cb7cc-0777-4ff6-9820-ffcfaa37db4e","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":"https://api.superclouds.ooo/v1/prefixes/{{prefix_super_id}}/services/{{super_id}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Successfully deleted\"\n}"}],"_postman_id":"46852404-1409-41d7-b117-029ab704025c"}],"id":"d8f32699-2a3f-4c15-b0de-63e99a80d4e9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"b639edf3-d1f1-48bc-b2cc-64e9370f44ac","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"d01299ff-5313-44e8-91a5-6f20345d468b","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"d8f32699-2a3f-4c15-b0de-63e99a80d4e9","description":""},{"name":"Super Drives","item":[{"name":"Boxes","item":[{"name":"List Boxes","id":"c2451646-6eab-43c9-b8ce-80efabb186c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": [\n        {\n            \"field\": \"is_deleted\",\n            \"operator\": \"nin\",\n            \"terms\": [true]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/boxes","description":"<p>Retrieve a paginated list of boxes within the specified prefix, filtered by provided criteria.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter and a JSON body, with optional query parameters for pagination:</p>\n<ul>\n<li><strong>prefix</strong> (string): The prefix within which the boxes are to be listed.</li>\n</ul>\n<p><strong>Request Body:</strong><br />The body should be a JSON object with the following fields:</p>\n<ul>\n<li><p><strong>super_ids</strong> (array): An array of box super IDs to be included in the results.</p>\n<ul>\n<li><strong>super_id</strong> (string): The unique identifier of a box.</li>\n</ul>\n</li>\n<li><p><strong>filters</strong> (array, optional): An array of filter objects to narrow down the results.</p>\n<ul>\n<li><p><strong>field</strong> (string): The field to filter by.</p>\n</li>\n<li><p><strong>operator</strong> (string): The filter operator (e.g., \"nin\").</p>\n</li>\n<li><p><strong>terms</strong> (array): An array of terms to filter the field by.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><p><strong>size</strong> (optional, integer): The number of boxes to return per page. Default is 10.</p>\n</li>\n<li><p><strong>page</strong> (optional, integer): The page number to retrieve. Default is 0.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","boxes"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"3358758d-79f5-45f2-b3d5-495b150fd818","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"filters\": [\n        {\n            \"field\": \"is_deleted\",\n            \"operator\": \"nin\",\n            \"terms\": [true]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/boxes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"List of services\",\n    \"data\": [\n        {\n            \"super_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n            \"region\": \"us-midwest-1\",\n            \"name\": \"My Box\",\n            \"created_at\": \"2024-03-20 13:17:50.661573 +0530 IST m=+9.230636210\",\n            \"updated_at\": \"2024-04-18 03:58:28.497326 +0530 IST m=+6775.756350209\"\n        },\n        {\n            \"super_id\": \"91b615aa-43bb-4c42-b65e-fdebf65c89f6\",\n            \"region\": \"us-midwest-1\",\n            \"name\": \"My Dev Box\",\n            \"created_at\": \"2024-04-18 03:57:59.141058 +0530 IST m=+6746.399848001\",\n            \"updated_at\": \"2024-04-18 03:58:28.497326 +0530 IST m=+6775.756350209\"\n        }\n    ],\n    \"page\": 0,\n    \"pages\": 1,\n    \"size\": 3,\n    \"status\": 1,\n    \"total\": 3\n}"}],"_postman_id":"c2451646-6eab-43c9-b8ce-80efabb186c0"},{"name":"Create Box","id":"417491b1-211d-43fe-924a-07fb56634ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Box\",\n    \"region\": \"us-central-north-1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box","description":"<p>Create a new box within the specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires a path parameter and a JSON body:</p>\n<ul>\n<li><strong>prefix</strong> (string): The prefix within which the box is to be created.</li>\n</ul>\n<p><strong>Request Body:</strong><br />The body should be a JSON object with the following fields:</p>\n<ul>\n<li><strong>name</strong> (string): The name of the box.</li>\n<li>region (string): Region where box need to be created</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"ac908873-a38d-4f77-b233-1526028ed164","name":"201","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Box\",\n    \"region\": \"us-central-north-1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Successfully created\",\n  \"data\": {\n    \"super_id\": \"d290f1ee-6c54-4b01-90e6-d701748f0851\",\n    \"name\": \"My Box\"\n  }\n}"}],"_postman_id":"417491b1-211d-43fe-924a-07fb56634ffa"},{"name":"Show Box","id":"00446661-4795-49c8-861c-9ce188887e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}","description":"<p>Retrieve the details of a specific box by its unique identifier within the specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters:</p>\n<ul>\n<li><p><strong>prefix</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"5739fd6e-6f31-4a67-8c5b-2e0237a19163","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Successfully fetched\",\n    \"data\": {\n        \"super_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n        \"region\": \"us-midwest-1\",\n        \"name\": \"My Box\",\n        \"is_deleted\": false,\n        \"deleted_at\": \"\",\n        \"created_at\": \"2024-03-20 13:17:50.661573 +0530 IST m=+9.230636210\",\n        \"updated_at\": \"2024-04-18 03:58:28.497326 +0530 IST m=+6775.756350209\"\n    },\n    \"errors\": null\n}"}],"_postman_id":"00446661-4795-49c8-861c-9ce188887e7d"},{"name":"Used Size of the Box","id":"d64fa8a1-9b55-4f32-945e-576ab463c35d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/size","description":"<p>Retrieve the total used size of a specific box within a specified date range.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and query parameters:</p>\n<ul>\n<li><p>prefix_super_id (string): The prefix within which the box is located.</p>\n</li>\n<li><p>box_super_id (string): The unique identifier of the box.</p>\n</li>\n<li><p><strong>start_date</strong> (string): The start date of the range in <code>YYYY-MM-DD</code> format.</p>\n</li>\n<li><p><strong>end_date</strong> (string): The end date of the range in <code>YYYY-MM-DD</code> format.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","size"],"host":["api","superclouds","ooo"],"query":[{"disabled":true,"description":{"content":"<p>The start date of the range in YYYY-MM-DD format.</p>\n","type":"text/plain"},"key":"start_date","value":"2024-04-01"},{"disabled":true,"description":{"content":"<p>The end date of the range in YYYY-MM-DD format.</p>\n","type":"text/plain"},"key":"end_date","value":"2024-04-15"}],"variable":[]}},"response":[{"id":"d854c1a6-3a8f-4bca-97a7-022cb87ad10b","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":{"raw":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/size","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","size"],"query":[{"key":"start_date","value":"2024-04-01","disabled":true},{"key":"end_date","value":"2024-04-15","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Total used size calculated successfully\",\n    \"data\": {\n        \"totalSize\": 427353332\n    },\n    \"errors\": null\n}"}],"_postman_id":"d64fa8a1-9b55-4f32-945e-576ab463c35d"},{"name":"Update Box Details","id":"6c764417-97a1-4638-b660-9ed29fca4bd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\"name\": \"Rename My Box\"}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}","description":"<p>Update the details of a specific box by its unique identifier within the specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body:</p>\n<ul>\n<li><p>prefix_super_id (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n<p><strong>Request Body:</strong><br />The body should be a JSON object with the fields to be updated:</p>\n<ul>\n<li><strong>name</strong> (string, optional): The new name of the box.</li>\n<li><strong>region</strong> (string, optional): The new region of the box.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"bbfe5816-d937-41d7-b142-20b89facc8ac","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\"name\": \"Rename My Box\"}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Successfully updated\"\n}"}],"_postman_id":"6c764417-97a1-4638-b660-9ed29fca4bd3"},{"name":"Move Box To Trash","id":"cdc1e948-7b3a-4ff8-8277-f2933606c335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/trash","description":"<p>Move a specific box to the trash by setting its <code>is_deleted</code> status to <code>true</code> and updating the <code>deleted_at</code> timestamp.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters:</p>\n<ul>\n<li>prefix_super_id (string): The prefix within which the box is located.</li>\n<li>box_super_id (string): The unique identifier of the box.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","trash"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"2407f2be-fe7f-4e3f-a8e9-c0e6a9da04aa","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/trash"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"successfully deleted\"\n}"}],"_postman_id":"cdc1e948-7b3a-4ff8-8277-f2933606c335"},{"name":"Restore Box","id":"6405a85d-7492-416e-b065-9e4daf9a3b32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/restore","description":"<p>Restore a specific box from the trash by setting its <code>is_deleted</code> status to <code>false</code> and updating the <code>updated_at</code> timestamp.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters:</p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","restore"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"80c72b27-6c82-4373-b984-bc708433df29","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/restore"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"successfully restored\"\n}"}],"_postman_id":"6405a85d-7492-416e-b065-9e4daf9a3b32"},{"name":"Delete Box","id":"96699543-467d-4938-ad3d-1ca7499b2761","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}","description":"<p>Permanently delete a specific box by its unique identifier within the specified prefix.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters:</p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"0c9c6870-2f4c-4793-bdba-afd189f82768","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"successfully deleted\"\n}"}],"_postman_id":"96699543-467d-4938-ad3d-1ca7499b2761"}],"id":"6499e45c-193b-4a80-bfc7-96ca925e1fd4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"8582468e-0724-4ccb-9472-0619246c2e82","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"7f0b28b9-250b-422f-8119-79fc337f8e34","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"6499e45c-193b-4a80-bfc7-96ca925e1fd4","description":""},{"name":"Folder","item":[{"name":"Explore Folder","id":"9349c412-03d2-408f-8e1c-27dc23e1b4a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder?path=/&loc=home","description":"<p>Retrieve the contents of a specific folder within a box, including files and direct child folders.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and supports query parameters:</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>prefix_super_id (string): The prefix within which the box is located.</li>\n<li>box_super_id (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><strong>path</strong> (string): The folder path to list contents from (default is \"/\").</li>\n<li><strong>loc</strong> (string): The folder location, either \"home\" or \"trash\" (default is \"home\").</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder"],"host":["api","superclouds","ooo"],"query":[{"key":"path","value":"/"},{"key":"loc","value":"home"}],"variable":[]}},"response":[{"id":"39ca2167-bedc-4cc0-b6ae-c28135335d60","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":{"raw":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder?path=/&loc=home","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder"],"query":[{"key":"path","value":"/"},{"key":"loc","value":"home"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Folder, files, and direct child folders retrieved successfully\",\n    \"data\": {\n        \"super_id\": \"39a7168e-37e2-420a-9c1c-457d4bf52778\",\n        \"name\": \"/\",\n        \"box_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n        \"files\": [\n            {\n                \"super_id\": \"97525f91-edef-43c8-8ac0-864817ac0579\",\n                \"name\": \"myfile.zip\",\n                \"path\": \"\",\n                \"size\": \"374715912\",\n                \"download_link\": \"https://us-central-north-1.super.drive.superclouds.ooo/services/4bfec645-3d18-4f65-832d-8d54c93f6f5a/box/723ac299-403d-4314-8577-084226f7e8bd/file/download?file=/myfile.zip\",\n                \"public_link\": \"\",\n                \"is_published\": false,\n                \"created_at\": \"2024-04-30 18:55:38.717950966 +0000 UTC m=+772.872027015\",\n                \"updated_at\": \"2024-04-30 18:55:38.717950966 +0000 UTC m=+772.872027015\"\n            }\n        ],\n        \"folders\": [\n            {\n                \"super_id\": \"a93541a8-d1c9-4232-8548-94403137b907\",\n                \"name\": \"/myfolder\",\n                \"box_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n                \"is_published\": false,\n                \"public_link\": \"https://us-central-north-1.pub.super.drive.superclouds.ooo/services/published/container/723ac299-403d-4314-8577-084226f7e8bd/access?t=d&f=/myfolder\",\n                \"created_at\": \"2024-04-14 05:14:58.290807 +0530 IST m=+101.020644376\",\n                \"updated_at\": \"2024-04-14 05:14:58.290807 +0530 IST m=+101.020644376\"\n            },\n            {\n                \"super_id\": \"174f0c58-551a-44ad-8585-9bc18805911c\",\n                \"name\": \"/softwares\",\n                \"box_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n                \"is_published\": true,\n                \"public_link\": \"https://us-central-north-1.pub.super.drive.superclouds.ooo/services/published/container/723ac299-403d-4314-8577-084226f7e8bd/access?t=d&f=/softwares\",\n                \"created_at\": \"2024-04-18 04:50:38.482297 +0530 IST m=+9905.720038251\",\n                \"updated_at\": \"2024-04-18 04:50:38.482297 +0530 IST m=+9905.720038251\"\n            }\n        ],\n        \"is_published\": false,\n        \"public_link\": \"https://us-central-north-1.pub.super.drive.superclouds.ooo/services/published/container/723ac299-403d-4314-8577-084226f7e8bd/access?t=d&f=/\",\n        \"parent_public_link\": \"https://us-central-north-1.pub.super.drive.superclouds.ooo/services/published/container/723ac299-403d-4314-8577-084226f7e8bd/access?t=d&f=/\",\n        \"created_at\": \"2024-03-29 14:04:01.306931 +0530 IST m=+39.890258126\",\n        \"updated_at\": \"2024-03-29 14:04:01.306931 +0530 IST m=+39.890258126\"\n    },\n    \"errors\": null\n}"}],"_postman_id":"9349c412-03d2-408f-8e1c-27dc23e1b4a7"},{"name":"Scan Folders","id":"2a2b13e4-06b0-4344-8d99-704c49547f69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/sc?folder=/","description":"<p>Retrieve the list of folders within a specified box.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and supports query parameters:</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><strong>prefix</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><strong>folder</strong> (string): The folder path to scan (default is \"/\")</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","sc"],"host":["api","superclouds","ooo"],"query":[{"key":"folder","value":"/"}],"variable":[]}},"response":[{"id":"d1edef26-41c0-47a4-9a03-565d3cff3665","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/sc?folder=/","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","sc"],"query":[{"key":"folder","value":"/"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Folders retrieved successfully\",\n    \"data\": [\n        {\n            \"super_id\": \"a93541a8-d1c9-4232-8548-94403137b907\",\n            \"name\": \"/myfolder\",\n            \"box_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n            \"is_published\": false,\n            \"public_link\": \"https://us-central-north-1.pub.super.drive.superclouds.ooo/services/published/container/723ac299-403d-4314-8577-084226f7e8bd/access?t=d&f=/myfolder\",\n            \"created_at\": \"2024-04-14 05:14:58.290807 +0530 IST m=+101.020644376\",\n            \"updated_at\": \"2024-04-14 05:14:58.290807 +0530 IST m=+101.020644376\"\n        },\n        {\n            \"super_id\": \"174f0c58-551a-44ad-8585-9bc18805911c\",\n            \"name\": \"/softwares\",\n            \"box_id\": \"723ac299-403d-4314-8577-084226f7e8bd\",\n            \"is_published\": true,\n            \"public_link\": \"https://us-central-north-1.pub.super.drive.superclouds.ooo/services/published/container/723ac299-403d-4314-8577-084226f7e8bd/access?t=d&f=/softwares\",\n            \"created_at\": \"2024-04-18 04:50:38.482297 +0530 IST m=+9905.720038251\",\n            \"updated_at\": \"2024-04-18 04:50:38.482297 +0530 IST m=+9905.720038251\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"2a2b13e4-06b0-4344-8d99-704c49547f69"},{"name":"Create Folder","id":"d9726974-a068-44a4-9b59-ffed2957f53c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"/myfolder/games/installed\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder","description":"<p>Create a new folder within the specified box. Supports creating nested folders.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>prefix_super_id (string): The prefix within which the box is located.</li>\n<li>box_super_id (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>name</strong> (string): The path of the folder to create. Nested folders can be created by specifying the full path.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"1927226e-db04-48d0-aef1-0ccfaa9b3eff","name":"201","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"/myfolder/games/installed\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"successfully created\"\n}"}],"_postman_id":"d9726974-a068-44a4-9b59-ffed2957f53c"},{"name":"Move Folder","id":"53987672-bbcd-4157-b2f4-6581a28989b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"/myfolder/games/installed\",\n    \"destination\": \"/myfolder/games/gl_installed\",\n    \"if_conflict\": \"replace\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/mv","description":"<p>Move a folder within the specified box to a new location.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>prefix_super_id (string): The prefix within which the box is located.</li>\n<li>box_super_id (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>source</strong> (string): The current path of the folder to be moved.</li>\n<li><strong>destination</strong> (string): The new path where the folder should be moved.</li>\n<li><strong>if_conflict</strong> (string, optional): The action to take if a folder with the same name already exists at the destination. Possible values are <code>\"replace\"</code>, <code>\"rename\"</code>, and <code>\"skip\"</code>. Defaults to <code>\"skip\"</code>.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","mv"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"6cab9040-5804-48ac-8d2b-93228b0e75ad","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"source\": \"/myfolder/games/installed\",\n    \"destination\": \"/myfolder/games/gl_installed\",\n    \"if_conflict\": \"replace\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/mv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Folder moved successfully\"\n}"}],"_postman_id":"53987672-bbcd-4157-b2f4-6581a28989b8"},{"name":"Copy Folder","id":"f1525f14-238a-4cf9-acb0-8ab7c2d38137","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"/myfolder/games/installed\",\n    \"destination\": \"/myfolder/games/old_installed\",\n    \"if_conflict\": \"replace\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/cp","description":"<p>Copy a folder within the specified box to a new location.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>source</strong> (string): The current path of the folder to be copied.</li>\n<li><strong>destination</strong> (string): The new path where the folder should be copied.</li>\n<li><strong>if_conflict</strong> (string, optional): The action to take if a folder with the same name already exists at the destination. Possible values are <code>\"replace\"</code>, <code>\"rename\"</code>, and <code>\"skip\"</code>. Defaults to <code>\"skip\"</code>.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","cp"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"a9304a3a-ce84-49fd-a434-60755f6d995c","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"source\": \"/myfolder/games/installed\",\n    \"destination\": \"/myfolder/games/old_installed\",\n    \"if_conflict\": \"replace\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/cp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Folder copied successfully\"\n}"}],"_postman_id":"f1525f14-238a-4cf9-acb0-8ab7c2d38137"},{"name":"Move Folders","id":"bc7653c8-92cc-4623-b936-7d5f8f90c05b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        {\n            \"source\": \"/myfolder/documents\",\n            \"destination\": \"/myfolder/archives/documents\",\n            \"if_conflict\": \"rename\"\n        },\n        {\n            \"source\": \"/myfolder/photos\",\n            \"destination\": \"/myfolder/archives/photos\",\n            \"if_conflict\": \"skip\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/mv","description":"<p>Move multiple folders within the specified box to new locations.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>folders</strong> (array of objects): An array of folder move requests, where each object contains:<ul>\n<li><strong>source</strong> (string): The current path of the folder to be moved.</li>\n<li><strong>destination</strong> (string): The new path where the folder should be moved.</li>\n<li><strong>if_conflict</strong> (string, optional): The action to take if a folder with the same name already exists at the destination. Possible values are <code>\"replace\"</code>, <code>\"rename\"</code>, and <code>\"skip\"</code>. Defaults to <code>\"skip\"</code>.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders","mv"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"fe50ff8d-8dae-43a7-b6ed-c49e4470ee7c","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        {\n            \"source\": \"/myfolder/documents\",\n            \"destination\": \"/myfolder/archives/documents\",\n            \"if_conflict\": \"rename\"\n        },\n        {\n            \"source\": \"/myfolder/photos\",\n            \"destination\": \"/myfolder/archives/photos\",\n            \"if_conflict\": \"skip\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/mv"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Folders moved successfully\",\n  \"errors\": []\n}"}],"_postman_id":"bc7653c8-92cc-4623-b936-7d5f8f90c05b"},{"name":"Copy Folders","id":"d9a95d7b-62e1-4567-88b6-504914564aef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        {\n            \"source\": \"/myfolder/documents\",\n            \"destination\": \"/myfolder/archives/documents\",\n            \"if_conflict\": \"rename\"\n        },\n        {\n            \"source\": \"/myfolder/photos\",\n            \"destination\": \"/myfolder/archives/photos\",\n            \"if_conflict\": \"skip\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/cp","description":"<p>Copy multiple folders within the specified box to new locations.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>folders</strong> (array of objects): An array of folder copy requests, where each object contains:<ul>\n<li><strong>source</strong> (string): The current path of the folder to be copied.</li>\n<li><strong>destination</strong> (string): The new path where the folder should be copied.</li>\n<li><strong>if_conflict</strong> (string, optional): The action to take if a folder with the same name already exists at the destination. Possible values are <code>\"replace\"</code>, <code>\"rename\"</code>, and <code>\"skip\"</code>. Defaults to <code>\"skip\"</code>.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders","cp"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"3f53a4a1-9b82-47f8-9082-17a5b405578f","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        {\n            \"source\": \"/myfolder/documents\",\n            \"destination\": \"/myfolder/archives/documents\",\n            \"if_conflict\": \"rename\"\n        },\n        {\n            \"source\": \"/myfolder/photos\",\n            \"destination\": \"/myfolder/archives/photos\",\n            \"if_conflict\": \"skip\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/cp"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Folder copied successfully\",\n    \"errors\": []\n}"}],"_postman_id":"d9a95d7b-62e1-4567-88b6-504914564aef"},{"name":"Publish Folders","id":"6aa8b0d9-642a-4c5b-8e2f-1d906de15320","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"is_recursive\": true,\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/publish","description":"<p>This endpoint allows users to publish specified folders and their contents (including subfolders and files) within a box, making them accessible to the public.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</li>\n<li><strong>box_super_id</strong> (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>is_recursive</strong> (boolean): If true, the specified folders and all their subfolders and files will be published. If false, only the specified folders and their direct files will be published.</li>\n<li><strong>folders</strong> (array of strings): An array of folder paths to be published.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders","publish"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"79eef0e8-4f73-475f-a0df-8096175923c6","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"is_recursive\": true,\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/publish"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Folders and their files published successfully\"\n}"}],"_postman_id":"6aa8b0d9-642a-4c5b-8e2f-1d906de15320"},{"name":"Unpublish Folders","id":"4fe654d3-95e5-4698-a414-2ec9cfac0c5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"is_recursive\": true,\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/unpublish","description":"<p>This endpoint allows users to unpublish specified folders and their contents (including subfolders and files) within a box, making them private.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires path parameters and a JSON body.</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><strong>prefix_super_id</strong> (string): The prefix within which the box is located.</li>\n<li><strong>box_super_id</strong> (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><p><strong>is_recursive</strong> (boolean): If true, the specified folders and all their subfolders and files will be unpublished. If false, only the specified folders and their direct files will be unpublished.</p>\n</li>\n<li><p><strong>folders</strong> (array of strings): An array of folder paths to be unpublished.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders","unpublish"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"1c4b4d18-e48a-4ac2-83a9-633dd09b59dc","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"is_recursive\": true,\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/unpublish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Folders and their files unpublished successfully\"\n}"}],"_postman_id":"4fe654d3-95e5-4698-a414-2ec9cfac0c5b"},{"name":"Move Folders To Trash","id":"c0afa6b1-401c-444a-862a-605013013cc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/trash","description":"<p>This endpoint allows users to move specified folders and their contents (including subfolders and files) within a box to the trash.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires URL parameters and a JSON body.</p>\n<p><strong>URL Parameters:</strong></p>\n<ul>\n<li><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</li>\n<li><strong>box_super_id</strong> (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>folders</strong> (array of strings): An array of folder paths to be moved to trash.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders","trash"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"ff70840f-fcb1-4354-8e8c-f6289a31bf26","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/trash"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Folders and their contents moved to trash successfully\"\n}"}],"_postman_id":"c0afa6b1-401c-444a-862a-605013013cc2"},{"name":"Restore Folders","id":"2bcda559-8466-4164-b5da-e4e0bb1c1f02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/restore","description":"<p>This endpoint allows users to move specified folders and their contents (including subfolders and files) within a box to the trash.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires URL parameters and a JSON body.</p>\n<p><strong>URL Parameters:</strong></p>\n<ul>\n<li><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</li>\n<li><strong>box_super_id</strong> (string): The unique identifier of the box.</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>folders</strong> (array of strings): An array of folder paths to be moved to trash.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders","restore"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"6edbba7e-03cf-4bac-8282-208d1ee710a0","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders/trash"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Folders and their contents restored from trash successfully\"\n}"}],"_postman_id":"2bcda559-8466-4164-b5da-e4e0bb1c1f02"},{"name":"Delete Folders","id":"185010a6-e24d-4f4f-afb2-16cc7ad06344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders","description":"<p>This endpoint allows users to permanently delete specified folders and their contents (including subfolders and files) within a box that are marked as deleted.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint requires URL parameters and a JSON body.</p>\n<p><strong>URL Parameters:</strong></p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The unique identifier of the prefix.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique identifier of the box.</p>\n</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><strong>folders</strong> (array of strings): An array of folder paths to be permanently deleted.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folders"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"48846c9d-073c-4e58-a1a0-56167df3cd7f","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"folders\": [\n        \"/myfolder/documents\",\n        \"/myfolder/photos\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"successfully deleted\"\n}"}],"_postman_id":"185010a6-e24d-4f4f-afb2-16cc7ad06344"}],"id":"ff5273c5-8b5c-436e-a21a-5bbfacbb3de7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"b24db783-f7d9-42a8-8679-e00f4bcca265","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"7f1bd353-c8bd-4a03-839f-013ff5aba619","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"ff5273c5-8b5c-436e-a21a-5bbfacbb3de7","description":""},{"name":"Files","item":[{"name":"Create Upload Url","id":"50841f18-9bf4-40fa-96f2-c45ddb422c4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"path\": \"/myfolder\",\n    \"name\": \"samplefile.txt\",\n    \"size\": 1024,\n    \"content_type\": \"text/plain\",\n    \"if_conflict\": \"rename\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/rtu","description":"<p>This endpoint generates a URL for uploading a file to a specified box and folder. The URL is valid for a specified duration.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><code>prefix</code> (string): The prefix associated with the service.</p>\n</li>\n<li><p><code>super_id</code> (string): The super ID of the box.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><p><code>path</code> (string): Path where the file will be uploaded.</p>\n</li>\n<li><p><code>name</code> (string): Name of the file.</p>\n</li>\n<li><p><code>size</code> (integer): Size of the file in bytes.</p>\n</li>\n<li><p><code>content_type</code> (string): MIME type of the file.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","rtu"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"10ba2165-c4c9-4cca-9003-c8da15d60c60","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"path\": \"/myfolder\",\n    \"name\": \"samplefile.txt\",\n    \"size\": 1024,\n    \"content_type\": \"text/plain\",\n    \"if_conflict\": \"rename\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/rtu"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"expire_at\": \"2024-05-22T04:00:52.269379+05:30\",\n    \"is_file_exist\": false,\n    \"status\": 1,\n    \"upload_url\": \"http://url..../services/4bfec645-3d18-4f65-832d-8d54c93f6f5a/file/rtu/a9272938-da8b-44cc-8c2f-bf86dc4429d4/upload\"\n}"}],"_postman_id":"50841f18-9bf4-40fa-96f2-c45ddb422c4c"},{"name":"Upload File using Url","id":"bb93f4b0-3f46-40e8-9de5-0f6c07634e1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/Users/ajay/Documents/samples/sample.csv"}]},"url":"{{upload_url_base_name}}/services/4bfec645-3d18-4f65-832d-8d54c93f6f5a/file/rtu/a9272938-da8b-44cc-8c2f-bf86dc4429d4/upload","description":"<p>This endpoint allows users to upload a file using a pre-signed upload URL. The URL is valid for a specified duration and can be used only once.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><code>prefix</code> (string): The prefix associated with the service.</p>\n</li>\n<li><p><code>url_id</code> (string): The unique ID of the upload request.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><code>file</code> (file): The file to be uploaded.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["services","4bfec645-3d18-4f65-832d-8d54c93f6f5a","file","rtu","a9272938-da8b-44cc-8c2f-bf86dc4429d4","upload"],"host":["{{upload_url_base_name}}"],"query":[],"variable":[]}},"response":[{"id":"b7549b1f-0915-4873-9864-6a11399c1e49","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/ajay/Documents/samples/sample.csv"],"value":null}]},"url":"{{upload_url_base_name}}/services/4bfec645-3d18-4f65-832d-8d54c93f6f5a/file/rtu/a9272938-da8b-44cc-8c2f-bf86dc4429d4/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"File uploaded successfully\"\n}"}],"_postman_id":"bb93f4b0-3f46-40e8-9de5-0f6c07634e1f"},{"name":"Download File","id":"071bbbe7-8cee-4ca9-af2b-dac4f7640961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{download_url_base_name}}/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/download?file=/myfile.zip","urlObject":{"path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","download"],"host":["{{download_url_base_name}}"],"query":[{"key":"file","value":"/myfile.zip"}],"variable":[]}},"response":[{"id":"20b62227-2fb1-4baf-999d-32d6450dae65","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"url":{"raw":"{{download_url_base_name}}/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/download?file=/myfile.zip","host":["{{download_url_base_name}}"],"path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","download"],"query":[{"key":"file","value":"/myfile.zip"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"071bbbe7-8cee-4ca9-af2b-dac4f7640961"},{"name":"Move or Copy Files","id":"e0334c3b-acb2-490e-bf4d-d77d1b079725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"if_conflict\": \"rename\",\n  \"path\": \"/source-folder\",\n  \"destination_path\": \"/destination-folder\",\n  \"files\": [\n    {\n      \"name\": \"file1.txt\"\n    },\n    {\n      \"name\": \"file2.jpg\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files?mode=mv","description":"<p>This endpoint allows users to move or copy files from one folder to another within a box.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><code>prefix</code> (string): The prefix associated with the service.</p>\n</li>\n<li><p><code>super_id</code> (string): The unique ID of the box.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Query Parameters:</strong></p>\n<ul>\n<li><code>mode</code> (string, optional): Specifies the action type, either <code>mv</code> (move, default) or <code>cp</code> (copy).</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><p><code>request_type</code> (string): Specifies the type of request, either <code>move</code> or <code>copy</code>.</p>\n</li>\n<li><p><code>if_conflict</code> (string): Specifies the action to take if a conflict occurs, can be \"skip\", \"replace\", or \"rename\". Defaults to \"rename\".</p>\n</li>\n<li><p><code>path</code> (string): The source folder path.</p>\n</li>\n<li><p><code>destination_path</code> (string): The destination folder path.</p>\n</li>\n<li><p><code>box_id</code> (string): The unique ID of the box.</p>\n</li>\n<li><p><code>files</code> (array of objects): List of files to be moved or copied. Each file object should include details like <code>name</code>, <code>size</code>, <code>type</code>, etc.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files"],"host":["api","superclouds","ooo"],"query":[{"key":"mode","value":"mv"}],"variable":[]}},"response":[{"id":"26adc10c-8c40-42de-8def-80a8999354e6","name":"200","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n  \"if_conflict\": \"rename\",\n  \"path\": \"/source-folder\",\n  \"destination_path\": \"/destination-folder\",\n  \"files\": [\n    {\n      \"name\": \"file1.txt\"\n    },\n    {\n      \"name\": \"file2.jpg\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files?mode=mv","protocol":"https","host":["api","superclouds","ooo"],"path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files"],"query":[{"key":"mode","value":"mv","description":"(string, optional): Specifies the action type, either mv (move, default) or cp (copy)."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Files moved successfully\"\n}"}],"_postman_id":"e0334c3b-acb2-490e-bf4d-d77d1b079725"},{"name":"Rename File","id":"befdb72d-ff08-4b02-9a83-b631f50f7d84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"path\": \"/myfolder\",\n    \"name\": \"old_filename.txt\",\n    \"new_name\": \"new_filename.txt\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/rename","description":"<p>This endpoint allows users to rename a file within a specified folder in a box.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><strong>prefix_super_id</strong> (string): The prefix associated with the service.</p>\n</li>\n<li><p><strong>box_super_id</strong> (string): The unique ID of the box.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><code>path</code> (string): The folder path where the file is located.</li>\n<li><code>name</code> (string): The current name of the file.</li>\n<li><code>new_name</code> (string): The new name for the file.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"8f840a4c-8e1c-4972-a7c2-c1e3c00e7827","id":"8f840a4c-8e1c-4972-a7c2-c1e3c00e7827","name":"Files","type":"folder"}},"urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files","rename"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"dd10f867-8c8f-40d5-93b7-434dfc496a44","name":"200","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n    \"path\": \"/myfolder\",\n    \"name\": \"old_filename.txt\",\n    \"new_name\": \"new_filename.txt\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/rename"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"File renamed successfully\"\n}"}],"_postman_id":"befdb72d-ff08-4b02-9a83-b631f50f7d84"},{"name":"Publish File","id":"3f44c767-fcff-4309-b9c7-93059c6428b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"path\": \"/myfolder\",\n  \"files\": [\n    {\"name\": \"file1.txt\"},\n    {\"name\": \"file2.txt\"}\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/publish","description":"<p>This endpoint allows users to publish files within a specified folder in a box.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li>prefix_super_id (string): The prefix associated with the service.</li>\n<li>box_super_id (string): The unique ID of the box.</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><code>path</code> (string): The folder path where the files are located.</li>\n<li><code>files</code> (array of objects): A list of files to be published. Each file object should contain:<ul>\n<li><code>name</code> (string): The name of the file.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files","publish"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"3d010dca-98d7-4cd5-8515-60720e449f9f","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n  \"path\": \"/myfolder\",\n  \"files\": [\n    {\"name\": \"file1.txt\"},\n    {\"name\": \"file2.txt\"}\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/publish"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Files successfully published\"\n}"}],"_postman_id":"3f44c767-fcff-4309-b9c7-93059c6428b6"},{"name":"Unpublish File","id":"ebd6326a-37ac-4ca0-87f9-9a4018a3d879","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"path\": \"/myfolder\",\n  \"files\": [\n    {\"name\": \"file1.txt\"},\n    {\"name\": \"file2.txt\"}\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/unpublish","description":"<p>This endpoint allows users to unpublish files within a specified folder in a box.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><code>prefix</code> (string): The prefix associated with the service.</p>\n</li>\n<li><p><code>super_id</code> (string): The unique ID of the box.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><p><code>path</code> (string): The folder path where the files are located.</p>\n</li>\n<li><p><code>files</code> (array of objects): A list of files to be unpublished. Each file object should contain:</p>\n<ul>\n<li><code>name</code> (string): The name of the file.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files","unpublish"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"2e73892d-94c1-4356-8371-bf51cdcd1412","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n  \"path\": \"/myfolder\",\n  \"files\": [\n    {\"name\": \"file1.txt\"},\n    {\"name\": \"file2.txt\"}\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/unpublish"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"Files successfully unpublished\"\n}"}],"_postman_id":"ebd6326a-37ac-4ca0-87f9-9a4018a3d879"},{"name":"Move Files To Trash","id":"bbe337e2-3bfd-486f-bf21-351cb98a348c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"path\": \"/myfolder\",\n  \"files\": [\n    {\"name\": \"file1.txt\"},\n    {\"name\": \"file2.txt\"}\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/trash","description":"<p>This endpoint allows users to move files within a specified folder in a box to trash.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><code>prefix</code> (string): The prefix associated with the service.</p>\n</li>\n<li><p><code>super_id</code> (string): The unique ID of the box.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><p><code>path</code> (string): The folder path where the files are located.</p>\n</li>\n<li><p><code>files</code> (array of objects): A list of files to be moved to trash. Each file object should contain:</p>\n<ul>\n<li><code>name</code> (string): The name of the file.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files","trash"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"744baba6-a1dd-428e-a2f3-c6e5e1ec6f0d","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n  \"path\": \"/myfolder\",\n  \"files\": [\n    {\"name\": \"file1.txt\"},\n    {\"name\": \"file2.txt\"}\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/trash"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Files moved to trash successfully\"\n}"}],"_postman_id":"bbe337e2-3bfd-486f-bf21-351cb98a348c"},{"name":"Restore Files","id":"d67984ff-ddc7-4023-a411-e2e433414ff6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"files\": [\n        {\n            \"name\": \"/myfolder/file1.txt\"\n        },\n        {\n            \"name\": \"/myfolder/file2.txt\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/restore","description":"<p>This endpoint allows users to restore files from the trash within a specified folder in a box.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>Path Parameters:</strong></p>\n<ul>\n<li><p><code>prefix</code> (string): The prefix associated with the service.</p>\n</li>\n<li><p><code>super_id</code> (string): The unique ID of the box.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><code>files</code> (array of strings): A list of file paths to be restored.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"8f840a4c-8e1c-4972-a7c2-c1e3c00e7827","id":"8f840a4c-8e1c-4972-a7c2-c1e3c00e7827","name":"Files","type":"folder"}},"urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files","restore"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"8d9ba7de-4212-4ec3-902f-eb4434f7e268","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n  \"files\": [\n    \"/myfolder/file1.txt\",\n    \"/myfolder/file2.txt\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files/restore"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Files restored from trash successfully\"\n}"}],"_postman_id":"d67984ff-ddc7-4023-a411-e2e433414ff6"},{"name":"Delete Files","id":"b05f2472-b122-40f5-888d-95b9d2500031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n  \"files\": [\n    \"/myfolder/file1.txt\",\n    \"/myfolder/file2.txt\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files","description":"<p>This endpoint allows users to permanently delete files from a specified folder in a box.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><strong>Path Parameters:</strong><ul>\n<li><code>prefix_super_id</code> (string): The prefix associated with the service.</li>\n<li><code>box_super_id</code> (string): The unique ID of the box.</li>\n</ul>\n</li>\n<li><strong>Request Body:</strong><ul>\n<li><code>files</code> (array of strings): A list of file paths to be permanently deleted.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","super-drives","services","{{prefix_super_id}}","box","{{box_super_id}}","folder","files"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"7adb8a0b-432c-467e-bab4-3c7b5fcef531","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"{\n  \"files\": [\n    \"/myfolder/file1.txt\",\n    \"/myfolder/file2.txt\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/services/{{prefix_super_id}}/box/{{box_super_id}}/folder/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 1,\n  \"message\": \"Files permanently deleted successfully\"\n}"}],"_postman_id":"b05f2472-b122-40f5-888d-95b9d2500031"}],"id":"8f840a4c-8e1c-4972-a7c2-c1e3c00e7827","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"439eadf0-a5bf-4837-8690-722ccfac99ef","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"4270723c-5708-40a0-b258-2f14cd211f97","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"8f840a4c-8e1c-4972-a7c2-c1e3c00e7827","description":""},{"name":"Regions","item":[{"name":"List Regions","id":"ec16aee4-66a8-46be-addd-910169d90c8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.superclouds.ooo/v1/super-drives/regions","description":"<p>This endpoint retrieves a list of all available regions.</p>\n<p><strong>Request Parameters:</strong><br />This endpoint does not require any URL parameters or request body.</p>\n","urlObject":{"protocol":"https","path":["v1","super-drives","regions"],"host":["api","superclouds","ooo"],"query":[],"variable":[]}},"response":[{"id":"e243ef5a-811f-40e5-a6e3-8ca14496a54b","name":"200","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsI....alWkxyMM"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.superclouds.ooo/v1/super-drives/regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"successfully listed\",\n    \"data\": [\n        {\n            \"id\": \"664d01a89a65dc0a984ded56\",\n            \"super_id\": \"83c496a5-9d61-4012-b776-57c049ffba4d\",\n            \"region\": \"us-midwest-1\",\n            \"continent\": \"North America\",\n            \"country\": \"United States\",\n            \"country_code\": \"US\",\n            \"city_code\": \"ORD\",\n            \"city\": \"Chicago\",\n            \"latitude\": 39.0997,\n            \"longitude\": 94.5786,\n            \"state\": \"Illinois\",\n            \"state_code\": \"IL\",\n            \"time_zone\": \"America/Chicago\",\n            \"time_zone_abbr\": \"CT\",\n            \"tier\": 0\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"ec16aee4-66a8-46be-addd-910169d90c8b"}],"id":"09162b42-5715-4c90-8eca-ed0632a17fb8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9fa5fc67-1ca4-4b57-a0bd-31035bec9d9f","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"db7879bb-b77a-4052-83bf-9bf3d90e7caa","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"09162b42-5715-4c90-8eca-ed0632a17fb8","description":""}],"id":"6d220a50-1e1d-4811-a448-d6015439271e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"db77f961-cf40-40d6-b471-3a03c175b551","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"1767d406-41ad-4cea-b5e9-11ce284259cc","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"6d220a50-1e1d-4811-a448-d6015439271e","description":""}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"109e6834-3441-467f-a19f-4d68ba8864e0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"31aeffcc-32dc-4fc4-8216-2ccf10d9b2a9","type":"text/javascript","exec":[""]}}],"variable":[{"key":"access_token","value":"","type":"string"},{"key":"login_token","value":"","type":"string"}]}