{"info":{"_postman_id":"4dfb1801-2e14-4e86-9f8f-f5e9a8195462","name":"Delta Network API","description":"<html><head></head><body><p>Delta Network is a platform to reduce ping and remove internet restrictions. Connect to different locations and overcome limitations around the world.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>To use the Delta Network API you should do the following:</p>\n<ul>\n<li><p>Start <a href=\"https://t.me/DeltaNwBot\">DeltaNWBot</a></p>\n</li>\n<li><p>Generate an API key</p>\n</li>\n</ul>\n<p>The api key must be sent in the header in all requests.</p>\n<h1 id=\"api-documentation\">API Documentation</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"API Documentation","slug":"api-documentation"}],"owner":"30899868","collectionId":"4dfb1801-2e14-4e86-9f8f-f5e9a8195462","publishedId":"2s9YXe63iE","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-11-02T14:38:07.000Z"},"item":[{"name":"Account","item":[{"name":"Get account information","id":"de7ceec1-465e-48bd-b96f-333cdf093ffe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/account","description":"<p>Returns account information.</p>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li>userid ==&gt; unique identifier for each account</li>\n<li>language ==&gt; current active account language</li>\n<li>registeryDate ==&gt; registration date in unix time</li>\n<li>plan ==&gt; the current active plan of the account</li>\n<li>planValidity ==&gt; expiry date of the plan in unix time (zero means unlimited)</li>\n<li>remainingTrialService ==&gt; number of free trial services remaining</li>\n<li>services ==&gt; total number of services</li>\n<li>activeServices ==&gt; number of active services</li>\n<li>balance ==&gt; total account balance in usd</li>\n<li>referrals ==&gt; number of referrals so far</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["account"],"host":["https://api.deltanetwork.one/v1"],"query":[],"variable":[]}},"response":[{"id":"867dc4f5-2e17-46ba-a93f-2497b25e811d","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 16 Nov 2023 07:21:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"result\": {\n        \"userid\": 123456789,\n        \"language\": \"fa\",\n        \"registeryDate\": 1686514587,\n        \"plan\": \"basic\",\n        \"planValidity\": 0,\n        \"remainingTrialService\": 0,\n        \"balance\": 0.927,\n        \"services\": 138,\n        \"activeServices\": 2,\n        \"referrals\": 1\n    }\n}"}],"_postman_id":"de7ceec1-465e-48bd-b96f-333cdf093ffe"}],"id":"87eb2f86-79d5-4c51-8bed-0de4db36ca1c","_postman_id":"87eb2f86-79d5-4c51-8bed-0de4db36ca1c","description":""},{"name":"Services","item":[{"name":"Create new service","id":"725462f0-83dd-40bf-91da-f1fba7f1788c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/createService?mode=deltaPlus&duration=86400&volume=1073741824&connectionType=multiLocation","description":"<p>Creates a new service with the passed parameters.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>mode (required) ==&gt; Service mode (code or name)</p>\n<ul>\n<li><p>1 or deltaPlus for delta+ service</p>\n</li>\n<li><p>2 or deltaMax for deltaMax Service</p>\n</li>\n</ul>\n</li>\n<li><p>connectionType ==&gt; singleLocation or multiLocation (required)</p>\n</li>\n<li><p>location ==&gt; alpha-2 code, e.g. \"de\" for germany, only for single location connection type</p>\n</li>\n<li><p>duration (required) ==&gt; Service duration in seconds, the desired duration must be available in the desired service.</p>\n</li>\n<li><p>volume (only for delta+, required) ==&gt; Service volume in bytes.</p>\n</li>\n<li><p>name (optional) ==&gt; Any name with the following conditions:</p>\n<ul>\n<li><p>can start with @#$ and english alphanumeric.</p>\n</li>\n<li><p>can use @#$_-/ and spaces between characters.</p>\n</li>\n<li><p>end of name cannot contain @#$_-/ and spaces.</p>\n</li>\n<li><p>length of the name should not exceed 11 characters.</p>\n</li>\n</ul>\n</li>\n<li><p>extraUser (optional) ==&gt; If you need extra user</p>\n</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>code ==&gt; Unique code assigned to the service</p>\n</li>\n<li><p>name ==&gt; If a name is passed for the service, its value is returned; otherwise, null is returned</p>\n</li>\n<li><p>type ==&gt; Normal or trial service</p>\n</li>\n<li><p>mode ==&gt; Service mode</p>\n</li>\n<li><p>connectionType ==&gt; singleLocation or multiLocation service</p>\n</li>\n<li><p>location ==&gt; Location alpha-2 code, e.g. \"de\" for germany, only for single location connection type</p>\n</li>\n<li><p>duration ==&gt; Service duration in seconds</p>\n</li>\n<li><p>expiry ==&gt; Service expiration date in unix time</p>\n</li>\n<li><p>volume (only for delta+) ==&gt; Service volume in bytes</p>\n</li>\n<li><p>users (only for deltaMax) ==&gt; The total number of service users</p>\n<ul>\n<li>The first number is the number of default users and the second number is the number of extra users of the service.</li>\n</ul>\n</li>\n<li><p>threshold (only for deltaMax) ==&gt; Fair use threshold in bytes</p>\n</li>\n<li><p>price ==&gt; Service price in usd</p>\n</li>\n<li><p>sub ==&gt; Service subscription link</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>300</td>\n<td>Insufficient balance.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key is required.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>Invalid API key.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service mode is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>Invalid service mode.</td>\n</tr>\n<tr>\n<td>422</td>\n<td>This service is unavailable.</td>\n</tr>\n<tr>\n<td>423</td>\n<td>No tariff was found for this service.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Connection type is required.</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Invalid connection type.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Duration is required.</td>\n</tr>\n<tr>\n<td>441</td>\n<td>Invalid duration.</td>\n</tr>\n<tr>\n<td>450</td>\n<td>Location is required.</td>\n</tr>\n<tr>\n<td>451</td>\n<td>Invalid location.</td>\n</tr>\n<tr>\n<td>460</td>\n<td>Volume is required.</td>\n</tr>\n<tr>\n<td>461</td>\n<td>The minimum order is 1073741824 bytes.</td>\n</tr>\n<tr>\n<td>471</td>\n<td>Name cannot be longer than 11 characters.</td>\n</tr>\n<tr>\n<td>472</td>\n<td>The input name doesn't match the naming rules.</td>\n</tr>\n<tr>\n<td>481</td>\n<td>Invalid extra user value.</td>\n</tr>\n<tr>\n<td>482</td>\n<td>The minimum extra user is 1 user.</td>\n</tr>\n<tr>\n<td>490</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Internal error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["createService"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"mode","value":"deltaPlus"},{"disabled":true,"key":"location","value":"de"},{"key":"duration","value":"86400"},{"key":"volume","value":"1073741824"},{"disabled":true,"key":"extraUser","value":"1"},{"key":"connectionType","value":"multiLocation"}],"variable":[]}},"response":[{"id":"c168831d-a5f1-4bf0-8ebd-1aae9fa00081","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/createService?mode=delta&location=de&duration=86400&volume=1073741824&extraUser=1","host":["https://api.deltanetwork.one/v1"],"path":["createService"],"query":[{"key":"mode","value":"delta"},{"key":"location","value":"de"},{"key":"duration","value":"86400"},{"key":"volume","value":"1073741824"},{"key":"extraUser","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 15 Jul 2024 08:11:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"code\": 14223331,\n        \"name\": null,\n        \"type\": \"normal\",\n        \"mode\": \"delta\",\n        \"location\": \"de\",\n        \"duration\": 86400,\n        \"expiry\": 1721117514,\n        \"volume\": 1073741824,\n        \"users\": \"2 + 1\",\n        \"price\": 0.161,\n        \"sub\": \"https://deltanw.top/?secret=2GQ6%2BY9IT%2F2uuPnUInYyrd6Py%2FcVXNcXb0zfwSSgwHEctU6RmjRqBVW%2BiEz%2BfA8fTQ%3D%3D\"\n    }\n}"}],"_postman_id":"725462f0-83dd-40bf-91da-f1fba7f1788c"},{"name":"Request trial service","id":"28359bf9-7160-4772-a509-ece187b6bfe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/trial?mode=1","description":"<p>If you have enough quota, you get a trial multi location service.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>mode (required) ==&gt; Service mode (code or name)</p>\n<ul>\n<li><p>1 or deltaPlus for delta+ service</p>\n</li>\n<li><p>2 or deltaMax for deltaMax Service</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>code ==&gt; unique code assigned to the service</p>\n</li>\n<li><p>type ==&gt; service type</p>\n</li>\n<li><p>mode ==&gt; service mode</p>\n</li>\n<li><p>location ==&gt; multiLaction</p>\n</li>\n<li><p>duration ==&gt; service duration in seconds</p>\n</li>\n<li><p>expiry ==&gt; service expiration date in unix time</p>\n</li>\n<li><p>volume ==&gt; service volume in bytes</p>\n</li>\n<li><p>sub ==&gt; service subscription link</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>301</td>\n<td>You have no quota.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service mode is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>Invalid service mode.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Trial service is currently unavailable.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>450</td>\n<td>Error creating service.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["trial"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"mode","value":"1"}],"variable":[]}},"response":[{"id":"6bd6803d-0480-4c19-ab73-8c45be661138","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/trial?mode=1","protocol":"https","host":["api","deltanetwork","one"],"path":["v1","trial"],"query":[{"key":"mode","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 Feb 2026 20:56:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"code\": 784125351,\n        \"type\": \"trial\",\n        \"mode\": \"deltaPlus\",\n        \"location\": \"multiLocation\",\n        \"duration\": 259200,\n        \"expiry\": 1771016191,\n        \"volume\": 1073741824,\n        \"sub\": \"https://deltanw.top/?secret=2GQ605pNefmrrcqQZEEgo%2BWEjMsCaKsXb0zfwSSgwHEctU6RmjRqBVW4hEr9fQkfSYI%3D\"\n    }\n}"}],"_postman_id":"28359bf9-7160-4772-a509-ece187b6bfe0"},{"name":"Current capacity of servers","id":"7f43b1d1-a1d0-46a4-b210-13e9a645f109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/capacity?mode=1","description":"<p>Returns the current capacity of the locations of a service.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>mode (required) ==&gt; service mode (code or name)</p>\n<ul>\n<li><p>0 or delta for delta service</p>\n</li>\n<li><p>1 or delta+ for delta+ service</p>\n</li>\n<li><p>2 or deltaMax for deltaMax service</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Output values are in percentages.</p>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service mode is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>Invalid service mode.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["capacity"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"mode","value":"1"}],"variable":[]}},"response":[{"id":"130f9b64-d58a-4e65-a46a-3eb1b653f768","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/capacity?mode=1","host":["https://api.deltanetwork.one/v1"],"path":["capacity"],"query":[{"key":"mode","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 09:38:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"tr\": 16.67,\n        \"us\": 75,\n        \"de\": 0,\n        \"fi\": 87.5,\n        \"nl\": 13.33,\n        \"gb\": 73.33,\n        \"se\": 88.33\n    }\n}"}],"_postman_id":"7f43b1d1-a1d0-46a4-b210-13e9a645f109"},{"name":"Available locations","id":"e37d0c14-f501-4f5a-88bf-24711c170f25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/locations?mode=2","description":"<p>Returns all available locations for a service.</p>\n<p>Query parameters:</p>\n<ul>\n<li>mode (required) ==&gt; service mode (code or name)<ul>\n<li>0 or delta for delta service</li>\n<li>1 or deltaPlus for delta+ service</li>\n<li>2 or deltaMax for deltaMax service</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service mode is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>Invalid service mode.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["locations"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"mode","value":"2"}],"variable":[]}},"response":[{"id":"7ceaf7d6-2194-4364-b9cb-695d4596d0f0","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/locations?mode=1","host":["https://api.deltanetwork.one/v1"],"path":["locations"],"query":[{"key":"mode","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 09:05:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"code\": [\n            \"tr\",\n            \"us\",\n            \"de\",\n            \"fi\",\n            \"nl\",\n            \"gb\",\n            \"se\"\n        ]\n    }\n}"}],"_postman_id":"e37d0c14-f501-4f5a-88bf-24711c170f25"},{"name":"Get services","id":"9e57f8e9-50ec-45de-a444-90e0f248d24a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/services","description":"<p>The list of available services in the account, including active, expired and overflow services.<br />Canceled, deleted and inactive services are not shown in this list.</p>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>code ==&gt; unique code assigned to the service</p>\n</li>\n<li><p>name ==&gt; If a name is selected for the service, its value is returned; otherwise, null is returned</p>\n</li>\n<li><p>status ==&gt; service status, can be one of the following</p>\n<ul>\n<li>active ==&gt; the service is active and usable</li>\n<li>expired ==&gt; the service has expired</li>\n<li>overflow ==&gt; the volume of service has ended or exceeded the fair consumption threshold</li>\n</ul>\n</li>\n<li><p>type ==&gt; normal or trial service</p>\n</li>\n<li><p>mode ==&gt; service mode</p>\n</li>\n<li><p>location ==&gt; location alpha-2 code, e.g. \"de\" for germany</p>\n</li>\n<li><p>duration ==&gt; service duration in seconds</p>\n</li>\n<li><p>expiry ==&gt; service expiration date in unix time</p>\n</li>\n<li><p>volume ==&gt; service volume in bytes (only for delta, delta+)</p>\n</li>\n<li><p>threshold ==&gt; fair use threshold in bytes (only for deltaMax)</p>\n</li>\n<li><p>consumed ==&gt; consumed volume of the service in bytes</p>\n</li>\n<li><p>remaining ==&gt; remaining volume of the service in bytes (only for delta, delta+)</p>\n</li>\n<li><p>reserve ==&gt; If there is a reserve package for deltaMax services, it shows its information as follows:</p>\n<ul>\n<li>time ==&gt; reserve package activation time in unix time</li>\n<li>duration ==&gt; reserve package duration in seconds</li>\n<li>threshold ==&gt; reserve package fair use threshold in bytes</li>\n</ul>\n</li>\n<li><p>users (only for delta, deltaMax) ==&gt; The total number of service users</p>\n<ul>\n<li>The first number is the number of default users and the second number is the number of extra users of the service.</li>\n</ul>\n</li>\n<li><p>serviceValue ==&gt; service value in usd</p>\n</li>\n<li><p>sub ==&gt; service normal subscription link</p>\n</li>\n<li><p>resolvedSub ==&gt; service resolved subscription link</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["services"],"host":["https://api.deltanetwork.one/v1"],"query":[],"variable":[]}},"response":[{"id":"817eac27-6ee0-46db-8a07-4fff45d0f1fd","name":"Get services","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 15 Jul 2024 08:13:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": [\n        {\n            \"code\": 26823027,\n            \"name\": null,\n            \"status\": \"expired\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"deltaPlus\",\n            \"location\": \"us\",\n            \"duration\": 86400,\n            \"expiry\": 1720955353,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"serviceValue\": \"0.00000\"\n        },\n        {\n            \"code\": 36123028,\n            \"name\": null,\n            \"status\": \"expired\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"it\",\n            \"duration\": 86400,\n            \"expiry\": 1720955683,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 1\",\n            \"serviceValue\": \"0.00000\"\n        },\n        {\n            \"code\": 90923066,\n            \"name\": null,\n            \"status\": \"expired\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"it\",\n            \"duration\": 86400,\n            \"expiry\": 1720966470,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 0\",\n            \"serviceValue\": \"0.00000\"\n        },\n        {\n            \"code\": 98623218,\n            \"name\": null,\n            \"status\": \"active\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"de\",\n            \"duration\": 86400,\n            \"expiry\": 1721051383,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 1\",\n            \"serviceValue\": \"0.06138\",\n            \"sub\": \"https://deltanw.top/?secret=2GQ6xbJLbdzNsM6VM2gHgtHZjPBwddkXb0zfwSSgwHEctU6RmjRqBVW2hEj%2BfA4dRA%3D%3D\",\n            \"resolvedSub\": \"https://deltanw.top/?secret=2GQ6xbJLbdzNsM6VM2gHgtHZjPBwddkXb0zfwSSgwHEctU6RmjRqBVW2hEj%2BfA4dRA%3D%3D&resolve=true\"\n        },\n        {\n            \"code\": 44223219,\n            \"name\": null,\n            \"status\": \"active\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"de\",\n            \"duration\": 86400,\n            \"expiry\": 1721051491,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 0\",\n            \"serviceValue\": \"0.03100\",\n            \"sub\": \"https://deltanw.top/?secret=2GQ657FBev325d%2BVZncevIW7%2Bah2Y%2FgXb0zfwSSgwHEctU6RmjRqBVW7iEz%2BfA4dRQ%3D%3D\",\n            \"resolvedSub\": \"https://deltanw.top/?secret=2GQ657FBev325d%2BVZncevIW7%2Bah2Y%2FgXb0zfwSSgwHEctU6RmjRqBVW7iEz%2BfA4dRQ%3D%3D&resolve=true\"\n        },\n        {\n            \"code\": 22123220,\n            \"name\": null,\n            \"status\": \"active\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"deltaPlus\",\n            \"location\": \"de\",\n            \"duration\": 86400,\n            \"expiry\": 1721051528,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"serviceValue\": \"0.04200\",\n            \"sub\": \"https://deltanw.top/?secret=2GQ618lvXdrK5fjsCkAHudKaiaYTYfMXb0zfwSSgwHEctU6RmjRqBVW9jk%2F%2BfA4eTA%3D%3D\",\n            \"resolvedSub\": \"https://deltanw.top/?secret=2GQ618lvXdrK5fjsCkAHudKaiaYTYfMXb0zfwSSgwHEctU6RmjRqBVW9jk%2F%2BfA4eTA%3D%3D&resolve=true\"\n        },\n        {\n            \"code\": 53223242,\n            \"name\": null,\n            \"status\": \"active\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"de\",\n            \"duration\": 86400,\n            \"expiry\": 1721057956,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 1\",\n            \"serviceValue\": \"0.07127\",\n            \"sub\": \"https://deltanw.top/?secret=2GQ6wrVWUtTF6fvQHFwb34K998UZYugXb0zfwSSgwHEctU6RmjRqBVW6j0z%2BfA4YTg%3D%3D\",\n            \"resolvedSub\": \"https://deltanw.top/?secret=2GQ6wrVWUtTF6fvQHFwb34K998UZYugXb0zfwSSgwHEctU6RmjRqBVW6j0z%2BfA4YTg%3D%3D&resolve=true\"\n        },\n        {\n            \"code\": 12523244,\n            \"name\": null,\n            \"status\": \"active\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"de\",\n            \"duration\": 86400,\n            \"expiry\": 1721058217,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 3\",\n            \"serviceValue\": \"0.15297\",\n            \"sub\": \"https://deltanw.top/?secret=2GQ68qhWJP3umdeUNUcUnObb%2F%2F4pNeYXb0zfwSSgwHEctU6RmjRqBVW%2Bjkv%2BfA4YSA%3D%3D\",\n            \"resolvedSub\": \"https://deltanw.top/?secret=2GQ68qhWJP3umdeUNUcUnObb%2F%2F4pNeYXb0zfwSSgwHEctU6RmjRqBVW%2Bjkv%2BfA4YSA%3D%3D&resolve=true\"\n        },\n        {\n            \"code\": 14223331,\n            \"name\": null,\n            \"status\": \"active\",\n            \"sleep\": false,\n            \"type\": \"normal\",\n            \"mode\": \"delta\",\n            \"location\": \"de\",\n            \"duration\": 86400,\n            \"expiry\": 1721117514,\n            \"volume\": 1073741824,\n            \"consumed\": 0,\n            \"remaining\": 1073741824,\n            \"users\": \"2 + 1\",\n            \"serviceValue\": \"0.16088\",\n            \"sub\": \"https://deltanw.top/?secret=2GQ6%2BY9IT%2F2uuPnUInYyrd6Py%2FcVXNcXb0zfwSSgwHEctU6RmjRqBVW%2BiEz%2BfA8fTQ%3D%3D\",\n            \"resolvedSub\": \"https://deltanw.top/?secret=2GQ6%2BY9IT%2F2uuPnUInYyrd6Py%2FcVXNcXb0zfwSSgwHEctU6RmjRqBVW%2BiEz%2BfA8fTQ%3D%3D&resolve=true\"\n        }\n    ]\n}"}],"_postman_id":"9e57f8e9-50ec-45de-a444-90e0f248d24a"},{"name":"Get service information","id":"ed4bb369-8431-4fde-b573-1513c05886bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/info?code=12523244","description":"<p>Returns the desired service information.</p>\n<p>Query parameters:</p>\n<ul>\n<li>code (required) ==&gt; Unique service code</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>code ==&gt; Unique code assigned to the service</p>\n</li>\n<li><p>name ==&gt; If a name is selected for the service, its value is returned; otherwise, null is returned</p>\n</li>\n<li><p>status ==&gt; Service status, can be one of the following</p>\n<ul>\n<li><p>active ==&gt; The service is active and usable</p>\n</li>\n<li><p>expired ==&gt; The service has expired</p>\n</li>\n<li><p>overflow ==&gt; The volume of service has ended or exceeded the fair consumption threshold</p>\n</li>\n<li><p>canceled ==&gt; The service has been canceled and is unmanageable</p>\n</li>\n<li><p>deleted ==&gt; The service has been removed and is unmanageable</p>\n</li>\n<li><p>inactive ==&gt; The service is inactive and unmanageable</p>\n</li>\n</ul>\n</li>\n<li><p>type ==&gt; Normal or trial service</p>\n</li>\n<li><p>mode ==&gt; Service mode</p>\n</li>\n<li><p>location ==&gt; Location alpha-2 code, e.g. \"de\" for germany</p>\n</li>\n<li><p>duration ==&gt; Service duration in seconds</p>\n</li>\n<li><p>expiry ==&gt; Service expiration date in unix time</p>\n</li>\n<li><p>volume ==&gt; Service volume in bytes (only for delta, delta+)</p>\n</li>\n<li><p>threshold ==&gt; Fair use threshold in bytes (only for deltaMax)</p>\n</li>\n<li><p>consumed ==&gt; Consumed volume of the service in bytes</p>\n</li>\n<li><p>remaining ==&gt; Remaining volume of the service in bytes (only for delta, delta+)</p>\n</li>\n<li><p>reserve ==&gt; If there is a reserve package for deltaMax services, it shows its information as follows:</p>\n<ul>\n<li><p>time ==&gt; Reserve package activation time in unix time</p>\n</li>\n<li><p>duration ==&gt; Reserve package duration in seconds</p>\n</li>\n<li><p>threshold ==&gt; Reserve package fair use threshold in bytes</p>\n</li>\n</ul>\n</li>\n<li><p>users (only for delta, deltaMax) ==&gt; The total number of service users</p>\n<ul>\n<li>The first number is the number of default users and the second number is the number of extra users of the service.</li>\n</ul>\n</li>\n<li><p>serviceValue ==&gt; Service value in usd</p>\n</li>\n<li><p>sub ==&gt; Service normal subscription link</p>\n</li>\n<li><p>resolvedSub ==&gt; Service resolved subscription link</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No service was found with this code.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["info"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"12523244"}],"variable":[]}},"response":[{"id":"2b7e5b80-e716-4802-a778-ae856d180ab7","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/info?code=12523244","host":["https://api.deltanetwork.one/v1"],"path":["info"],"query":[{"key":"code","value":"12523244"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 15 Jul 2024 08:12:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"code\": 12523244,\n        \"name\": null,\n        \"status\": \"active\",\n        \"sleep\": false,\n        \"type\": \"normal\",\n        \"mode\": \"delta\",\n        \"location\": \"de\",\n        \"duration\": 86400,\n        \"expiry\": 1721058217,\n        \"volume\": 1073741824,\n        \"consumed\": 0,\n        \"remaining\": 1073741824,\n        \"users\": \"2 + 3\",\n        \"serviceValue\": \"0.15317\",\n        \"sub\": \"https://deltanw.top/?secret=2GQ68qhWJP3umdeUNUcUnObb%2F%2F4pNeYXb0zfwSSgwHEctU6RmjRqBVW%2Bjkv%2BfA4YSA%3D%3D\",\n        \"resolvedSub\": \"https://deltanw.top/?secret=2GQ68qhWJP3umdeUNUcUnObb%2F%2F4pNeYXb0zfwSSgwHEctU6RmjRqBVW%2Bjkv%2BfA4YSA%3D%3D&resolve=true\"\n    }\n}"}],"_postman_id":"ed4bb369-8431-4fde-b573-1513c05886bc"},{"name":"Change service link","id":"02794383-9b6f-4441-b58d-0f675b6e1bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/changeLink?code=7592384","description":"<p>If change link is allowed, it changes the service subscription link.</p>\n<p>Query parameters:</p>\n<ul>\n<li>code (required) ==&gt; unique service code</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li>newSub==&gt; new subscription link for the service</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501-502</td>\n<td>Internal error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["changeLink"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"7592384"}],"variable":[]}},"response":[{"id":"1d5f2cd1-1505-4a1f-a468-30b056598168","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanw.site/v1/changeLink?code=7592384","protocol":"https","host":["api","deltanw","site"],"path":["v1","changeLink"],"query":[{"key":"code","value":"7592384"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 15:24:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"newSub\": \"https://deltanw.top/?secret=5FCCKyfwN42RYZJEb0oT6noK8ARUk%2Bp3kj4ckheCdZJPgo4XyQ1dDsc\"\n    }\n}"}],"_postman_id":"02794383-9b6f-4441-b58d-0f675b6e1bbb"},{"name":"Change service location","id":"d209e9a2-e8c2-436d-a933-4c8dcf09f0de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/changeLocation?code=7592384&location=de","description":"<p>Changes the location of the service if change location is allowed.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>code (required) ==&gt; unique service code</p>\n</li>\n<li><p>location ==&gt; new location alpha-2 code, e.g. \"de\" for germany</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>422</td>\n<td>Method is not designed for this service mode.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Location is required.</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Invalid location.</td>\n</tr>\n<tr>\n<td>432</td>\n<td>The new and old locations are equal.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501-502</td>\n<td>Internal error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["changeLocation"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"7592384"},{"key":"location","value":"de"}],"variable":[]}},"response":[{"id":"72d0ced4-582e-4d46-8d35-799c1c321b28","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/changeLocation?code=7592384&location=de","host":["https://api.deltanetwork.one/v1"],"path":["changeLocation"],"query":[{"key":"code","value":"7592384"},{"key":"location","value":"de"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 15:42:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200\n}"}],"_postman_id":"d209e9a2-e8c2-436d-a933-4c8dcf09f0de"},{"name":"Change connection type","id":"54e88357-60a0-4a29-98e5-b5d49143ce1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/changeConnectionType?code=91656788&connectionType=multiLocation","description":"<p>Changes the connection type of the service if change connection type is allowed.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>code (required) ==&gt; unique service code</p>\n</li>\n<li><p>connectionType (required) ==&gt; multiLocation or singleLocation</p>\n</li>\n<li><p>location ==&gt; alpha-2 code, e.g. \"de\" for germany, only for change to single location</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Connection Type is required.</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Invalid connection type.</td>\n</tr>\n<tr>\n<td>432</td>\n<td>The new and old connection type are equal.</td>\n</tr>\n<tr>\n<td>433</td>\n<td>Location is required.</td>\n</tr>\n<tr>\n<td>434</td>\n<td>Invalid location.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Internal error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["changeConnectionType"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"91656788"},{"key":"connectionType","value":"multiLocation"},{"disabled":true,"key":"location","value":"de"}],"variable":[]}},"response":[{"id":"41361303-3f5e-4633-97f4-cd86e0ada041","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/changeConnectionType?code=91656788&connectionType=multiLocation","host":["https://api.deltanetwork.one/v1"],"path":["changeConnectionType"],"query":[{"key":"code","value":"91656788"},{"key":"connectionType","value":"multiLocation"},{"key":"location","value":"de","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 02 May 2025 11:58:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200\n}"}],"_postman_id":"54e88357-60a0-4a29-98e5-b5d49143ce1d"},{"name":"Change service name","id":"67ba19d4-c8bc-41b5-9dbe-35d4ab831de8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/changeName?code=7592384&name=david","description":"<p>Changes the name of the service if renaming is allowed.</p>\n<p>Query parameters:</p>\n<ul>\n<li>code (required) ==&gt; unique service code</li>\n<li>name (required) ==&gt; new name with the following conditions:<ul>\n<li>can start with @#$ and english alphanumeric.</li>\n<li>can use @#$_-/ and spaces between characters.</li>\n<li>end of name cannot contain @#$_-/ and spaces.</li>\n<li>length of the name should not exceed 11 characters.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Name is required.</td>\n</tr>\n<tr>\n<td>431</td>\n<td>The name is longer than 11 characters.</td>\n</tr>\n<tr>\n<td>432</td>\n<td>The name doesn't match the naming rules.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["changeName"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"7592384"},{"key":"name","value":"david"}],"variable":[]}},"response":[{"id":"9addbed7-26e6-421e-9c68-1205c69c451a","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/changeName?code=7592384&name=david","host":["https://api.deltanetwork.one/v1"],"path":["changeName"],"query":[{"key":"code","value":"7592384"},{"key":"name","value":"david"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 16:02:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200\n}"}],"_postman_id":"67ba19d4-c8bc-41b5-9dbe-35d4ab831de8"},{"name":"Switch service status","id":"9e0b3d92-51bf-4391-a4e9-2c605fc3da0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/switch?code=2372390&status=0","description":"<p>If the service is active, it turns it off or on.</p>\n<p>Query parameters:</p>\n<ul>\n<li>code (required) ==&gt; unique service code</li>\n<li>status (required) ==&gt; the new state of the service, which can be one of the following values:<ul>\n<li>0 ==&gt; If the service is on, it turns it off. After the service is turned off, it is not possible to connect to the service</li>\n<li>1 ==&gt; If the service is turned off, it turns it on</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Status is required.</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Invalid status.</td>\n</tr>\n<tr>\n<td>432</td>\n<td>The current status is similar to the new status.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["switch"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"2372390"},{"key":"status","value":"0"}],"variable":[]}},"response":[{"id":"45e0bf97-612f-4b24-816d-bcb27359a777","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/switch?code=2372390&status=0","host":["https://api.deltanetwork.one/v1"],"path":["switch"],"query":[{"key":"code","value":"2372390"},{"key":"status","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sun, 05 Nov 2023 06:15:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200\n}"}],"_postman_id":"9e0b3d92-51bf-4391-a4e9-2c605fc3da0c"},{"name":"Transfer service","id":"f54334a8-1dbf-4e05-9007-eb6353dca891","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/transferService?transfers=2372390:746503519,53215457:746503519","description":"<p>Transfers one or more services to specified users.</p>\n<p>Query parameters:</p>\n<ul>\n<li>transfers (required) ==&gt; a series of transfers, each transmission must contain the following structure and are separated by \",\"<ul>\n<li>code1:newUserid1<ul>\n<li>where code1 is the service code and newUserid1 is the destination user ID.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>In this method, the error code according to the table 2 is returned for each transfer, If the transfer is successful, 200 will be returned.</p>\n<h2 id=\"table-1---general-errors\">Table 1 - General errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Transfers is required.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"table-2---errors-per-transfer\">Table 2 - Errors per transfer</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>421</td>\n<td>No service found with the submitted code.</td>\n</tr>\n<tr>\n<td>422</td>\n<td>No user found with the submitted user ID.</td>\n</tr>\n<tr>\n<td>423</td>\n<td>Destination and source user IDs are the same.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transferService"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"transfers","value":"2372390:746503519,53215457:746503519"}],"variable":[]}},"response":[{"id":"3588c0a4-b7bb-4aef-9969-cfcf5bb1554f","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/transferService?transfers=2372390:746503519,53215457:746503519","host":["https://api.deltanetwork.one/v1"],"path":["transferService"],"query":[{"key":"transfers","value":"2372390:746503519,53215457:746503519"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 04 Jun 2024 16:08:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"transfers\": {\n        \"2372390\": 421,\n        \"53215457\": 200\n    }\n}"}],"_postman_id":"f54334a8-1dbf-4e05-9007-eb6353dca891"},{"name":"Delete service","id":"0b1ad413-2d29-41ad-9799-1d54823db0eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/delete?code=7592384","description":"<p>Delete expired or overflow service, if allowed.</p>\n<p>Query parameters:</p>\n<ul>\n<li>code (required) ==&gt; unique service code</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No expired / overflow service was found with this code.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Processing error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["delete"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"7592384"}],"variable":[]}},"response":[{"id":"34f2c571-290e-4874-9f3f-afeca05c7bcf","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/delete?code=7592384","host":["https://api.deltanetwork.one/v1"],"path":["delete"],"query":[{"key":"code","value":"7592384"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 16:56:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200\n}"}],"_postman_id":"0b1ad413-2d29-41ad-9799-1d54823db0eb"},{"name":"Cancel service","id":"58161332-7672-45c8-9416-87a300ab04f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/cancel?code=7592384","description":"<p>If allowed, it cancels the active service.</p>\n<p>Query parameters:</p>\n<ul>\n<li>code (required) ==&gt; unique service code</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>damage ==&gt; service cancellation damage in usd</p>\n</li>\n<li><p>receipt ==&gt; returned cost to the account in usd</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Processing error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["cancel"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"7592384"}],"variable":[]}},"response":[{"id":"4b6a9150-0270-4441-9ad3-74ce34f36e1c","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/cancel?code=7592384","host":["https://api.deltanetwork.one/v1"],"path":["cancel"],"query":[{"key":"code","value":"7592384"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 04 Nov 2023 20:51:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"damage\": 0.0224,\n        \"receipt\": 0.0896\n    }\n}"}],"_postman_id":"58161332-7672-45c8-9416-87a300ab04f1"},{"name":"Buy extra volume","id":"2a3a4bb5-07fa-40b9-813e-40d2e8f33c7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/extraVolume?code=5516034&volume=1073741824","description":"<p>If the service is in an active or overflow state, extra volume will be purchased.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>code (required) ==&gt; unique service code</p>\n</li>\n<li><p>volume (required) ==&gt; extra volume in bytes</p>\n</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>remainingVolume ==&gt; remaining volume in bytes</p>\n</li>\n<li><p>newVolume ==&gt; new volume in bytes (remaining volume + purchased volume)</p>\n</li>\n<li><p>price ==&gt; extra volume cost in usd</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>300</td>\n<td>Insufficient balance.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active / overflow service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Volume is required.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Processing error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["extraVolume"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"5516034"},{"key":"volume","value":"1073741824"}],"variable":[]}},"response":[{"id":"a22dac6d-f7c0-4593-9343-320c41448692","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/extra?code=7132548&volume=1073741824","host":["https://api.deltanetwork.one/v1"],"path":["extra"],"query":[{"key":"code","value":"7132548"},{"key":"volume","value":"1073741824"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 16 Nov 2023 14:26:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"remainingVolume\": 1073741824,\n        \"newVolume\": 2147483648,\n        \"price\": 0.019\n    }\n}"}],"_postman_id":"2a3a4bb5-07fa-40b9-813e-40d2e8f33c7d"},{"name":"Buy extra volume Copy","id":"c01f367d-db0f-44c5-aba7-dad806985984","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/extraVolume?code=5516034&volume=1073741824","description":"<p>If the service is in an active or overflow state, extra volume will be purchased.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>code (required) ==&gt; unique service code</p>\n</li>\n<li><p>volume (required) ==&gt; extra volume in bytes</p>\n</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>remainingVolume ==&gt; remaining volume in bytes</p>\n</li>\n<li><p>newVolume ==&gt; new volume in bytes (remaining volume + purchased volume)</p>\n</li>\n<li><p>price ==&gt; extra volume cost in usd</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>300</td>\n<td>Insufficient balance.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active / overflow service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Volume is required.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Processing error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["extraVolume"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"5516034"},{"key":"volume","value":"1073741824"}],"variable":[]}},"response":[{"id":"5760cdfc-1557-4a33-b940-8a99d41858ed","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/extra?code=7132548&volume=1073741824","host":["https://api.deltanetwork.one/v1"],"path":["extra"],"query":[{"key":"code","value":"7132548"},{"key":"volume","value":"1073741824"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 16 Nov 2023 14:26:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"remainingVolume\": 1073741824,\n        \"newVolume\": 2147483648,\n        \"price\": 0.019\n    }\n}"}],"_postman_id":"c01f367d-db0f-44c5-aba7-dad806985984"},{"name":"Buy extra user","id":"9fbcfd3c-e297-42e0-acd4-4bc62876dff5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/extraUser?code=12523244&extraUser=1","description":"<p>For Delta and DeltaMax services, if the service is active, extra users will be purchased.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>code (required) ==&gt; Unique service code</p>\n</li>\n<li><p>extraUser (required) ==&gt; The number of extra users needed</p>\n</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>addedUser ==&gt; The number of users added to the service</p>\n</li>\n<li><p>newUsers ==&gt; The total number of new users of the service</p>\n<ul>\n<li>The first number is the number of default users and the second number is the number of extra users of the service.</li>\n</ul>\n</li>\n<li><p>price ==&gt; Extra user cost in usd</p>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>300</td>\n<td>Insufficient balance.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Method isn't active for this service mode.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>API key hasn't been sent.</td>\n</tr>\n<tr>\n<td>411</td>\n<td>API key isn't valid.</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td>421</td>\n<td>No active service was found with this code.</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Extra user is required.</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Invalid extra user value.</td>\n</tr>\n<tr>\n<td>432</td>\n<td>The minimum extra user is 1 user.</td>\n</tr>\n<tr>\n<td>440</td>\n<td>Error receiving node information.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["extraUser"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"12523244"},{"key":"extraUser","value":"1"}],"variable":[]}},"response":[{"id":"b33f2aca-a319-45de-80b3-214096a0d115","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/extraUser?code=12523244&extraUser=1","host":["https://api.deltanetwork.one/v1"],"path":["extraUser"],"query":[{"key":"code","value":"12523244"},{"key":"extraUser","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sun, 14 Jul 2024 22:17:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"addedUser\": 1,\n        \"newUsers\": \"2 + 3\",\n        \"price\": 0.13\n    }\n}"}],"_postman_id":"9fbcfd3c-e297-42e0-acd4-4bc62876dff5"},{"name":"Service renewal","id":"f6a5f85d-eaaa-431c-a0b1-4806515fe763","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":"https://api.deltanetwork.one/v1/renew?code=5516034&duration=86400&volume=1073741824","description":"<p>If renewal is allowed, it renews the service with the sent parameters.</p>\n<p>Query parameters:</p>\n<ul>\n<li><p>code (required) ==&gt; unique service code</p>\n</li>\n<li><p>duration (required) ==&gt; service renewal duration in seconds, the desired duration must be available in the desired service and only following values are acceptable:</p>\n<ul>\n<li><p>86400 ==&gt; 1 days</p>\n</li>\n<li><p>604800 ==&gt; 7 days</p>\n</li>\n<li><p>2592000 ==&gt; 30 days</p>\n</li>\n</ul>\n</li>\n<li><p>volume (only for delta, delta+, required)</p>\n</li>\n</ul>\n<p>The following parameters are returned if the request is successful:</p>\n<ul>\n<li><p>delta, delta+</p>\n<ul>\n<li><p>remainingDuration ==&gt; Remaining duration in seconds</p>\n</li>\n<li><p>newDuration ==&gt; New duration (remaining duration + renewal duration)</p>\n</li>\n<li><p>remainingVolume ==&gt; Remaining volume in bytes</p>\n</li>\n<li><p>newVolume ==&gt; New volume in bytes (remaining volume + renewal volume)</p>\n</li>\n<li><p>users (only for delta) ==&gt; The total number of service users</p>\n<ul>\n<li>The first number is the number of default users and the second number is the number of extra users of the service.</li>\n</ul>\n</li>\n<li><p>newExpiry ==&gt; New expiration date in unix time</p>\n<ul>\n<li>If the service is expired, the remaining volume is burned and is considered zero in the calculations.</li>\n</ul>\n</li>\n<li><p>price ==&gt; Renewal cost in usd</p>\n</li>\n</ul>\n</li>\n<li><p>deltaMax</p>\n<ul>\n<li><p>renewDuration ==&gt; Renewal duration</p>\n</li>\n<li><p>renewThreshold ==&gt; Threshold of fair consumption of renewal package</p>\n</li>\n<li><p>reserve ==&gt; If the service has not expired, the package is registered as a reservation and its information is displayed as follows:</p>\n<ul>\n<li>time ==&gt; Reserve package activation time in unix time</li>\n</ul>\n</li>\n<li><p>users ==&gt; The total number of service users</p>\n<ul>\n<li>The first number is the number of default users and the second number is the number of extra users of the service.</li>\n</ul>\n</li>\n<li><p>price ==&gt; Renewal cost in usd</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"errors\"><strong>Errors</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>300</code></td>\n<td>Insufficient balance.</td>\n</tr>\n<tr>\n<td><code>411</code></td>\n<td>Invalid API key.</td>\n</tr>\n<tr>\n<td><code>420</code></td>\n<td>Service code is required.</td>\n</tr>\n<tr>\n<td><code>421</code></td>\n<td>No available service was found with this code.</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>This service is unavailable.</td>\n</tr>\n<tr>\n<td><code>423</code></td>\n<td>Service currently has a reservation package.</td>\n</tr>\n<tr>\n<td><code>430</code></td>\n<td>Duration is required.</td>\n</tr>\n<tr>\n<td><code>431</code></td>\n<td>Invalid duration.</td>\n</tr>\n<tr>\n<td><code>440</code></td>\n<td>Volume is required.</td>\n</tr>\n<tr>\n<td><code>450</code></td>\n<td>Error receiving node information</td>\n</tr>\n<tr>\n<td><code>501-502</code></td>\n<td>Internal error.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["renew"],"host":["https://api.deltanetwork.one/v1"],"query":[{"key":"code","value":"5516034"},{"key":"duration","value":"86400"},{"key":"volume","value":"1073741824"}],"variable":[]}},"response":[{"id":"9c7c8b40-31ae-42f4-a64c-39afb53d0362","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"<your-api-key>","type":"text"}],"url":{"raw":"https://api.deltanetwork.one/v1/renew?code=7132548&duration=86400&volume=1073741824","host":["https://api.deltanetwork.one/v1"],"path":["renew"],"query":[{"key":"code","value":"7132548"},{"key":"duration","value":"86400"},{"key":"volume","value":"1073741824"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 16 Nov 2023 14:54:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"code\": 200,\n    \"result\": {\n        \"remainingDuration\": 63474,\n        \"remainingVolume\": 2147483648,\n        \"newDuration\": 149874,\n        \"newExpiry\": 1700296319,\n        \"newVolume\": 3221225472,\n        \"price\": 0.019\n    }\n}"}],"_postman_id":"f6a5f85d-eaaa-431c-a0b1-4806515fe763"}],"id":"56d6ec12-04d1-4d0c-88ed-2fd7d49aa45b","_postman_id":"56d6ec12-04d1-4d0c-88ed-2fd7d49aa45b","description":""}],"event":[{"listen":"prerequest","script":{"id":"fa94d52f-a930-45d2-b53b-e5d5fc28f381","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"046a7983-d73f-4d12-87df-1d357b845ec5","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseurl","value":"https://api.deltanetwork.one/v1"},{"key":"api-key","value":"<your-api-key>"}]}