{"info":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","description":"<html><head></head><body><img src=\"https://content.pstmn.io/35c88a62-ea74-447b-8801-7b67fb713ee2/QXBpIGJhbm5lciB4Mi5qcGc=\">\n\n<h2 id=\"introduction\">I<strong>ntroduction</strong></h2>\n<p>Welcome to the Abzorb API documentation, developed to support seamless third-party integration with Abzorb Technology’s CRM/ERP platform. This API offers a broad suite of capabilities, including customer management, connection oversight, mobile order processing, ticket handling, and real-time data usage monitoring for active connections. It provides a robust and flexible interface, enabling developers to integrate their systems efficiently with the services offered by Abzorb Technology.</p>\n<p>The Abzorb API is built on RESTful principles, utilising predictable, resource-oriented URLs. It delivers JSON-formatted responses and adheres to standard HTTP status codes and authentication mechanisms, ensuring consistency and ease of use for developers.</p>\n<h2 id=\"endpoint-details\">Endpoint Details</h2>\n<p>Please see a list of deployments alongside the base API URL for each deployment below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Description</th>\n<th>Base URL</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Production API</td>\n<td><a href=\"https://abzorbportal.click2sign.co.uk:8077/api/\">https://abzorbapi.click2sign.co.uk:8077/api/</a></td>\n</tr>\n<tr>\n<td>Staging API</td>\n<td><a href=\"https://abzorbportal.click2sign.co.uk:8076/api/\">https://abzorbapi.click2sign.co.uk:8076/api/</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>The Abzorb Technology API now uses <strong>OAuth 2.0 (Client Credentials flow)</strong> for authentication. Each registered API user is issued a unique <code>client_id</code> and <code>client_secret</code>.</p>\n<h2 id=\"obtaining-an-access-token\">Obtaining an Access Token</h2>\n<p>To interact with the Abzorb Technology API, you must first obtain an OAuth 2.0 access token using the <strong>Client Credentials Grant</strong>.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://{environment}/token\n\n</code></pre><h3 id=\"request\">Request</h3>\n<p>The request <strong>must use HTTP Basic Authentication</strong> with your client credentials:</p>\n<ul>\n<li><p><strong>Username:</strong> <code>YOUR_CLIENT_ID</code></p>\n</li>\n<li><p><strong>Password:</strong> <code>YOUR_CLIENT_SECRET</code></p>\n</li>\n</ul>\n<p>In addition, the body of the request must include <code>grant_type=client_credentials</code> as <code>application/x-www-form-urlencoded</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /token HTTP/1.1\nHost: stagingapi.click2sign.co.uk\nAuthorization: Basic BASE64_ENCODED_CLIENT_ID_AND_SECRET\nContent-Type: application/x-www-form-urlencoded\ngrant_type=client_credentials\n\n</code></pre><p><strong>Note:</strong> Encode your client ID and secret as Base64 (<code>client_id:client_secret</code>) for the <code>Authorization: Basic</code> header.</p>\n<p><strong>Successful Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR...\",\n  \"token_type\": \"bearer\",\n  \"expires_in\": 3600\n}\n\n</code></pre>\n<ul>\n<li><p><code>access_token</code> – a JWT that must be included in all subsequent API requests.</p>\n</li>\n<li><p><code>token_type</code> – always <code>bearer</code>.</p>\n</li>\n<li><p><code>expires_in</code> – lifetime of the token in seconds (e.g., 3600 = 1 hour).</p>\n</li>\n</ul>\n<p>When the token expires, request a new one using the same client credentials.</p>\n<h3 id=\"using-the-access-token\">Using the Access Token</h3>\n<p>Include the token in the <code>Authorization</code> header when making API requests:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/Connections/ HTTP/1.1\nHost: stagingapi.click2sign.co.uk\nAuthorization: Bearer eyJhbGciOiJIUzI1NiIsInR...\n\n</code></pre><h3 id=\"requirements\">Requirements</h3>\n<ul>\n<li><p>All requests must be authenticated with a valid <strong>OAuth 2.0 access token</strong>.</p>\n</li>\n<li><p>Only HTTPS-secured communications are supported. Any attempt to access API resources over HTTP will result in an HTTP 301 redirect.</p>\n</li>\n<li><p>Responses are returned in JSON format.</p>\n</li>\n</ul>\n<h2 id=\"errors\">Errors</h2>\n<p>The Abzorb Technology API uses standard HTTP response codes to indicate the result of API requests. These codes typically follow the conventions below:</p>\n<ul>\n<li><p><strong>2xx</strong> codes indicate successful operations.</p>\n</li>\n<li><p><strong>4xx</strong> codes denote client-side errors, such as missing parameters or malformed requests.</p>\n</li>\n<li><p><strong>5xx</strong> codes reflect server-side errors, representing issues within Abzorb Technology's infrastructure—these occurrences are rare.</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>HTTP Stauts Code</strong></th>\n<th><strong>Status Code Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n<td>The request was successful and everything worked as expected.</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n<td>The request could not be processed due to missing or incorrect parameters.</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n<td>Access to the resource is denied due to missing or invalid API credentials.</td>\n</tr>\n<tr>\n<td><strong>402</strong></td>\n<td>Request Failed</td>\n<td>The request was valid but failed to be processed successfully.</td>\n</tr>\n<tr>\n<td><strong>403</strong></td>\n<td>Forbidden</td>\n<td>The request is forbidden due to lack of permissions with the provided API credentials.</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n<td>The requested resource does not exist on the server.</td>\n</tr>\n<tr>\n<td><strong>409</strong></td>\n<td>Conflict</td>\n<td>The request conflicts with another request or resource state.</td>\n</tr>\n<tr>\n<td><strong>429</strong></td>\n<td>Too Many Requests</td>\n<td>The API rate limit has been exceeded. Implement an exponential backoff strategy for future requests.</td>\n</tr>\n<tr>\n<td><strong>500, 502, 503, 504</strong></td>\n<td>Server Errors</td>\n<td>An unexpected server error occurred on our side. These occurrences are rare.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Within an API call, if the request is successfully but fails validation, a validation message will return as per the below example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{    \n  \"response_message\": \"error_message\"\n}\n\n</code></pre>\n<h3 id=\"authentication-error-responses\">Authentication Error Responses</h3>\n<p>If the OAuth 2.0 flow fails, the API will return an error response in JSON format.</p>\n<p><strong>Invalid or missing client credentials (at token request):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"error\": \"invalid_client\",\n  \"error_description\": \"The client_id or client_secret is invalid.\"\n}\n\n</code></pre>\n<p><strong>Invalid or expired access token (at API request):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"error\": \"invalid_token\",\n  \"error_description\": \"The access token is invalid or has expired.\"\n}\n\n</code></pre>\n<p><strong>Insufficient scope (token does not grant access to the requested resource):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"error\": \"insufficient_scope\",\n  \"error_description\": \"The access token does not grant the required permissions.\"\n}\n\n</code></pre>\n<h2 id=\"parameter-usage\">Parameter Usage</h2>\n<p>Certain methods require a <code>contractId</code>instead of a <code>cli</code>. A <code>contractId</code>serves as a unique identifier for a <code>cli</code>. To obtain a CLI’s <code>contractId</code>, view the <code>cli</code>at <code>/api/Connections/?cli=XX</code>, etc. A ContractID may also be referred to as a ConnectionID—they are synonymous. In addition, <code>companyId</code> may also be referred to as <code>customerId</code>.</p>\n<p>Some method types necessitate parameters that cannot be supplied directly. These parameters, such as DiaryTypeID, DiaryTaskID, BarSuffix, and StatusID, are provided within seperate API calls within their appropriate controllers.</p>\n<p>Additional information you may need to input can be accessed by querying CLIs using existing information. For instance, a <code>customerId</code> is associated with a CLI upon viewing it. This <code>customerId</code> is the unique identifier of the customer who owns that connection within our system. It is typically required for creating tasks to ensure they are correctly associated with the customer’s account and portal.</p>\n<h3 id=\"503-response\">503 response</h3>\n<p>An HTTP <code>503</code> response from our servers indicates there is an unexpected spike in API access traffic. The server is usually operational within the next five minutes. If the outage persists or you receive any other form of an HTTP <code>5XX</code> error, please contact Portal Support.</p>\n<h3 id=\"version-control\"><strong>Version Control</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Version</strong></th>\n<th><strong>Date</strong></th>\n<th><strong>Editor</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.0</td>\n<td>14/06/2025</td>\n<td>Awais Hussain</td>\n<td>Core functionality added which is listed below:  <br>  <br>- Bars Management  <br>- Bundles Management  <br>- CLI Management  <br>- Customer Management  <br>- Diverts  <br>- Orders  <br>- PACs Controller  <br>- SIM Management  <br>- Tariff Management  <br>- Tasks  <br>- Usage</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>02/09/2025</td>\n<td>Awais Hussain</td>\n<td>Built OAuth 2.0 authentication into API workflow and updated documentation.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"need-some-help\"><strong>Need some help?</strong></h3>\n<p>In case you have questions or require assistance, please contact your Account Manager who will be able to forward your query to the API development team.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"49139871","collectionId":"60bcc004-ce2f-4b03-aef7-6e655a47419d","publishedId":"2sB3QMMpdt","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-10-14T11:01:23.000Z"},"item":[{"name":"Alerting Controller","item":[{"name":"Appendix","item":[],"id":"0f031be7-be26-4214-9ebd-721ec692cf0d","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/alerting</code> endpoints.</p>\n","_postman_id":"0f031be7-be26-4214-9ebd-721ec692cf0d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get Reseller Defaults","id":"fcb5c967-0128-4a9a-8776-7160004245d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/alerting/GetAllResellerDefaults","description":"<h2 id=\"get-all-reseller-defaults\">Get All Reseller Defaults</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/alerting/GetAllResellerDefaults/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all Alerting defaults associated to the Reseller of the connected API user</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"CustomerID\": 0,\n      \"Customer\": \"\",\n      \"ResellerID\": 0,\n      \"DistributorID\": 0,\n      \"Level\": \"\",\n      \"Default_Threshold\": 0.0,\n      \"Default_Data_Usage\": 0.0,\n      \"Data_Step\": 0.0,\n      \"Default_Minutes_Usage\": 0.0,\n      \"Minutes_Step\": \"0.0,\n      \"Default_SMS_Usage\": 0.0,\n      \"SMS_Step\": 0.0,\n      \"Default_Email\": \"\",\n      \"AllowSMSAlerts\": false\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>Customer</td>\n<td>string</td>\n<td>The name of the Customer</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>Unique ID of the Reseller</td>\n</tr>\n<tr>\n<td>DistributorID</td>\n<td>long</td>\n<td>The DistributorID that the Reseller is associated against</td>\n</tr>\n<tr>\n<td>Level</td>\n<td>string</td>\n<td>Indicates whether the record is a 'Reseller' or 'Customer' level record</td>\n</tr>\n<tr>\n<td>Default_Threshold</td>\n<td>integer</td>\n<td>Default alert threshold</td>\n</tr>\n<tr>\n<td>Default_Data_Usage</td>\n<td>decimal</td>\n<td>Default data usage threshold</td>\n</tr>\n<tr>\n<td>Data_Step</td>\n<td>decimal</td>\n<td>Total amount of data used within group in Gigabytes</td>\n</tr>\n<tr>\n<td>Default_Minutes_Usage</td>\n<td>decimal</td>\n<td>Default minutes usage threshold</td>\n</tr>\n<tr>\n<td>Minutes_Step</td>\n<td>string</td>\n<td>The percentage increment at which to send notifications for minutes</td>\n</tr>\n<tr>\n<td>Default_SMS_Usage</td>\n<td>decimal</td>\n<td>Threshold for SMS usage alerts</td>\n</tr>\n<tr>\n<td>SMS_Step</td>\n<td>double</td>\n<td>The percentage increment at which to send notifications for SMS</td>\n</tr>\n<tr>\n<td>Default_Email</td>\n<td>string</td>\n<td>The email address(es) that alerts will be sent to</td>\n</tr>\n<tr>\n<td>AllowSMSAlerts</td>\n<td>boolean</td>\n<td>Whether SMS alerts are configured</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetAllResellerDefaults"],"host":["https://stagingapi.click2sign.co.uk/api/alerting"],"query":[],"variable":[]}},"response":[{"id":"36d10bde-adb3-4d99-87f9-c7b02206dee2","name":"Get Reseller Defaults","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/alerting/GetAllResellerDefaults"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"CustomerID\": 0,\r\n      \"Customer\": \"\",\r\n      \"ResellerID\": 0,\r\n      \"DistributorID\": 0,\r\n      \"Level\": \"\",\r\n      \"Default_Threshold\": 0.0,\r\n      \"Default_Data_Usage\": 0.0,\r\n      \"Data_Step\": 0.0,\r\n      \"Default_Minutes_Usage\": 0.0,\r\n      \"Minutes_Step\": \"0.0,\r\n      \"Default_SMS_Usage\": 0.0,\r\n      \"SMS_Step\": 0.0,\r\n      \"Default_Email\": \"\",\r\n      \"AllowSMSAlerts\": false\r\n   }\r\n]\r\n"}],"_postman_id":"fcb5c967-0128-4a9a-8776-7160004245d0"},{"name":"Get Customer Alert Settings","id":"16651648-aefc-4c03-a67e-21265f5f00af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Alerting/GetCustomerAlertSettings?customerId=<customer_id>","description":"<h2 id=\"get-customer-alert-settings\">Get Customer Alert Settings</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/alerting/GetCustomerAlertSettings/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all Alerting defaults associated against a specific customer</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>The unqiue ID of the customer</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"CustomerID\": 0,\n      \"Customer\": \"\",\n      \"ResellerID\": 0,\n      \"DistributorID\": 0,\n      \"Level\": \"\",\n      \"Default_Threshold\": 0.0,\n      \"Default_Data_Usage\": 0.0,\n      \"Data_Step\": 0.0,\n      \"Default_Minutes_Usage\": 0.0,\n      \"Minutes_Step\": \"0.0,\n      \"Default_SMS_Usage\": 0.0,\n      \"SMS_Step\": 0.0,\n      \"Default_Email\": \"\",\n      \"AllowSMSAlerts\": false\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>Customer</td>\n<td>string</td>\n<td>The name of the Customer</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>Unique ID of the Reseller</td>\n</tr>\n<tr>\n<td>DistributorID</td>\n<td>long</td>\n<td>The DistributorID that the Reseller is associated against</td>\n</tr>\n<tr>\n<td>Level</td>\n<td>string</td>\n<td>Indicates whether the record is a 'Reseller' or 'Customer' level record</td>\n</tr>\n<tr>\n<td>Default_Threshold</td>\n<td>integer</td>\n<td>Default alert threshold</td>\n</tr>\n<tr>\n<td>Default_Data_Usage</td>\n<td>decimal</td>\n<td>Default data usage threshold</td>\n</tr>\n<tr>\n<td>Data_Step</td>\n<td>decimal</td>\n<td>Total amount of data used within group in Gigabytes</td>\n</tr>\n<tr>\n<td>Default_Minutes_Usage</td>\n<td>decimal</td>\n<td>Default minutes usage threshold</td>\n</tr>\n<tr>\n<td>Minutes_Step</td>\n<td>string</td>\n<td>The percentage increment at which to send notifications for minutes</td>\n</tr>\n<tr>\n<td>Default_SMS_Usage</td>\n<td>decimal</td>\n<td>Threshold for SMS usage alerts</td>\n</tr>\n<tr>\n<td>SMS_Step</td>\n<td>double</td>\n<td>The percentage increment at which to send notifications for SMS</td>\n</tr>\n<tr>\n<td>Default_Email</td>\n<td>string</td>\n<td>The email address(es) that alerts will be sent to</td>\n</tr>\n<tr>\n<td>AllowSMSAlerts</td>\n<td>boolean</td>\n<td>Whether SMS alerts are configured</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetCustomerAlertSettings"],"host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"508b5eb6-c8cb-403a-90a3-7207fde9def9","name":"Get Customer Alert Settings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Alerting/GetCustomerAlertSettings?customerId=<customer_id>","host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"path":["GetCustomerAlertSettings"],"query":[{"key":"customerId","value":"<customer_id>"}]}},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"CustomerID\": 0,\r\n      \"Customer\": \"\",\r\n      \"ResellerID\": 0,\r\n      \"DistributorID\": 0,\r\n      \"Level\": \"\",\r\n      \"Default_Threshold\": 0.0,\r\n      \"Default_Data_Usage\": 0.0,\r\n      \"Data_Step\": 0.0,\r\n      \"Default_Minutes_Usage\": 0.0,\r\n      \"Minutes_Step\": 0.0,\r\n      \"Default_SMS_Usage\": 0.0,\r\n      \"SMS_Step\": 0.0,\r\n      \"Default_Email\": \"\",\r\n      \"AllowSMSAlerts\": false\r\n   }\r\n]"}],"_postman_id":"16651648-aefc-4c03-a67e-21265f5f00af"},{"name":"Get CLI Alerting Bar Status","id":"e88344ab-33b7-4167-834a-888b5193a9c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Alerting/GetCliAlertingBarStatus?contractId=<contract_ids>","description":"<h2 id=\"get-cli-alerting-bar-status\">Get CLI Alerting Bar Status</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/alerting/GetCliAlertingBarStatus/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns the CLI alerting bar status for a given ContractId.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the CLI</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"Cli\": \"\",\n    \"AutoBar\": false,\n    \"BillCapEnabled\": false,\n    \"BarStatus\": false\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Cli</td>\n<td>string</td>\n<td>The Calling Line Identification (CLI) associated to the connection</td>\n</tr>\n<tr>\n<td>AutoBar</td>\n<td>boolean</td>\n<td>Indicates if AutoBar is active against the connection</td>\n</tr>\n<tr>\n<td>BillCapEnabled</td>\n<td>boolean</td>\n<td>Indicates if Bill Cap is active against the connection</td>\n</tr>\n<tr>\n<td>BarStatus</td>\n<td>boolean</td>\n<td>If this flag is true, this means that the user has been barred due to  <br />hitting a threshold set within CapZ.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetCliAlertingBarStatus"],"host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"query":[{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"e735fd2d-514c-46ad-9817-87c060699367","name":"Get CLI Alerting Bar Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Alerting/GetCliAlertingBarStatus?contractId=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"path":["GetCliAlertingBarStatus"],"query":[{"key":"contractId","value":"<contract_ids>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"Cli\": \"\",\n    \"AutoBar\": false,\n    \"BillCapEnabled\": false,\n    \"BarStatus\": false\n}"}],"_postman_id":"e88344ab-33b7-4167-834a-888b5193a9c8"},{"name":"Get Customer CLI Alert Settings","id":"e678a4a0-f197-4fc3-93ad-0341893ad533","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Alerting/GetCustomerCliAlerts?customerId=<customer_id>&level=<alert_level>","description":"<h2 id=\"get-customer-cli-alert-settings\">Get Customer CLI Alert Settings</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/alerting/GetCustomerCliAlertSettings/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all the CLI alerting defaults for the connections associated to a specific customer based on a provided alerting<code>level</code></p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>The unqiue ID of the customer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>level</td>\n<td>string</td>\n<td>There are two alert levels. The first is 'Reseller' and the second is 'Customer'. If you wish to retrieve the customer level CLI settings, pass 'Customer'. Otherwise, pass 'Reseller'</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"CustomerID\": 0,\n      \"Customer\": \"\",\n      \"ResellerID\": 0,\n      \"DistributorID\": 0,\n      \"Level\": \"\",\n      \"Default_Threshold\": 0.0,\n      \"Default_Data_Usage\": 0.0,\n      \"Data_Step\": 0.0,\n      \"Default_Minutes_Usage\": 0.0,\n      \"Minutes_Step\": \"0.0,\n      \"Default_SMS_Usage\": 0.0,\n      \"SMS_Step\": 0.0,\n      \"Default_Email\": \"\",\n      \"AllowSMSAlerts\": false\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>Customer</td>\n<td>string</td>\n<td>The name of the Customer</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>Unique ID of the Reseller</td>\n</tr>\n<tr>\n<td>DistributorID</td>\n<td>long</td>\n<td>The DistributorID that the Reseller is associated against</td>\n</tr>\n<tr>\n<td>Level</td>\n<td>string</td>\n<td>Indicates whether the record is a 'Reseller' or 'Customer' level record</td>\n</tr>\n<tr>\n<td>Default_Threshold</td>\n<td>integer</td>\n<td>Default alert threshold</td>\n</tr>\n<tr>\n<td>Default_Data_Usage</td>\n<td>decimal</td>\n<td>Default data usage threshold</td>\n</tr>\n<tr>\n<td>Data_Step</td>\n<td>decimal</td>\n<td>Total amount of data used within group in Gigabytes</td>\n</tr>\n<tr>\n<td>Default_Minutes_Usage</td>\n<td>decimal</td>\n<td>Default minutes usage threshold</td>\n</tr>\n<tr>\n<td>Minutes_Step</td>\n<td>string</td>\n<td>The percentage increment at which to send notifications for minutes</td>\n</tr>\n<tr>\n<td>Default_SMS_Usage</td>\n<td>decimal</td>\n<td>Threshold for SMS usage alerts</td>\n</tr>\n<tr>\n<td>SMS_Step</td>\n<td>double</td>\n<td>The percentage increment at which to send notifications for SMS</td>\n</tr>\n<tr>\n<td>Default_Email</td>\n<td>string</td>\n<td>The email address(es) that alerts will be sent to</td>\n</tr>\n<tr>\n<td>AllowSMSAlerts</td>\n<td>boolean</td>\n<td>Whether SMS alerts are configured</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetCustomerCliAlerts"],"host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"query":[{"key":"customerId","value":"<customer_id>"},{"key":"level","value":"<alert_level>"}],"variable":[]}},"response":[{"id":"25568601-5484-4000-8a4f-0f805d513207","name":"Get Customer CLI Alert Settings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Alerting/GetCustomerCliAlerts?companyId=<customer_id>&level=<alert_level>","host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"path":["GetCustomerCliAlerts"],"query":[{"key":"companyId","value":"<customer_id>"},{"key":"level","value":"<alert_level>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"Level\": \"\",\r\n    \"CustomerID\": 0,\r\n    \"CLI_ID\": 0,\r\n    \"CLI\": \"\",\r\n    \"Alert_Email\": \"\",\r\n    \"Cost_Threshold\": 0.0,\r\n    \"Data_Threshold\": 0.0,\r\n    \"Data_Step\": 0.0,\r\n    \"Minutes_Threshold\": 0.0,\r\n    \"Minutes_Step\": 0.0,\r\n    \"SMS_Threshold\": 0.0,\r\n    \"SMS_Step\": 0.0,\r\n    \"Cost_Autobar\": true,\r\n    \"Usage_Autobar\": true,\r\n    \"SMS\": true,\r\n    \"AllowSMSAlerts\": true,\r\n    \"BillCap\": false,\r\n    \"Current_Cost\": 0.05,\r\n    \"Current_Data\": 0.0,\r\n    \"Current_Minutes\": 0.0,\r\n    \"Current_SMS\": 0.0\r\n}"}],"_postman_id":"e678a4a0-f197-4fc3-93ad-0341893ad533"},{"name":"Update CLI Alert Settings","id":"a8d1724f-23b1-4e34-8444-5f775d596696","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"Level\": \"\",\r\n  \"CustomerID\": 0,\r\n  \"CLI_ID\": 0,\r\n  \"CLI\": \"\",\r\n  \"Alert_Email\": \"\",\r\n  \"Cost_Threshold\": 0.0,\r\n  \"Data_Threshold\": 0.0,\r\n  \"Data_Step\": 0.0,\r\n  \"Minutes_Threshold\": 0.0,\r\n  \"Minutes_Step\": 0.0,\r\n  \"SMS_Threshold\": 0.0,\r\n  \"SMS_Step\": 0.0,\r\n  \"Cost_Autobar\": false,\r\n  \"Usage_Autobar\": false,\r\n  \"SMS\": false,\r\n  \"AllowSMSAlerts\": false,\r\n  \"BillCap\": false,\r\n  \"Current_Cost\": 0.0,\r\n  \"Current_Data\": 0.0,\r\n  \"Current_Minutes\": 0.0,\r\n  \"Current_SMS\": 0.0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/Alerting/UpdateCLIAlertSettings","description":"<h2 id=\"update-cli-alert-settings\">Update CLI Alert Settings</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/alerting/UpdateCLIAlertSettings/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints is used to update the store CLI Alerting settings for a specifc CLI based on a provided <code>level</code></p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>The request body should contain a JSON object representing the model used to update the CLI alerting settings.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Level\": \"\",\n  \"CustomerID\": 0,\n  \"CLI_ID\": 0,\n  \"CLI\": \"\",\n  \"Alert_Email\": \"\",\n  \"Cost_Threshold\": 0.0,\n  \"Data_Threshold\": 0.0,\n  \"Data_Step\": 0.0,\n  \"Minutes_Threshold\": 0.0,\n  \"Minutes_Step\": 0.0,\n  \"SMS_Threshold\": 0.0,\n  \"SMS_Step\": 0.0,\n  \"Cost_Autobar\": false,\n  \"Usage_Autobar\": false,\n  \"SMS\": false,\n  \"AllowSMSAlerts\": false,\n  \"BillCap\": false,\n  \"Current_Cost\": 0.0,\n  \"Current_Data\": 0.0,\n  \"Current_Minutes\": 0.0,\n  \"Current_SMS\": 0.0\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["UpdateCLIAlertSettings"],"host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"query":[],"variable":[]}},"response":[{"id":"15016e42-ff3f-4237-9988-cceb2ce160fc","name":"Update CLI Alert Settings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"Level\": \"\",\r\n  \"CustomerID\": 0,\r\n  \"CLI_ID\": 0,\r\n  \"CLI\": \"\",\r\n  \"Alert_Email\": \"\",\r\n  \"Cost_Threshold\": 0.0,\r\n  \"Data_Threshold\": 0.0,\r\n  \"Data_Step\": 0.0,\r\n  \"Minutes_Threshold\": 0.0,\r\n  \"Minutes_Step\": 0.0,\r\n  \"SMS_Threshold\": 0.0,\r\n  \"SMS_Step\": 0.0,\r\n  \"Cost_Autobar\": false,\r\n  \"Usage_Autobar\": false,\r\n  \"SMS\": false,\r\n  \"AllowSMSAlerts\": false,\r\n  \"BillCap\": false,\r\n  \"Current_Cost\": 0.0,\r\n  \"Current_Data\": 0.0,\r\n  \"Current_Minutes\": 0.0,\r\n  \"Current_SMS\": 0.0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/Alerting/UpdateCLIAlertSettings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"response_message\": \"\"\n}"}],"_postman_id":"a8d1724f-23b1-4e34-8444-5f775d596696"},{"name":"Update Company Defaults","id":"7ec187b2-6e1c-4e59-93e5-a24c53076afa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerID\": 0,\n\t\"Customer\": \"\",\n\t\"ResellerID\": 0,\n\t\"DistributorID\": 0,\n\t\"Level\": \"\",\n\t\"Default_Threshold\": 0,\n\t\"Default_Data_Usage\": 0,\n\t\"Data_Step\": 0,\n\t\"Default_Minutes_Usage\": 0,\n\t\"Minutes_Step\": 0,\n\t\"Default_SMS_Usage\": 0,\n\t\"SMS_Step\": 0,\n\t\"Default_Email\": \"\"\n}"},"url":"https://stagingapi.click2sign.co.uk/api/Alerting/UpdateCompanyDefaults","description":"<h2 id=\"update-company-defaults\">Update Company Defaults</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/alerting/UpdateCompanyDefaults/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to update the Alerting defaults for a company</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>The request body should contain a JSON object representing the model used to update the Alerting company defaults.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"CustomerID\": 0,\n    \"Customer\": \"\",\n    \"ResellerID\": 0,\n    \"DistributorID\": 0,\n    \"Level\": \"\",\n    \"Default_Threshold\": 0.0,\n    \"Default_Data_Usage\": 0.0,\n    \"Data_Step\": 0.0,\n    \"Default_Minutes_Usage\": 0.0,\n    \"Minutes_Step\": 0.0,\n    \"Default_SMS_Usage\": 0.0,\n    \"SMS_Step\": 0.0,\n    \"Default_Email\": \"\",\n    \"AllowSMSAlerts\": true\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["UpdateCompanyDefaults"],"host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"query":[],"variable":[]}},"response":[{"id":"efc8d983-088d-4b9c-babf-ce0cf0e630a7","name":"Update Company Defaults","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerID\": 0,\n\t\"Customer\": \"\",\n\t\"ResellerID\": 0,\n\t\"DistributorID\": 0,\n\t\"Level\": \"\",\n\t\"Default_Threshold\": 0,\n\t\"Default_Data_Usage\": 0,\n\t\"Data_Step\": 0,\n\t\"Default_Minutes_Usage\": 0,\n\t\"Minutes_Step\": 0,\n\t\"Default_SMS_Usage\": 0,\n\t\"SMS_Step\": 0,\n\t\"Default_Email\": \"\"\n}"},"url":"https://stagingapi.click2sign.co.uk/api/Alerting/UpdateCompanyDefaults"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"response_message\": \"\"\r\n}"}],"_postman_id":"7ec187b2-6e1c-4e59-93e5-a24c53076afa"},{"name":"Update Partial CLI Alert Settings","id":"37053af4-6d03-45bf-a4c1-ba6500202b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 0,\r\n  \"ContractID\": 0,\r\n  \"CLI\": \"\",\r\n  \"CLI_ID\": 0,\r\n  \"Alert_Email\": \"\",\r\n  \"Cost_Threshold\": 0.0,\r\n  \"Data_Threshold\": 0.0,\r\n  \"Data_Step\": 0.0,\r\n  \"Minutes_Threshold\": 0.0,\r\n  \"Minutes_Step\": 0.0,\r\n  \"SMS_Threshold\": 0.0,\r\n  \"SMS_Step\": 0.0,\r\n  \"Cost_Autobar\": false,\r\n  \"Usage_Autobar\": false,\r\n  \"SMS\": false,\r\n  \"AllowSMSAlerts\": false,\r\n  \"BillCap\": false,\r\n  \"Current_Cost\": 0.0,\r\n  \"Current_Data\": 0.0,\r\n  \"Current_Minutes\": 0.0,\r\n  \"Current_SMS\": 0.0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/Alerting/UpdatePartialCLIAlert","description":"<h2 id=\"update-partial-cli-alert-settings\">Update Partial CLI Alert Settings</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/alerting/UpdatePartialCLIAlert/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to update any indiviual CLI Alerting setting for a specifc CLI at a Customer level.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`PATCH`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>The request body should contain a JSON object representing the model used to update the CLI alerting settings.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"CustomerID\": 0,\n  \"ContractID\": 0,\n  \"CLI\": \"\",\n  \"CLI_ID\": 0,\n  \"Alert_Email\": \"\",\n  \"Cost_Threshold\": 0.0,\n  \"Data_Threshold\": 0.0,\n  \"Data_Step\": 0.0,\n  \"Minutes_Threshold\": 0.0,\n  \"Minutes_Step\": 0.0,\n  \"SMS_Threshold\": 0.0,\n  \"SMS_Step\": 0.0,\n  \"Cost_Autobar\": false,\n  \"Usage_Autobar\": false,\n  \"SMS\": false,\n  \"AllowSMSAlerts\": false,\n  \"BillCap\": false,\n  \"Current_Cost\": 0.0,\n  \"Current_Data\": 0.0,\n  \"Current_Minutes\": 0.0,\n  \"Current_SMS\": 0.0\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>The unique ID for the company record</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ContractId</td>\n<td>long</td>\n<td>The unique ID of the mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Cli</td>\n<td>string</td>\n<td>The mobile number associated with the connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["UpdatePartialCLIAlert"],"host":["https://stagingapi.click2sign.co.uk/api/Alerting"],"query":[],"variable":[]}},"response":[{"id":"c5b6aafc-7644-423b-a5ea-7d3577681010","name":"Update Partial CLI Alert Settings","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 0,\r\n  \"ContractID\": 0,\r\n  \"CLI\": \"\",\r\n  \"CLI_ID\": 0,\r\n  \"Alert_Email\": \"\",\r\n  \"Cost_Threshold\": 0.0,\r\n  \"Data_Threshold\": 0.0,\r\n  \"Data_Step\": 0.0,\r\n  \"Minutes_Threshold\": 0.0,\r\n  \"Minutes_Step\": 0.0,\r\n  \"SMS_Threshold\": 0.0,\r\n  \"SMS_Step\": 0.0,\r\n  \"Cost_Autobar\": false,\r\n  \"Usage_Autobar\": false,\r\n  \"SMS\": false,\r\n  \"AllowSMSAlerts\": false,\r\n  \"BillCap\": false,\r\n  \"Current_Cost\": 0.0,\r\n  \"Current_Data\": 0.0,\r\n  \"Current_Minutes\": 0.0,\r\n  \"Current_SMS\": 0.0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/Alerting/UpdatePartialCLIAlert"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"37053af4-6d03-45bf-a4c1-ba6500202b6d"}],"id":"cf9fc00a-10f6-4941-829e-af613e33e412","description":"<p>This subfolder contains the primary API calls for the <code>/api/alerting</code>endpoint.</p>\n","_postman_id":"cf9fc00a-10f6-4941-829e-af613e33e412","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"cf97b958-2b94-4fdf-bb42-514980355a95","description":"<p>The <code>/alerting</code> endpoint allows you to view and update core alerting settings for a connection</p>\n","_postman_id":"cf97b958-2b94-4fdf-bb42-514980355a95","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Bars Management","item":[{"name":"Appendix","item":[{"name":"Get Available Bars","event":[{"listen":"test","script":{"id":"139b0fd6-97ec-44be-87b0-8d6194758ad2","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5dfde79f-8d19-44cf-855d-e76138d3a372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bars/GetAvailableBars","description":"<h1 id=\"get-available-bars\">Get Available Bars</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Bars/GetAvailableBars/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves active bars for Vodafone.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"TariffLevelOptionID\": 0,\n      \"Description\": \"string\",\n      \"NetworkSuffix\": \"string\",\n      \"Network\": \"string\",\n      \"BarCategory\": \"string\",\n      \"DefaultOn\": true, // Indicates if the bar is on by default at network level\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetAvailableBars"],"host":["https://stagingapi.click2sign.co.uk/api/Bars"],"query":[],"variable":[]}},"response":[{"id":"7b296810-aa34-45d8-b330-4d14809dfe32","name":"Get Available Bars","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api//Bars/GetAvailableBars"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 23 Jun 2024 10:27:03 GMT"},{"key":"Content-Length","value":"4295"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"TariffLevelOptionID\": 2,\n        \"Description\": \"International / Premium Rate Call Bar\",\n        \"NetworkSuffix\": \"B\",\n        \"Network\": \"Vodafone\",\n        \"BarCategory\": \"Bars\",\n        \"DefaultOn\": false\n    },\n    {\n        \"TariffLevelOptionID\": 6,\n        \"Description\": \"Stolen Bar\",\n        \"NetworkSuffix\": \"H\",\n        \"Network\": \"Vodafone\",\n        \"BarCategory\": \"Bars\",\n        \"DefaultOn\": false\n    }\n]"}],"_postman_id":"5dfde79f-8d19-44cf-855d-e76138d3a372"}],"id":"167178eb-0dbc-4fda-a684-1e8aff08a1ca","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/bars</code>endpoints.</p>\n","_postman_id":"167178eb-0dbc-4fda-a684-1e8aff08a1ca","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add or Remove Bar","id":"f4917435-3c03-4657-b668-b3dc8b1220ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"cli\": <cli>,\r\n   \"barSuffix\": <bar_suffix>,\r\n   \"toggle\": <toggle_bar>,\r\n   \"comment\": <comment>\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/bars/ToggleBar/","description":"<h2 id=\"add-or-remove-bar\">Add or Remove Bar</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/bars/ToggleBar/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to toggle a bar on/off for a given connection.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"cli\":\"\",\n   \"barSuffix\":\"\",\n   \"toggle\":true,\n   \"comment\":\"\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>The mobile number for the contract.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>barSuffix</td>\n<td>string</td>\n<td>The suffix of the bar. Please refere to the</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>toggle</td>\n<td>boolean</td>\n<td>A boolean value to toggle the bar on/off.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>A comment for the action.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ToggleBar",""],"host":["https://stagingapi.click2sign.co.uk/api/bars"],"query":[],"variable":[]}},"response":[{"id":"95eba20a-6b9e-42a4-a3d9-14c54e669154","name":"Add or Remove Bar","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"cli\": <cli>,\r\n   \"barSuffix\": <bar_suffix>,\r\n   \"toggle\": <toggle_bar>,\r\n   \"comment\": <comment>\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/bars/ToggleBar/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}"}],"_postman_id":"f4917435-3c03-4657-b668-b3dc8b1220ab"},{"name":"Get Active Bars for Connection","id":"6730fe50-9f06-40af-ba6f-3bda781184b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bars/GetAssignedBars/?contractIds=<contract_ids>","description":"<h2 id=\"get-assigned-bars\">Get Assigned Bars</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Bars/GetAssignedBars/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Retrieves bars that are currently active against the provided contract IDs.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractIds</td>\n<td>string</td>\n<td>A comma-separated list of contract IDs to query.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"ConnectionId\": 0,\n        \"NetworkSuffix\": \"string\",\n        \"Description\": \"string\",\n        \"TariffLevelOptionID\": 0\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetAssignedBars",""],"host":["https://stagingapi.click2sign.co.uk/api/Bars"],"query":[{"key":"contractIds","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"9874c451-83bb-4848-af8d-d500feb5a939","name":"Get Assigned Bars against Connection","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Bars/GetAssignedBars/?contractIds=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Bars"],"path":["GetAssignedBars",""],"query":[{"key":"contractIds","value":"<contract_ids>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 23 Jun 2024 21:31:45 GMT"},{"key":"Content-Length","value":"126"}],"cookie":[],"responseTime":null,"body":"[\n    [\n        {\n            \"ConnectionId\": 9561529,\n            \"NetworkSuffix\": \"B\",\n            \"Description\": \"International / Premium Rate Call Bar\",\n            \"TariffLevelOptionID\": 2\n        }\n    ]\n]"}],"_postman_id":"6730fe50-9f06-40af-ba6f-3bda781184b3"},{"name":"Get Available Bars for Connection","id":"ec45601e-8776-4fe5-b399-43210b69d131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bars/GetBars?contractIds=<contract_ids>","description":"<h2 id=\"get-bars\">Get Bars</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Bars/GetBars/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves information about bars available to apply under one or more ContractIDs.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractIds</td>\n<td>string</td>\n<td>A comma-separated list of contract IDs to query.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"TariffLevelOptionID\": 0,\n        \"NetworkID\": 0,\n        \"Description\": \"string\",\n        \"NetworkSuffix\": \"string\",\n        \"ISAAC_Add\": \"string\",\n        \"ISAAC_Remove\": \"string\",\n        \"PortalName\": \"string\",\n        \"Notes\": \"string\",\n        \"TLO_Bit\": 0,\n        \"DefaultOn\": true, // Indicates if the bar is on by default at network level\n        \"Toggle\": \"string\",\n        \"Command\": \"string\",\n        \"Active\": true // Indicates if the bar is active i.e. available to apply\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetBars"],"host":["https://stagingapi.click2sign.co.uk/api/Bars"],"query":[{"key":"contractIds","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"ede40bc4-9d5c-406b-bd7b-f50da7b74064","name":"Get Available Bars for connection","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Bars/GetBars?contractIds=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Bars"],"path":["GetBars"],"query":[{"key":"contractIds","value":"<contract_ids>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 23 Jun 2024 21:31:01 GMT"},{"key":"Content-Length","value":"10490"}],"cookie":[],"responseTime":null,"body":"[\n    [\n        {\n            \"TariffLevelOptionID\": 2,\n            \"NetworkID\": 2,\n            \"Description\": \"International / Premium Rate Call Bar\",\n            \"NetworkSuffix\": \"B\",\n            \"ISAAC_Add\": \"bar intpremium <snb>\",\n            \"ISAAC_Remove\": \"unbar intpremium <snb>\",\n            \"PortalName\": \"International / Premium Rate Call Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 2,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 6,\n            \"NetworkID\": 2,\n            \"Description\": \"Lost / Stolen Bar\",\n            \"NetworkSuffix\": \"H\",\n            \"ISAAC_Add\": \"bar stolen <snb>\",\n            \"ISAAC_Remove\": \"unbar stolen <snb>\",\n            \"PortalName\": \"Lost / Stolen Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 32,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 7,\n            \"NetworkID\": 2,\n            \"Description\": \"Video Calling Enabled\",\n            \"NetworkSuffix\": \"I\",\n            \"ISAAC_Add\": \"add vt <snb>\",\n            \"ISAAC_Remove\": \"remove vt <snb>\",\n            \"PortalName\": null,\n            \"Notes\": \"\",\n            \"TLO_Bit\": 64,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 11,\n            \"NetworkID\": 2,\n            \"Description\": \"Outgoing Call Bar\",\n            \"NetworkSuffix\": \"N\",\n            \"ISAAC_Add\": \"bar outgoing <snb>\",\n            \"ISAAC_Remove\": \"unbar outgoing <snb>\",\n            \"PortalName\": \"Outgoing Call Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 1024,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 12,\n            \"NetworkID\": 2,\n            \"Description\": \"3 Way Calls\",\n            \"NetworkSuffix\": \"O\",\n            \"ISAAC_Add\": \"connect conf <snb>\",\n            \"ISAAC_Remove\": \"disco conf <snb>\",\n            \"PortalName\": \"3 Way Calls\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 2048,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 16,\n            \"NetworkID\": 2,\n            \"Description\": \"Voicemail\",\n            \"NetworkSuffix\": \"S\",\n            \"ISAAC_Add\": \"disco recall <snb>\",\n            \"ISAAC_Remove\": \"connect recall <snb>\",\n            \"PortalName\": \"Voicemail\",\n            \"Notes\": \"On = Service deactivated\",\n            \"TLO_Bit\": 32768,\n            \"DefaultOn\": true,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 19,\n            \"NetworkID\": 2,\n            \"Description\": \"Text Messaging Bar\",\n            \"NetworkSuffix\": \"W\",\n            \"ISAAC_Add\": \"bar sms <snb>\",\n            \"ISAAC_Remove\": \"unbar sms <snb>\",\n            \"PortalName\": \"Text Messaging Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 262144,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 21,\n            \"NetworkID\": 2,\n            \"Description\": \"Roaming Bar\",\n            \"NetworkSuffix\": \"Z\",\n            \"ISAAC_Add\": \"bar roaming <snb>\",\n            \"ISAAC_Remove\": \"unbar roaming <snb>\",\n            \"PortalName\": \"Roaming Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 1048576,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 22,\n            \"NetworkID\": 2,\n            \"Description\": \"International Outgoing Call Bar\",\n            \"NetworkSuffix\": \"a\",\n            \"ISAAC_Add\": \"bar international <snb>\",\n            \"ISAAC_Remove\": \"unbar international <snb>\",\n            \"PortalName\": \"International Outgoing Call Bar\",\n            \"Notes\": \"NB: This bar does not bar calls to Eire (Republic of Ireland)\",\n            \"TLO_Bit\": 2097152,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 23,\n            \"NetworkID\": 2,\n            \"Description\": \"International Outgoing Call barred except to Home Country\",\n            \"NetworkSuffix\": \"b\",\n            \"ISAAC_Add\": \"bar intxhome <snb>\",\n            \"ISAAC_Remove\": \"unbar intxhome <snb>\",\n            \"PortalName\": \"International Outgoing Call barred except to Home Country\",\n            \"Notes\": \"NB: This bar does not bar calls to Eire (Republic of Ireland)\",\n            \"TLO_Bit\": 4194304,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 24,\n            \"NetworkID\": 2,\n            \"Description\": \"Incoming Calls Bar\",\n            \"NetworkSuffix\": \"c\",\n            \"ISAAC_Add\": \"bar incoming <snb>\",\n            \"ISAAC_Remove\": \"unbar incoming <snb>\",\n            \"PortalName\": \"Incoming Calls Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 8388608,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 25,\n            \"NetworkID\": 2,\n            \"Description\": \"Premium Rate Calls Bar\",\n            \"NetworkSuffix\": \"d\",\n            \"ISAAC_Add\": \"bar premium <SNB>\",\n            \"ISAAC_Remove\": \"unbar premium <SNB>\",\n            \"PortalName\": \"Premium Rate Calls Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 16777216,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 28,\n            \"NetworkID\": 2,\n            \"Description\": \"Roaming Bar for Incoming Calls Only\",\n            \"NetworkSuffix\": \"g\",\n            \"ISAAC_Add\": \"bar inwhenroam <snb>\",\n            \"ISAAC_Remove\": \"unbar inwhenroam <snb>\",\n            \"PortalName\": \"Roaming Bar for Incoming Calls Only\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 134217728,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 34,\n            \"NetworkID\": 2,\n            \"Description\": \"SMS Bar for Outgoing Texts\",\n            \"NetworkSuffix\": \"m\",\n            \"ISAAC_Add\": \"bar mosms <snb>\",\n            \"ISAAC_Remove\": \"unbar mosms <snb>\",\n            \"PortalName\": \"SMS Bar for Outgoing Texts\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 8589934592,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 35,\n            \"NetworkID\": 2,\n            \"Description\": \"SMS Bar for Incoming Texts\",\n            \"NetworkSuffix\": \"o\",\n            \"ISAAC_Add\": \"bar mtsms <snb>\",\n            \"ISAAC_Remove\": \"unbar mtsms <snb>\",\n            \"PortalName\": \"SMS Bar for Incoming Texts\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 17179869184,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 37,\n            \"NetworkID\": 2,\n            \"Description\": \"MMS Bar for Outgoing Texts\",\n            \"NetworkSuffix\": \"q\",\n            \"ISAAC_Add\": \"bar momms <snb>\",\n            \"ISAAC_Remove\": \"unbar momms <snb>\",\n            \"PortalName\": \"MMS Bar for Outgoing Texts\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 68719476736,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 38,\n            \"NetworkID\": 2,\n            \"Description\": \"MMS Bar for Incoming Texts\",\n            \"NetworkSuffix\": \"r\",\n            \"ISAAC_Add\": \"bar mtmms <snb>\",\n            \"ISAAC_Remove\": \"unbar mtmms <snb>\",\n            \"PortalName\": \"MMS Bar for Incoming Texts\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 137438953472,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 40,\n            \"NetworkID\": 2,\n            \"Description\": \"MMS Service\",\n            \"NetworkSuffix\": \"t\",\n            \"ISAAC_Add\": \"remove mms <snb>\",\n            \"ISAAC_Remove\": \"add mms <snb>\",\n            \"PortalName\": \"MMS Service\",\n            \"Notes\": \"On = Service deactivated\",\n            \"TLO_Bit\": 549755813888,\n            \"DefaultOn\": true,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 107,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Cap - Full World Cap\",\n            \"NetworkSuffix\": \"0\",\n            \"ISAAC_Add\": \"ADD DCOO <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCOO <SNB>\",\n            \"PortalName\": \"Data Roaming Cap - Full World Cap\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 70368744177664,\n            \"DefaultOn\": true,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 108,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Cap - SMS Notifications\",\n            \"NetworkSuffix\": \"1\",\n            \"ISAAC_Add\": \"ADD DCNO <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCNO <SNB>\",\n            \"PortalName\": \"Data Roaming Cap - SMS Notifications\",\n            \"Notes\": \"On = Notifications Removed\",\n            \"TLO_Bit\": 140737488355328,\n            \"DefaultOn\": true,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59197,\n            \"NetworkID\": 2,\n            \"Description\": \"Roaming GPRS Bar\",\n            \"NetworkSuffix\": \"2\",\n            \"ISAAC_Add\": \"bar gprsroam <SNB>\",\n            \"ISAAC_Remove\": \"unbar gprsroam <SNB>\",\n            \"PortalName\": \"Roaming GPRS Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 281474976710656,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59198,\n            \"NetworkID\": 2,\n            \"Description\": \"UK GPRS Bar\",\n            \"NetworkSuffix\": \"3\",\n            \"ISAAC_Add\": \"bar gprs <SNB>\",\n            \"ISAAC_Remove\": \"unbar gprs <SNB>\",\n            \"PortalName\": \"UK GPRS Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 562949953421312,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59351,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Cap - Euro Trav Zone\",\n            \"NetworkSuffix\": \"4\",\n            \"ISAAC_Add\": \"REMOVE APNBUNDLE <SNB> IRWDC\",\n            \"ISAAC_Remove\": \"ADD APNBUNDLE <SNB> IRWDC\",\n            \"PortalName\": \"Data Roaming Cap - Euro Trav Zone\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 1125899906842624,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59393,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Cap - World Travel Zone (Original 60 only)\",\n            \"NetworkSuffix\": \"7\",\n            \"ISAAC_Add\": \"REMOVE APNBUNDLE <SNB> WTRDC\",\n            \"ISAAC_Remove\": \"ADD APNBUNDLE <SNB> WTRDC\",\n            \"PortalName\": \"Data Roaming Cap - World Travel Zone (Original 60 only)\",\n            \"Notes\": \"Toggle ON: Effective immediately, Toggle OFF: Takes effect on 1st of following month.\",\n            \"TLO_Bit\": 9007199254740992,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59444,\n            \"NetworkID\": 2,\n            \"Description\": \"Premium rate SMS bar\",\n            \"NetworkSuffix\": \"u\",\n            \"ISAAC_Add\": \"bar prmsg <SNB>\",\n            \"ISAAC_Remove\": \"unbar prmsg <SNB>\",\n            \"PortalName\": \"Premium rate SMS bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 18014398509481984,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59445,\n            \"NetworkID\": 2,\n            \"Description\": \"VoLTE & WiFi Calling\",\n            \"NetworkSuffix\": \"3_59445\",\n            \"ISAAC_Add\": \"add volte0 <SNB>\",\n            \"ISAAC_Remove\": \"remove volte0 <SNB>\",\n            \"PortalName\": \"VoLTE & WiFi Calling\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 36028797018963968,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59452,\n            \"NetworkID\": 2,\n            \"Description\": \"Data UK Bar (domestic) Data Bar\",\n            \"NetworkSuffix\": \"DCP3\",\n            \"ISAAC_Add\": \"ADD DCP3 <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCP3 <SNB>\",\n            \"PortalName\": \"Data UK Bar (domestic) Data Bar\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 144115188075855872,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59453,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Bar EU Zone 1\",\n            \"NetworkSuffix\": \"DCP4\",\n            \"ISAAC_Add\": \"ADD DCP4 <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCP4 <SNB>\",\n            \"PortalName\": \"Data Roaming Bar EU Zone 1\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 288230376151711744,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59454,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Bar World Traveller Zone\",\n            \"NetworkSuffix\": \"DCP5\",\n            \"ISAAC_Add\": \"ADD DCP5 <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCP5 <SNB>\",\n            \"PortalName\": \"Data Roaming Bar World Traveller Zone\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 576460752303423488,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59455,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Bar Worldwide (except WT Zone)\",\n            \"NetworkSuffix\": \"DCP7\",\n            \"ISAAC_Add\": \"ADD DCP7 <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCP7 <SNB>\",\n            \"PortalName\": \"Data Roaming Bar Worldwide (except WT Zone)\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 1152921504606846976,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59456,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Bar EU Zone 2\",\n            \"NetworkSuffix\": \"DCP9\",\n            \"ISAAC_Add\": \"ADD DCP9 <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCP9 <SNB>\",\n            \"PortalName\": \"Data Roaming Bar EU Zone 2\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 2305843009213693952,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 59457,\n            \"NetworkID\": 2,\n            \"Description\": \"Data Roaming Bar Worldwide\",\n            \"NetworkSuffix\": \"DCP18\",\n            \"ISAAC_Add\": \"ADD DCP18 <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE DCP18 <SNB>\",\n            \"PortalName\": \"Data Roaming Bar Worldwide\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 4611686018427387904,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        },\n        {\n            \"TariffLevelOptionID\": 62448,\n            \"NetworkID\": 2,\n            \"Description\": \"5G Service\",\n            \"NetworkSuffix\": \"5g\",\n            \"ISAAC_Add\": \"ADD 5G <SNB>\",\n            \"ISAAC_Remove\": \"REMOVE 5G <SNB>\",\n            \"PortalName\": \"5G Service\",\n            \"Notes\": \"\",\n            \"TLO_Bit\": 512,\n            \"DefaultOn\": false,\n            \"Toggle\": null,\n            \"Command\": null,\n            \"Active\": false\n        }\n    ]\n]"}],"_postman_id":"ec45601e-8776-4fe5-b399-43210b69d131"}],"id":"db0b607b-9687-4b70-ab4a-a6c0cccfd9a2","description":"<p>This subfolder contains the primary API calls for the <code>/api/bars</code>endpoint.</p>\n","_postman_id":"db0b607b-9687-4b70-ab4a-a6c0cccfd9a2","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"24fde6b4-b522-45cd-ba85-200ade105059","description":"<p>The <code>/bars</code> endpoint allows you add, remove and view bars against mobile connections.</p>\n","_postman_id":"24fde6b4-b522-45cd-ba85-200ade105059","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Bundles Management","item":[{"name":"Appendix","item":[{"name":"List Bundles for Network","id":"5b977035-5a03-4936-8e85-cff176f84d5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api//Bundles/ListBundlesForNetwork","description":"<h3 id=\"list-bundles-for-network\">List Bundles for Network</h3>\n<h2 id=\"endpoint\">Endpoint</h2>\n<p><code>`GET /api/Bundles/ListBundlesForNetwork/`</code></p>\n<h2 id=\"description\">Description</h2>\n<p>This endpoint retrieves bundles available for Vodafone.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers-1\">Request Headers</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"TariffOptionID\": 0,\n        \"Description\": \"\",\n        \"ServiceRetailPrice\": 0.00\n    },\n    {\n        \"TariffOptionID\": 0,\n        \"Description\": \"\",\n        \"ServiceRetailPrice\": 0.00\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["Bundles","ListBundlesForNetwork"],"host":["https://stagingapi.click2sign.co.uk/api/"],"query":[],"variable":[]}},"response":[{"id":"08102250-f448-4dff-8c10-d75506865a4c","name":"Bundle List for Network","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bundles/ListBundlesForNetwork"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 23 Jun 2024 22:17:44 GMT"},{"key":"Content-Length","value":"15980"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"TariffOptionID\": 864,\n        \"Description\": \"VF (VBC) Blackberry BES 500mb\",\n        \"ServiceRetailPrice\": 16\n    },\n    {\n        \"TariffOptionID\": 863,\n        \"Description\": \"VF (VBC) Blackberry BIS 500mb\",\n        \"ServiceRetailPrice\": 6\n    },\n    {\n        \"TariffOptionID\": 867,\n        \"Description\": \"VF (VBC) Mobile Internet 5GB\",\n        \"ServiceRetailPrice\": 17.5\n    }\n]"}],"_postman_id":"5b977035-5a03-4936-8e85-cff176f84d5a"},{"name":"List Bundles for Tariff","id":"bd8f78b6-9142-4506-9d24-070feba5fb1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bundles/ListBundlesForTariff?tariffId=<tariff_id>","description":"<h2 id=\"list-bundles-for-tariff\">List Bundles for Tariff</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Bundles/ListBundlesForTariff/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Retrieves a list of bundles active against a specific tariff.</p>\n<h3 id=\"method\">Method</h3>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tariffId</td>\n<td>string</td>\n<td>The unique ID of the tariff</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>StartFragment</p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers-1\">Request Headers</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"TariffOptionID\":0,\n      \"Description\":\"\",\n      \"ServiceRetailPrice\":0\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["ListBundlesForTariff"],"host":["https://stagingapi.click2sign.co.uk/api/Bundles"],"query":[{"key":"tariffId","value":"<tariff_id>"}],"variable":[]}},"response":[{"id":"66194508-1109-4b1b-b03f-02ab97b35188","name":"List Bundles for Tariff","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Bundles/ListBundlesForTariff?tariffId=<tariff_id>","host":["https://stagingapi.click2sign.co.uk/api/Bundles"],"path":["ListBundlesForTariff"],"query":[{"key":"tariffId","value":"<tariff_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\r\n    {\r\n        \"TariffOptionID\": 864,\r\n        \"Description\": \"VF (VBC) Blackberry BES 500mb\",\r\n        \"ServiceRetailPrice\": 16\r\n    },\r\n    {\r\n        \"TariffOptionID\": 863,\r\n        \"Description\": \"VF (VBC) Blackberry BIS 500mb\",\r\n        \"ServiceRetailPrice\": 6\r\n    },\r\n    {\r\n        \"TariffOptionID\": 867,\r\n        \"Description\": \"VF (VBC) Mobile Internet 5GB\",\r\n        \"ServiceRetailPrice\": 17.5\r\n    }\r\n]"}],"_postman_id":"bd8f78b6-9142-4506-9d24-070feba5fb1a"}],"id":"dcef4ef0-538e-41d3-b2f5-24741b636e7b","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/bundles</code> endpoints.</p>\n","_postman_id":"dcef4ef0-538e-41d3-b2f5-24741b636e7b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add Bundle","id":"5f80491c-4475-44ef-a91a-e661a3551b05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bundles/AddBundle?tariffOptionId=<tariff_option_id>&contractId=<contract_ids>","description":"<h2 id=\"add-bundle\">Add Bundle</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Bundles/AddBundle/`</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint allows an API user to add a bundle against a connection associated to their account.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"tariffOptionId\":0,\n   \"contractId\":0\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tariffOptionId</td>\n<td>long</td>\n<td>The unique ID of the bundle to be added.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the mobile number the bundle will be applied against.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers-1\">Request Headers</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["AddBundle"],"host":["https://stagingapi.click2sign.co.uk/api/Bundles"],"query":[{"key":"tariffOptionId","value":"<tariff_option_id>"},{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"65b40459-5463-44dc-813b-3b5609ddfbb8","name":"Add Bundle","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Bundles/AddBundle?tariffOptionId=<tariff_option_id>&contractId=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Bundles"],"path":["AddBundle"],"query":[{"key":"tariffOptionId","value":"<tariff_option_id>"},{"key":"contractId","value":"<contract_ids>"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5f80491c-4475-44ef-a91a-e661a3551b05"},{"name":"Remove Bundle","id":"d63f0b0b-f536-434b-94d1-2f2729a7db18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Bundles/RemoveBundle?tariffOptionId=<tariff_option_id>&contractId=<contract_ids>","description":"<h2 id=\"remove-bundle\">Remove Bundle</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Bundles/RemoveBundles/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows an API user to remove a bundle against a connection associated to their account.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"tariffOptionId\":0,\n   \"contractId\":0\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>arameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tariffOptionId</td>\n<td>long</td>\n<td>The unique ID of the bundle to be added.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the mobile number the bundle will be applied against.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers-1\">Request Headers</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["RemoveBundle"],"host":["https://stagingapi.click2sign.co.uk/api/Bundles"],"query":[{"key":"tariffOptionId","value":"<tariff_option_id>"},{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"750b3f4e-a3b1-4bdd-a272-9de2dc520d0d","name":"Remove Bundle","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Bundles/RemoveBundle?tariffOptionId=<tariff_option_id>&contractId=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Bundles"],"path":["RemoveBundle"],"query":[{"key":"tariffOptionId","value":"<tariff_option_id>"},{"key":"contractId","value":"<contract_ids>"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"diary_entry_id\": 123456,\r\n    \"response_message\": \"\"\r\n}"}],"_postman_id":"d63f0b0b-f536-434b-94d1-2f2729a7db18"}],"id":"173c5b5d-0763-4344-9581-5b7d0661ab42","_postman_id":"173c5b5d-0763-4344-9581-5b7d0661ab42","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"6e39700d-12e1-43bc-a144-b94434e3f163","description":"<p>The <code>/bundles</code> endpoint allows for bundles to be viewed, added and removed against mobile connections.</p>\n","_postman_id":"6e39700d-12e1-43bc-a144-b94434e3f163","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"CLI Management","item":[{"name":"Appendix","item":[],"id":"ea5453ee-201d-476a-8fea-84a8b1318710","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/cli</code>endpoints.</p>\n","_postman_id":"ea5453ee-201d-476a-8fea-84a8b1318710","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get Connection(s) for Customer","id":"6d2e130e-641b-43f7-a9c8-22c799bbc815","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YXBpQHplbmludGVybmV0LmNvLnVrOkFjRTU2UlZqQkVHcDdZeWE="}],"body":{"mode":"formdata","formdata":[]},"url":"https://stagingapi.click2sign.co.uk/api/api/Connections/GetConnectionByCustomerId?customerId=<customer_id>","description":"<h2 id=\"get-connections-for-customer\">Get Connection(s) For Customer</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Connections/GetConnectionByCustomerID/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Retrieves a list of connections associated to a specific customer</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>Unique ID of the Customer.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"Network\":\"\",\n      \"Bars\":[\n      ],\n      \"Bundles\":[\n      ],\n      \"Term\":0,\n      \"ConnectionId\":0,\n      \"NetworkID\":0,\n      \"CustomerName\":\"\",\n      \"ResellerID\":0,\n      \"DistributorID\":0,\n      \"CustomerID\":0,\n      \"TLO_Bit\":0,\n      \"PUKCode\":\"\",\n      \"username\":\"\",\n      \"TariffID\":0,\n      \"CLI\":\"\",\n      \"SimNo\":\"\",\n      \"Tariff\":\"\",\n      \"CustomerAdminID\":0,\n      \"StartDate\":\"\",\n      \"TerminationDate\":\"\",\n      \"Status\":\"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["Connections","GetConnectionByCustomerId"],"host":["https://stagingapi.click2sign.co.uk/api/api"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"a162a1ae-6c0e-4b1a-a9c5-ad0eedc881cd","name":"Get Connection By CLI","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YXdhaXMuaHVzc2FpbkBhYnpvcmIuY28udWs6cGFzc3dvcmQ="}],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Connections/GetConnectionByCLI?CLI=<cli>","host":["https://stagingapi.click2sign.co.uk/api/Connections"],"path":["GetConnectionByCLI"],"query":[{"key":"CLI","value":"<cli>"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"Network\":\"\",\r\n      \"Bars\":[\r\n      ],\r\n      \"Bundles\":[\r\n \r\n      ],\r\n      \"Term\":0,\r\n      \"ConnectionId\":0,\r\n      \"NetworkID\":0,\r\n      \"CustomerName\":\"\",\r\n      \"ResellerID\":0,\r\n      \"DistributorID\":0,\r\n      \"CustomerID\":0,\r\n      \"TLO_Bit\":0,\r\n      \"PUKCode\":\"\",\r\n      \"username\":\"\",\r\n      \"TariffID\":0,\r\n      \"CLI\":\"\",\r\n      \"SimNo\":\"\",\r\n      \"Tariff\":\"\",\r\n      \"CustomerAdminID\":0,\r\n      \"StartDate\":\"\",\r\n      \"TerminationDate\":\"\",\r\n      \"Status\":\"\"\r\n   }\r\n]"}],"_postman_id":"6d2e130e-641b-43f7-a9c8-22c799bbc815"},{"name":"Get All Connections","id":"b995b572-4bb8-40bb-9a6f-483ae3fe1cfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api//Connections/","description":"<p>StartFragment</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET api/Connections/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Retrieves a list of all active connections associated to the API user.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p>None</p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers-1\">Request Headers</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"Network\":\"\",\n      \"Bars\":[\n      ],\n      \"Bundles\":[\n      ],\n      \"Term\":0,\n      \"ConnectionId\":0,\n      \"NetworkID\":0,\n      \"CustomerName\":\"\",\n      \"ResellerID\":0,\n      \"DistributorID\":0,\n      \"CustomerID\":0,\n      \"TLO_Bit\":0,\n      \"PUKCode\":\"\",\n      \"username\":\"\",\n      \"TariffID\":0,\n      \"CLI\":\"\",\n      \"SimNo\":\"\",\n      \"Tariff\":\"\",\n      \"CustomerAdminID\":0,\n      \"StartDate\":\"\",\n      \"TerminationDate\":\"\",\n      \"Status\":\"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["Connections",""],"host":["https://stagingapi.click2sign.co.uk/api/"],"query":[],"variable":[]}},"response":[{"id":"5a0cefcb-3f27-4e29-9392-d0890e019ef0","name":"Get All Connections","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/api/Connections/"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"Network\":\"\",\r\n      \"Bars\":[\r\n      ],\r\n      \"Bundles\":[\r\n      ],\r\n      \"Term\":0,\r\n      \"ConnectionId\":0,\r\n      \"NetworkID\":0,\r\n      \"CustomerName\":\"\",\r\n      \"ResellerID\":0,\r\n      \"DistributorID\":0,\r\n      \"CustomerID\":0,\r\n      \"TLO_Bit\":0,\r\n      \"PUKCode\":\"\",\r\n      \"username\":\"\",\r\n      \"TariffID\":0,\r\n      \"CLI\":\"\",\r\n      \"SimNo\":\"\",\r\n      \"Tariff\":\"\",\r\n      \"CustomerAdminID\":0,\r\n      \"StartDate\":\"\",\r\n      \"TerminationDate\":\"\",\r\n      \"Status\":\"\"\r\n   }\r\n]"}],"_postman_id":"b995b572-4bb8-40bb-9a6f-483ae3fe1cfc"},{"name":"Get Connection By CLI","id":"ad170f81-e679-41cb-889d-bf22a7774172","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/api/Connections/GetConnectionByCLI?cli=<cli>","description":"<h2 id=\"get-connection-by-cli\">Get Connection By CLI</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Connections/GetConnectionByCLI/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Retrieves connection details for a specific CLI.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>CLI to return results for</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers-1\">Request Headers</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"Network\": \"\",\n    \"Bars\": [],\n    \"Bundles\": [],\n    \"Term\": 0,\n    \"ConnectionId\": 0,\n    \"NetworkID\": 0,\n    \"CustomerName\": \"\",\n    \"ResellerID\": 0,\n    \"DistributorID\": 0,\n    \"CustomerID\": 0,\n    \"TLO_Bit\": 0,\n    \"PUKCode\": \"\",\n    \"username\": \"\",\n    \"TariffID\": 0,\n    \"Alert_Email\": \"\",\n    \"SMSEnabled\": false, \n    \"Cost_Threshold\": 0.0,\n    \"Data_Threshold\": 0.0,\n    \"Minutes_Threshold\": 0.0,\n    \"SMS_Threshold\": 0.0,\n    \"Data_Step\": 0.0,\n    \"Minutes_Step\": 0.0,\n    \"SMS_Step\": 0.0,\n    \"Cost_AutoBar\": false,\n    \"Usage_AutoBar\": false,\n    \"IsBillCapEnabled\": false,\n    \"IsBillCapEligible\": false,\n    \"Current_Cost\": 0.00,\n    \"Current_Data\": 0.00,\n    \"Current_Minutes\": 0.00,\n    \"Current_SMS\": 0.00,\n    \"CLI\": \"\",\n    \"SimNo\": \"\",\n    \"Tariff\": \"\",\n    \"CustomerAdminID\": 0,\n    \"StartDate\": \"\",\n    \"TerminationDate\": \"\",\n    \"Status\": \"\"\n  }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Network</td>\n<td>string</td>\n<td>The name of the mobile network e.g. abZ, O2, Vodafone</td>\n</tr>\n<tr>\n<td>Bars</td>\n<td>Array</td>\n<td>An array of bars that are available against the CLI and specifically references 'active' against those that are applied</td>\n</tr>\n<tr>\n<td>Bundles</td>\n<td>Array</td>\n<td>An array of bundles active against the CLI</td>\n</tr>\n<tr>\n<td>Term</td>\n<td>integer</td>\n<td>The term of the connection</td>\n</tr>\n<tr>\n<td>ConnectionId</td>\n<td>long</td>\n<td>The unique ID of the connection</td>\n</tr>\n<tr>\n<td>NetworkID</td>\n<td>long</td>\n<td>NetworkID of the connection</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td>string</td>\n<td>The unique name of the customer</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>The unique ID of the Reseller</td>\n</tr>\n<tr>\n<td>DistributorID</td>\n<td>long</td>\n<td>The unique ID of the Distributor</td>\n</tr>\n<tr>\n<td>CustomerID</td>\n<td>long</td>\n<td>The unique ID of the customer</td>\n</tr>\n<tr>\n<td>TLO_Bit</td>\n<td>long</td>\n<td>The unique value used to determine the bars applied against the connection</td>\n</tr>\n<tr>\n<td>PUKCode</td>\n<td>string</td>\n<td>The PUK code of the connection</td>\n</tr>\n<tr>\n<td>username</td>\n<td>string</td>\n<td>The username associated to the connection</td>\n</tr>\n<tr>\n<td>TariffID</td>\n<td>long</td>\n<td>The unique ID of the tariff associated to the connection</td>\n</tr>\n<tr>\n<td>Alert_Email</td>\n<td>string</td>\n<td>The email address associated to the CLI for Alerting</td>\n</tr>\n<tr>\n<td>SMSEnabled</td>\n<td>boolean</td>\n<td>Indicates if SMS alerting is enabled against the CLI</td>\n</tr>\n<tr>\n<td>Cost_Threshold</td>\n<td>double</td>\n<td>The alerting cost threshold for the CLI</td>\n</tr>\n<tr>\n<td>Data_Threshold</td>\n<td>double</td>\n<td>The alerting data threshold for the CLI</td>\n</tr>\n<tr>\n<td>Minutes_Threshold</td>\n<td>double</td>\n<td>The alerting minutes threshold for the CLI</td>\n</tr>\n<tr>\n<td>SMS_Threshold</td>\n<td>double</td>\n<td>The alerting SMS threshold for the CLI</td>\n</tr>\n<tr>\n<td>Data_Step</td>\n<td>double</td>\n<td>The increment at which data notifications are sent</td>\n</tr>\n<tr>\n<td>Minutes_Step</td>\n<td>double</td>\n<td>The increment at which minutes notifications are sent</td>\n</tr>\n<tr>\n<td>SMS_Step</td>\n<td>double</td>\n<td>The increment at which SMS notifications are sent</td>\n</tr>\n<tr>\n<td>Cost_AutoBar</td>\n<td>boolean</td>\n<td>Indicates whether AutoBar is turned on or off</td>\n</tr>\n<tr>\n<td>Usage_AutoBar</td>\n<td>boolean</td>\n<td>Indicates whether AutoBar is turned on or off</td>\n</tr>\n<tr>\n<td>IsBillCapEnabled</td>\n<td>boolean</td>\n<td>Indicates if Bill Capping is enabled or not against the connection</td>\n</tr>\n<tr>\n<td>IsBillCapEligible</td>\n<td>boolean</td>\n<td>Indicates if the CLI is eligible for Bill Capping (whether it is enabled or not)</td>\n</tr>\n<tr>\n<td>Current_Cost</td>\n<td>decimal</td>\n<td>The current cost against the CLI</td>\n</tr>\n<tr>\n<td>Current_Data</td>\n<td>decimal</td>\n<td>The current data cost against the CLI</td>\n</tr>\n<tr>\n<td>Current_Minutes</td>\n<td>decimal</td>\n<td>The current minutes cost against the CLI</td>\n</tr>\n<tr>\n<td>Current_SMS</td>\n<td>decimal</td>\n<td>The current SMS cost against the CLI</td>\n</tr>\n<tr>\n<td>CLI</td>\n<td>string</td>\n<td>The Calling Line Identification (CLI) associated to the connection</td>\n</tr>\n<tr>\n<td>SimNo</td>\n<td>string</td>\n<td>The SIM number associated to the connection</td>\n</tr>\n<tr>\n<td>Tariff</td>\n<td>string</td>\n<td>The tariff associated to the connection</td>\n</tr>\n<tr>\n<td>CustomerAdminID</td>\n<td>long</td>\n<td>The API user associated to the connection</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>datetime</td>\n<td>The StartDate of the connection</td>\n</tr>\n<tr>\n<td>TerminationDate</td>\n<td>datetime</td>\n<td>The TerminationDate of the connection</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>The status of the conneciton e.g. Active, Pending</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["Connections","GetConnectionByCLI"],"host":["https://stagingapi.click2sign.co.uk/api/api"],"query":[{"key":"cli","value":"<cli>"}],"variable":[]}},"response":[{"id":"df4b33ac-c11f-4efc-b068-7aa5b7ecbde7","name":"Get Connection By CLI","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YXdhaXMuaHVzc2FpbkBhYnpvcmIuY28udWs6cGFzc3dvcmQ="}],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Connections/GetConnectionByCLI?CLI=<cli>","host":["https://stagingapi.click2sign.co.uk/api/Connections"],"path":["GetConnectionByCLI"],"query":[{"key":"CLI","value":"<cli>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"Network\": \"\",\r\n    \"Bars\": [],\r\n    \"Bundles\": [],\r\n    \"Term\": 0,\r\n    \"ConnectionId\": 0,\r\n    \"NetworkID\": 0,\r\n    \"CustomerName\": \"\",\r\n    \"ResellerID\": 0,\r\n    \"DistributorID\": 0,\r\n    \"CustomerID\": 0,\r\n    \"TLO_Bit\": 0,\r\n    \"PUKCode\": \"\",\r\n    \"username\": \"\",\r\n    \"TariffID\": 0,\r\n    \"Alert_Email\": \"\",\r\n    \"SMSEnabled\": false, \r\n    \"Cost_Threshold\": 0.0,\r\n    \"Data_Threshold\": 0.0,\r\n    \"Minutes_Threshold\": 0.0,\r\n    \"SMS_Threshold\": 0.0,\r\n    \"Data_Step\": 0.0,\r\n    \"Minutes_Step\": 0.0,\r\n    \"SMS_Step\": 0.0,\r\n    \"Cost_AutoBar\": false,\r\n    \"Usage_AutoBar\": false,\r\n    \"IsBillCapEnabled\": false,\r\n    \"IsBillCapEligible\": false,\r\n    \"Current_Cost\": 0.00,\r\n    \"Current_Data\": 0.00,\r\n    \"Current_Minutes\": 0.00,\r\n    \"Current_SMS\": 0.00,\r\n    \"CLI\": \"\",\r\n    \"SimNo\": \"\",\r\n    \"Tariff\": \"\",\r\n    \"CustomerAdminID\": 0,\r\n    \"StartDate\": \"\",\r\n    \"TerminationDate\": \"\",\r\n    \"Status\": \"\"\r\n  }\r\n]"}],"_postman_id":"ad170f81-e679-41cb-889d-bf22a7774172"}],"id":"07e426db-a83c-4a2d-828a-8c2c36b5737c","description":"<p>This subfolder contains the primary API calls for the <code>/api/cli</code>endpoint.</p>\n","_postman_id":"07e426db-a83c-4a2d-828a-8c2c36b5737c","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"5b82a400-ca49-44a2-b3b6-ae1c4edcb2e9","description":"<p>The <code>/connections</code> endpoint is used to manage all connections associated to the API user.</p>\n","_postman_id":"5b82a400-ca49-44a2-b3b6-ae1c4edcb2e9","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Customer Management","item":[{"name":"Appendix","item":[{"name":"Get Customer Business Types","id":"02ad7231-07ca-469e-a363-a81f9f5b7495","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Customer/GetCustomerBusinessTypes","description":"<h2 id=\"get-customer-business-types\">Get Customer Business Types</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Customer/GetCustomerBusniessTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to retrieve a list of applicable customer business types which can be used when creating a customer.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"BusinessTypeID\": 0,\n      \"Description\": \"\"\n   },\n   {\n      \"BusinessTypeID\": 0,\n      \"Description\": \"\"\n   },\n   {\n      \"BusinessTypeID\": 0,\n      \"Description\": \"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetCustomerBusinessTypes"],"host":["https://stagingapi.click2sign.co.uk/api/Customer"],"query":[],"variable":[]}},"response":[{"id":"7f4366c0-3e68-4627-862d-aadce5134105","name":"Get Customer Business Types","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Customer/GetCustomerBusinessTypes"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"BusinessTypeID\": 1,\n        \"Description\": \"Private Individual\"\n    },\n    {\n        \"BusinessTypeID\": 2,\n        \"Description\": \"Limited Company\"\n    },\n    {\n        \"BusinessTypeID\": 3,\n        \"Description\": \"Partnership\"\n    }\n]"}],"_postman_id":"02ad7231-07ca-469e-a363-a81f9f5b7495"}],"id":"00830715-c3de-4d87-a91f-2deaa3862f06","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/customer</code>endpoints.</p>\n","_postman_id":"00830715-c3de-4d87-a91f-2deaa3862f06","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Create Customer","event":[{"listen":"test","script":{"exec":["var template = `\r","<style type=\"text/css\">\r","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}\r","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}\r","    .tftable tr {background-color:#ffffff;}\r","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}\r","    .tftable tr:hover {background-color:#e0ffff;}\r","</style>\r","\r","<table class=\"tftable\" border=\"1\">\r","    <tr>\r","        <th>Customer ID</th>\r","        <th>Name</th>\r","        <th>Email</th>\r","        <th>Phone</th>\r","    </tr>\r","    \r","    <tr>\r","        <td>{{response.CustomerID}}</td>\r","        <td>{{response.Name}}</td>\r","        <td>{{response.Email}}</td>\r","        <td>{{response.Phone}}</td>\r","    </tr>\r","</table>\r","`;\r","\r","function constructVisualizerPayload() {\r","    return { response: pm.response.json() }\r","}\r","\r","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript","packages":{},"id":"70f8defe-e2aa-4823-8d35-92abab8fc0a0"}}],"id":"9a7f31b5-517c-4d3e-b68d-66976c7953cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerName\": \"\",\r\n    \"Mobile\": \"\",\r\n    \"Email\": \"\",\r\n    \"CustomerType\": 0,\r\n    \"MainTelephone\": \"\",\r\n    \"ResellerMainTelephone\": null,\r\n    \"ResellerMainEmail\": null,\r\n    \"Fax\": \"\",\r\n    \"ResellerID\": 0,\r\n    \"AccountManagerID\": 0,\r\n    \"SalesStaffID\": 0,\r\n    \"DistributorID\": 0,\r\n    \"PrimaryContact\": {\r\n        \"Title\": \"\",\r\n        \"Forename\": \"\",\r\n        \"Surname\": \"\",\r\n        \"Position\": \"\",\r\n        \"Email\": \"\",\r\n        \"Mobile\": \"\",\r\n        \"Telephone\": \"\"\r\n    },\r\n    \"PrimaryContactID\": 0,\r\n    \"PrimaryAddress\": {\r\n        \"PostCode\": \"\",\r\n        \"AddressLine1\": \"\",\r\n        \"AddressLine2\": \"\",\r\n        \"AddressLine3\": \"\",\r\n        \"AddressTown\": \"\",\r\n        \"AddressCounty\": \"\"\r\n    },\r\n    \"InvoiceAddress\": {\r\n        \"PostCode\": \"\",\r\n        \"AddressLine1\": \"\",\r\n        \"AddressLine2\": \"\",\r\n        \"AddressLine3\": \"\",\r\n        \"AddressTown\": \"\",\r\n        \"AddressCounty\": \"\"\r\n    },\r\n    \"IsReseller\": null,\r\n    \"CoRegNumber\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/Customer/CreateCustomer","description":"<h2 id=\"create-customer\">Create Customer</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Customer/CreateCustomer/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows you to create a new customer.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"CustomerName\": \"\",\n    \"Mobile\": \"\",\n    \"Email\": \"\",\n    \"CustomerType\": 0,\n    \"MainTelephone\": \"\",\n    \"ResellerMainTelephone\": null,\n    \"ResellerMainEmail\": null,\n    \"Fax\": \"\",\n    \"ResellerID\": 0,\n    \"AccountManagerID\": 0,\n    \"SalesStaffID\": 0,\n    \"DistributorID\": 0,\n    \"PrimaryContact\": {\n        \"Title\": \"\",\n        \"Forename\": \"\",\n        \"Surname\": \"\",\n        \"Position\": \"\",\n        \"Email\": \"\",\n        \"Mobile\": \"\",\n        \"Telephone\": \"\"\n    },\n    \"PrimaryContactID\": 0,\n    \"PrimaryAddress\": {\n        \"PostCode\": \"\",\n        \"AddressLine1\": \"\",\n        \"AddressLine2\": \"\",\n        \"AddressLine3\": \"\",\n        \"AddressTown\": \"\",\n        \"AddressCounty\": \"\"\n    },\n    \"InvoiceAddress\": {\n        \"PostCode\": \"\",\n        \"AddressLine1\": \"\",\n        \"AddressLine2\": \"\",\n        \"AddressLine3\": \"\",\n        \"AddressTown\": \"\",\n        \"AddressCounty\": \"\"\n    },\n    \"IsReseller\": true,\n    \"CoRegNumber\": \"\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td>string</td>\n<td>The name of the customer.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Mobile</td>\n<td>string</td>\n<td>The mobile number of the customer.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>The email address of the customer.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>CustomerType</td>\n<td>integer</td>\n<td>The type of the customer.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>MainTelephone</td>\n<td>string</td>\n<td>The main telephone number of the customer.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Fax</td>\n<td>string</td>\n<td>The fax number of the customer.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>The ID of the reseller.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AccountManagerID</td>\n<td>long</td>\n<td>The ID of the account manager.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>SalesStaffID</td>\n<td>long</td>\n<td>The ID of the sales staff.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>DistributorID</td>\n<td>long</td>\n<td>The ID of the distributor.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>IsReseller</td>\n<td>boolean</td>\n<td>Indicates if the customer is a reseller.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>PrimaryContact</td>\n<td>object</td>\n<td>The primary contact details.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>string</td>\n<td>The title of the primary contact.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Forename</td>\n<td>string</td>\n<td>The forename of the primary contact.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Surname</td>\n<td>string</td>\n<td>The surname of the primary contact.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Position</td>\n<td>string</td>\n<td>The position of the primary contact.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>PrimaryAddress</td>\n<td>object</td>\n<td>The primary address details.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td>string</td>\n<td>The post code of the primary address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td>string</td>\n<td>The first line of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td>string</td>\n<td>The second line of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressLine3</td>\n<td>string</td>\n<td>The third line of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressTown</td>\n<td>string</td>\n<td>The town of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressCounty</td>\n<td>string</td>\n<td>The county of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>InvoiceAddress</td>\n<td>object</td>\n<td>The invoice address details.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td>string</td>\n<td>The post code of the invoice address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td>string</td>\n<td>The first line of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td>string</td>\n<td>The second line of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressLine3</td>\n<td>string</td>\n<td>The third line of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressTown</td>\n<td>string</td>\n<td>The town of the address.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>AddressCounty</td>\n<td>string</td>\n<td>The county of the address.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"CustomerId\": 0,\n    \"CustomerName\": \"\",\n    \"Mobile\": \"\",\n    \"Email\": \"\",\n    \"CustomerType\": 0,\n    \"MainTelephone\": \"\",\n    \"ResellerMainTelephone\": null,\n    \"ResellerMainEmail\": null,\n    \"Fax\": \"\",\n    \"ResellerID\": 0,\n    \"AccountManagerID\": 0,\n    \"SalesStaffID\": 0,\n    \"DistributorID\": 0,\n    \"PrimaryContact\": {\n        \"Title\": \"\",\n        \"Forename\": \"\",\n        \"Surname\": \"\",\n        \"Position\": \"\",\n        \"Email\": \"\",\n        \"Mobile\": \"\",\n        \"Telephone\": \"\"\n    },\n    \"PrimaryContactID\": 0,\n    \"PrimaryAddress\": {\n        \"PostCode\": \"\",\n        \"AddressLine1\": \"\",\n        \"AddressLine2\": \"\",\n        \"AddressLine3\": \"\",\n        \"AddressTown\": \"\",\n        \"AddressCounty\": \"\"\n    },\n    \"InvoiceAddress\": {\n        \"PostCode\": \"\",\n        \"AddressLine1\": \"\",\n        \"AddressLine2\": \"\",\n        \"AddressLine3\": \"\",\n        \"AddressTown\": \"\",\n        \"AddressCounty\": \"\"\n    },\n    \"IsReseller\": null,\n    \"CoRegNumber\": \"\",\n    \"Connections\": null\n}\n\n</code></pre>\n","urlObject":{"path":["CreateCustomer"],"host":["https://stagingapi.click2sign.co.uk/api/Customer"],"query":[],"variable":[]}},"response":[{"id":"9c52df85-965c-4da0-a80d-6651abbcc977","name":"Create Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerName\": \"\",\r\n    \"Mobile\": \"\",\r\n    \"Email\": \"\",\r\n    \"CustomerType\": 0,\r\n    \"MainTelephone\": \"\",\r\n    \"ResellerMainTelephone\": null,\r\n    \"ResellerMainEmail\": null,\r\n    \"Fax\": \"\",\r\n    \"ResellerID\": 0,\r\n    \"AccountManagerID\": 0,\r\n    \"SalesStaffID\": 0,\r\n    \"DistributorID\": 0,\r\n    \"PrimaryContact\": {\r\n        \"Title\": \"\",\r\n        \"Forename\": \"\",\r\n        \"Surname\": \"\",\r\n        \"Position\": \"\",\r\n        \"Email\": \"\",\r\n        \"Mobile\": \"\",\r\n        \"Telephone\": \"\"\r\n    },\r\n    \"PrimaryContactID\": 0,\r\n    \"PrimaryAddress\": {\r\n        \"PostCode\": \"\",\r\n        \"AddressLine1\": \"\",\r\n        \"AddressLine2\": \"\",\r\n        \"AddressLine3\": \"\",\r\n        \"AddressTown\": \"\",\r\n        \"AddressCounty\": \"\"\r\n    },\r\n    \"InvoiceAddress\": {\r\n        \"PostCode\": \"\",\r\n        \"AddressLine1\": \"\",\r\n        \"AddressLine2\": \"\",\r\n        \"AddressLine3\": \"\",\r\n        \"AddressTown\": \"\",\r\n        \"AddressCounty\": \"\"\r\n    },\r\n    \"IsReseller\": null,\r\n    \"CoRegNumber\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/Customer/CreateCustomer"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CustomerId\": 0,\r\n    \"CustomerName\": \"\",\r\n    \"Mobile\": \"\",\r\n    \"Email\": \"\",\r\n    \"CustomerType\": 0,\r\n    \"MainTelephone\": \"\",\r\n    \"ResellerMainTelephone\": null,\r\n    \"ResellerMainEmail\": null,\r\n    \"Fax\": \"\",\r\n    \"ResellerID\": 0,\r\n    \"AccountManagerID\": 0,\r\n    \"SalesStaffID\": 0,\r\n    \"DistributorID\": 0,\r\n    \"PrimaryContact\": {\r\n        \"Title\": \"\",\r\n        \"Forename\": \"\",\r\n        \"Surname\": \"\",\r\n        \"Position\": \"\",\r\n        \"Email\": \"\",\r\n        \"Mobile\": \"\",\r\n        \"Telephone\": \"\"\r\n    },\r\n    \"PrimaryContactID\": 0,\r\n    \"PrimaryAddress\": {\r\n        \"PostCode\": \"\",\r\n        \"AddressLine1\": \"\",\r\n        \"AddressLine2\": \"\",\r\n        \"AddressLine3\": \"\",\r\n        \"AddressTown\": \"\",\r\n        \"AddressCounty\": \"\"\r\n    },\r\n    \"InvoiceAddress\": {\r\n        \"PostCode\": \"\",\r\n        \"AddressLine1\": \"\",\r\n        \"AddressLine2\": \"\",\r\n        \"AddressLine3\": \"\",\r\n        \"AddressTown\": \"\",\r\n        \"AddressCounty\": \"\"\r\n    },\r\n    \"IsReseller\": null,\r\n    \"CoRegNumber\": \"\",\r\n    \"Connections\": null\r\n}\r\n"}],"_postman_id":"9a7f31b5-517c-4d3e-b68d-66976c7953cb"},{"name":"Get All Customers","id":"992b72a2-7b98-42eb-87f3-9803f9cda106","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Customer/GetCustomers","description":"<h2 id=\"get-all-customers\">Get All Customers</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Customer/GetCustomers/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to retrieve a list of customers associated to the API user.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"CustomerId\":0,\n      \"CustomerName\":\"\",\n      \"Mobile\":\"\",\n      \"Email\":\"\",\n      \"CustomerType\":0,\n      \"MainTelephone\":\"\",\n      \"ResellerMainTelephone\":null,\n      \"ResellerMainEmail\":null,\n      \"Fax\":\"\",\n      \"ResellerID\":0,\n      \"AccountManagerID\":0,\n      \"SalesStaffID\":0,\n      \"DistributorID\":0,\n      \"PrimaryContact\":{\n         \"Title\":\"\",\n         \"Forename\":\"\",\n         \"Surname\":\"\",\n         \"Position\":\"\",\n         \"Email\":\"\",\n         \"Mobile\":\"\",\n         \"Telephone\":\"\"\n      },\n      \"PrimaryContactID\":0,\n      \"PrimaryAddress\":{\n         \"PostCode\":\"\",\n         \"AddressLine1\":\"\",\n         \"AddressLine2\":\"\",\n         \"AddressLine3\":\"\",\n         \"AddressTown\":\"\",\n         \"AddressCounty\":\"\"\n      },\n      \"InvoiceAddress\":{\n         \"PostCode\":\"\",\n         \"AddressLine1\":\"\",\n         \"AddressLine2\":\"\",\n         \"AddressLine3\":\"\",\n         \"AddressTown\":\"\",\n         \"AddressCounty\":\"\"\n      },\n      \"IsReseller\":null,\n      \"CoRegNumber\":\"\",\n      \"Connections\":null\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetCustomers"],"host":["https://stagingapi.click2sign.co.uk/api/Customer"],"query":[],"variable":[]}},"response":[{"id":"52b85c7f-0aca-4c20-9e9c-7aaf8f14fa41","name":"Get All Customers","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Customer/GetCustomers"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"CustomerId\":0,\r\n      \"CustomerName\":\"\",\r\n      \"Mobile\":\"\",\r\n      \"Email\":\"\",\r\n      \"CustomerType\":0,\r\n      \"MainTelephone\":\"\",\r\n      \"ResellerMainTelephone\":null,\r\n      \"ResellerMainEmail\":null,\r\n      \"Fax\":\"\",\r\n      \"ResellerID\":0,\r\n      \"AccountManagerID\":0,\r\n      \"SalesStaffID\":0,\r\n      \"DistributorID\":0,\r\n      \"PrimaryContact\":{\r\n         \"Title\":\"\",\r\n         \"Forename\":\"\",\r\n         \"Surname\":\"\",\r\n         \"Position\":\"\",\r\n         \"Email\":\"\",\r\n         \"Mobile\":\"\",\r\n         \"Telephone\":\"\"\r\n      },\r\n      \"PrimaryContactID\":0,\r\n      \"PrimaryAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"InvoiceAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"IsReseller\":null,\r\n      \"CoRegNumber\":\"\",\r\n      \"Connections\":null\r\n   },\r\n   {\r\n      \"CustomerId\":0,\r\n      \"CustomerName\":\"\",\r\n      \"Mobile\":\"\",\r\n      \"Email\":\"\",\r\n      \"CustomerType\":0,\r\n      \"MainTelephone\":\"\",\r\n      \"ResellerMainTelephone\":null,\r\n      \"ResellerMainEmail\":null,\r\n      \"Fax\":\"\",\r\n      \"ResellerID\":0,\r\n      \"AccountManagerID\":0,\r\n      \"SalesStaffID\":0,\r\n      \"DistributorID\":0,\r\n      \"PrimaryContact\":{\r\n         \"Title\":\"\",\r\n         \"Forename\":\"\",\r\n         \"Surname\":\"\",\r\n         \"Position\":\"\",\r\n         \"Email\":\"\",\r\n         \"Mobile\":\"\",\r\n         \"Telephone\":\"\"\r\n      },\r\n      \"PrimaryContactID\":0,\r\n      \"PrimaryAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"InvoiceAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"IsReseller\":null,\r\n      \"CoRegNumber\":\"\",\r\n      \"Connections\":null\r\n   },\r\n   {\r\n      \"CustomerId\":0,\r\n      \"CustomerName\":\"\",\r\n      \"Mobile\":\"\",\r\n      \"Email\":\"\",\r\n      \"CustomerType\":0,\r\n      \"MainTelephone\":\"\",\r\n      \"ResellerMainTelephone\":null,\r\n      \"ResellerMainEmail\":null,\r\n      \"Fax\":\"\",\r\n      \"ResellerID\":0,\r\n      \"AccountManagerID\":0,\r\n      \"SalesStaffID\":0,\r\n      \"DistributorID\":0,\r\n      \"PrimaryContact\":{\r\n         \"Title\":\"\",\r\n         \"Forename\":\"\",\r\n         \"Surname\":\"\",\r\n         \"Position\":\"\",\r\n         \"Email\":\"\",\r\n         \"Mobile\":\"\",\r\n         \"Telephone\":\"\"\r\n      },\r\n      \"PrimaryContactID\":0,\r\n      \"PrimaryAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"InvoiceAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"IsReseller\":null,\r\n      \"CoRegNumber\":\"\",\r\n      \"Connections\":null\r\n   },\r\n   {\r\n      \"CustomerId\":0,\r\n      \"CustomerName\":\"\",\r\n      \"Mobile\":\"\",\r\n      \"Email\":\"\",\r\n      \"CustomerType\":0,\r\n      \"MainTelephone\":\"\",\r\n      \"ResellerMainTelephone\":null,\r\n      \"ResellerMainEmail\":null,\r\n      \"Fax\":\"\",\r\n      \"ResellerID\":0,\r\n      \"AccountManagerID\":0,\r\n      \"SalesStaffID\":0,\r\n      \"DistributorID\":0,\r\n      \"PrimaryContact\":{\r\n         \"Title\":null,\r\n         \"Forename\":null,\r\n         \"Surname\":null,\r\n         \"Position\":null,\r\n         \"Email\":null,\r\n         \"Mobile\":null,\r\n         \"Telephone\":null\r\n      },\r\n      \"PrimaryContactID\":0,\r\n      \"PrimaryAddress\":{\r\n         \"PostCode\":null,\r\n         \"AddressLine1\":null,\r\n         \"AddressLine2\":null,\r\n         \"AddressLine3\":null,\r\n         \"AddressTown\":null,\r\n         \"AddressCounty\":null\r\n      },\r\n      \"InvoiceAddress\":{\r\n         \"PostCode\":null,\r\n         \"AddressLine1\":null,\r\n         \"AddressLine2\":null,\r\n         \"AddressLine3\":null,\r\n         \"AddressTown\":null,\r\n         \"AddressCounty\":null\r\n      },\r\n      \"IsReseller\":null,\r\n      \"CoRegNumber\":\"\",\r\n      \"Connections\":null\r\n   },\r\n   {\r\n      \"CustomerId\":0,\r\n      \"CustomerName\":\"\",\r\n      \"Mobile\":\"\",\r\n      \"Email\":\"\",\r\n      \"CustomerType\":0,\r\n      \"MainTelephone\":\"\",\r\n      \"ResellerMainTelephone\":null,\r\n      \"ResellerMainEmail\":null,\r\n      \"Fax\":\"\",\r\n      \"ResellerID\":0,\r\n      \"AccountManagerID\":0,\r\n      \"SalesStaffID\":0,\r\n      \"DistributorID\":0,\r\n      \"PrimaryContact\":{\r\n         \"Title\":\"\",\r\n         \"Forename\":\"\",\r\n         \"Surname\":\"\",\r\n         \"Position\":\"\",\r\n         \"Email\":\"\",\r\n         \"Mobile\":\"\",\r\n         \"Telephone\":\"\"\r\n      },\r\n      \"PrimaryContactID\":0,\r\n      \"PrimaryAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"InvoiceAddress\":{\r\n         \"PostCode\":\"\",\r\n         \"AddressLine1\":\"\",\r\n         \"AddressLine2\":\"\",\r\n         \"AddressLine3\":\"\",\r\n         \"AddressTown\":\"\",\r\n         \"AddressCounty\":\"\"\r\n      },\r\n      \"IsReseller\":null,\r\n      \"CoRegNumber\":\"\",\r\n      \"Connections\":null\r\n   }\r\n]"}],"_postman_id":"992b72a2-7b98-42eb-87f3-9803f9cda106"},{"name":"Get Individual Customer Details","id":"d1db74dd-09d4-46ce-89d8-e81464150ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Customer/GetCustomerDetails?customerId=<customer_id>","description":"<h2 id=\"get-individual-customer-details\">Get Individual Customer Details</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Customer/GetCustomerDetails/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to retrieve customer details for a specific customer</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>Unique ID of the Customer.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"CustomerId\":0,\n   \"CustomerName\":\"\",\n   \"Mobile\":\"\",\n   \"Email\":\"\",\n   \"CustomerType\":0,\n   \"MainTelephone\":\"\",\n   \"ResellerMainTelephone\":null,\n   \"ResellerMainEmail\":null,\n   \"Fax\":\"\",\n   \"ResellerID\":0,\n   \"AccountManagerID\":0,\n   \"SalesStaffID\":0,\n   \"DistributorID\":0,\n   \"PrimaryContact\":{\n      \"Title\":\"\",\n      \"Forename\":\"\",\n      \"Surname\":\"\",\n      \"Position\":\"\",\n      \"Email\":\"\",\n      \"Mobile\":\"\",\n      \"Telephone\":\"\"\n   },\n   \"PrimaryContactID\":0,\n   \"PrimaryAddress\":{\n      \"PostCode\":\"\",\n      \"AddressLine1\":\"\",\n      \"AddressLine2\":\"\",\n      \"AddressLine3\":\"\",\n      \"AddressTown\":\"\",\n      \"AddressCounty\":\"\"\n   },\n   \"InvoiceAddress\":{\n      \"PostCode\":\"\",\n      \"AddressLine1\":\"\",\n      \"AddressLine2\":\"\",\n      \"AddressLine3\":\"\",\n      \"AddressTown\":\"\",\n      \"AddressCounty\":\"\"\n   },\n   \"IsReseller\":null,\n   \"CoRegNumber\":\"\",\n   \"Connections\":null\n}\n\n</code></pre>\n","urlObject":{"path":["GetCustomerDetails"],"host":["https://stagingapi.click2sign.co.uk/api/Customer"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"c828cae2-9e9c-42b1-a80a-97d24f2b993e","name":"Get Individual Customer Details","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Customer/GetCustomerDetails"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n   \"CustomerId\":0,\r\n   \"CustomerName\":\"\",\r\n   \"Mobile\":\"\",\r\n   \"Email\":\"\",\r\n   \"CustomerType\":0,\r\n   \"MainTelephone\":\"\",\r\n   \"ResellerMainTelephone\":null,\r\n   \"ResellerMainEmail\":null,\r\n   \"Fax\":\"\",\r\n   \"ResellerID\":0,\r\n   \"AccountManagerID\":0,\r\n   \"SalesStaffID\":0,\r\n   \"DistributorID\":0,\r\n   \"PrimaryContact\":{\r\n      \"Title\":\"\",\r\n      \"Forename\":\"\",\r\n      \"Surname\":\"\",\r\n      \"Position\":\"\",\r\n      \"Email\":\"\",\r\n      \"Mobile\":\"\",\r\n      \"Telephone\":\"\"\r\n   },\r\n   \"PrimaryContactID\":0,\r\n   \"PrimaryAddress\":{\r\n      \"PostCode\":\"\",\r\n      \"AddressLine1\":\"\",\r\n      \"AddressLine2\":\"\",\r\n      \"AddressLine3\":\"\",\r\n      \"AddressTown\":\"\",\r\n      \"AddressCounty\":\"\"\r\n   },\r\n   \"InvoiceAddress\":{\r\n      \"PostCode\":\"\",\r\n      \"AddressLine1\":\"\",\r\n      \"AddressLine2\":\"\",\r\n      \"AddressLine3\":\"\",\r\n      \"AddressTown\":\"\",\r\n      \"AddressCounty\":\"\"\r\n   },\r\n   \"IsReseller\":null,\r\n   \"CoRegNumber\":\"\",\r\n   \"Connections\":null\r\n}"}],"_postman_id":"d1db74dd-09d4-46ce-89d8-e81464150ec8"}],"id":"2b7a6c16-b1f5-481c-8ebc-0ca485b88350","description":"<p>This subfolder contains the primary API calls for the <code>/api/main</code>endpoint.</p>\n","_postman_id":"2b7a6c16-b1f5-481c-8ebc-0ca485b88350","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"13ebe038-6a5b-4040-8aac-8c91d6d6a731","description":"<p>The <code>/customer</code> endpoint allows new customers to be created and existing customer information to be retrieved.</p>\n","_postman_id":"13ebe038-6a5b-4040-8aac-8c91d6d6a731","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Divert Controller","item":[{"name":"Appendix","item":[],"id":"684545b6-4b91-4eb4-ad5a-98c051ab3ee0","_postman_id":"684545b6-4b91-4eb4-ad5a-98c051ab3ee0","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add or Remove Divert","id":"c0d462d8-aecb-4a37-bc98-78ac2f70ef63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Divert/DivertHandset?cli=<cli>&contractId=<contract_ids>&divertCli=<diver_cli>&toggleStatus=<toggle_bar>","description":"<h2 id=\"add-or-remove-divert\">Add or Remove Divert</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/divert/DivertHandset/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to toggle a Divert on/off for a given connection.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"cli\": \"\",\n   \"contractId\": 0,\n   \"divertCli\": \"\",\n   \"toggleStatus\": true\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>The mobile number for the contract.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>divertCli</td>\n<td>string</td>\n<td>The divert CLI</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>toggleStatus</td>\n<td>boolean</td>\n<td>Boolean value if set to true = on and false = off</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["DivertHandset"],"host":["https://stagingapi.click2sign.co.uk/api/Divert"],"query":[{"key":"cli","value":"<cli>"},{"key":"contractId","value":"<contract_ids>"},{"key":"divertCli","value":"<diver_cli>"},{"key":"toggleStatus","value":"<toggle_bar>"}],"variable":[]}},"response":[{"id":"2d075b0b-b083-46fb-8ec1-08c0f6668e57","name":"Add or Remove Divert","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Divert/DivertHandset?cli=<cli>&contractId=<contract_ids>&divertCli=<diver_cli>&toggleStatus=<toggle_bar>","host":["https://stagingapi.click2sign.co.uk/api/Divert"],"path":["DivertHandset"],"query":[{"key":"cli","value":"<cli>"},{"key":"contractId","value":"<contract_ids>"},{"key":"divertCli","value":"<diver_cli>"},{"key":"toggleStatus","value":"<toggle_bar>"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c0d462d8-aecb-4a37-bc98-78ac2f70ef63"},{"name":"Check Divert Status","id":"a9c63dcd-8ff6-413c-8b0a-c3a11fe281e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Divert/CheckDivertStatus?cli=<cli>&contractId=<contract_ids>","description":"<h2 id=\"check-divert-status\">Check Divert Status</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/divert/CheckDivertStatus/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to check the divert status for a given connection. Please note, this endpoint will only return the divert status for active Vodafone connections.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>The mobile number for the contract.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"IsDivertOn\": true,\n    \"ContractId\": 0,\n    \"Cli\": \"\",\n    \"DivertCli\": \"\",\n    \"DiaryEntryId\": 0,\n    \"RequestTime\": \"\",\n    \"RequestedBy\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsDivertOn</td>\n<td>boolean</td>\n<td>Indicates whether the Divert is on against the connection. If this attribute returns false, all of the other attributes in the model will return as null.</td>\n</tr>\n<tr>\n<td>ContractId</td>\n<td>long</td>\n<td>The unqiue ID of the mobile connection.</td>\n</tr>\n<tr>\n<td>Cli</td>\n<td>string</td>\n<td>The mobile number of the connection.</td>\n</tr>\n<tr>\n<td>DivertCli</td>\n<td>string</td>\n<td>The number that the call will be diverted to.</td>\n</tr>\n<tr>\n<td>DiaryEntryId</td>\n<td>long</td>\n<td>The ticket reference for the request.</td>\n</tr>\n<tr>\n<td>RequestTime</td>\n<td>DateTime</td>\n<td>The date and time at which the request was submitted.</td>\n</tr>\n<tr>\n<td>RequestedBy</td>\n<td>string</td>\n<td>The name of the person who made the request.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["CheckDivertStatus"],"host":["https://stagingapi.click2sign.co.uk/api/Divert"],"query":[{"key":"cli","value":"<cli>"},{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"dd962e74-9141-4f47-9265-f8806996ee67","name":"Add or Remove Divert","originalRequest":{"method":"POST","header":[],"url":""},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}"},{"id":"4f534da9-6712-4856-98e8-46eaad67296d","name":"Check Divert Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Divert/CheckDivertStatus?cli=<cli>&contractId=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Divert"],"path":["CheckDivertStatus"],"query":[{"key":"cli","value":"<cli>"},{"key":"contractId","value":"<contract_ids>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"IsDivertOn\": true,\r\n    \"ContractId\": 0,\r\n    \"Cli\": \"\",\r\n    \"DivertCli\": \"\",\r\n    \"DiaryEntryId\": 0,\r\n    \"RequestTime\": \"\",\r\n    \"RequestedBy\": \"\"\r\n}\r\n"}],"_postman_id":"a9c63dcd-8ff6-413c-8b0a-c3a11fe281e0"}],"id":"df6661eb-0cd4-41f3-ac9f-688d4ee6e2c0","_postman_id":"df6661eb-0cd4-41f3-ac9f-688d4ee6e2c0","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"761bc2f1-98ef-4fd4-823e-a592800f0657","description":"<p>Divert related API calls</p>\n","_postman_id":"761bc2f1-98ef-4fd4-823e-a592800f0657","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Exports Controller","item":[{"name":"Appendix","item":[],"id":"dd18a3e5-53c2-4cc8-9c5a-5018bfdb1d6a","_postman_id":"dd18a3e5-53c2-4cc8-9c5a-5018bfdb1d6a","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Create Connections CSV Export","id":"1345e6a2-2221-47d9-b94a-5f9ac050ba73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Exports/ExportConnections","description":"<h2 id=\"create-connections-csv-export-with-date-range\">Create Connections CSV Export (With Date Range)</h2>\n<h3 id=\"endpoint\"><strong>Endpoint</strong></h3>\n<p><code>POST /api/exports/exportconnections</code></p>\n<h3 id=\"description\"><strong>Description</strong></h3>\n<p>This endpoint queues an asynchronous job to generate a CSV export of all connections accessible to the authenticated API user that fall within the supplied date range. The export is processed in the background and must be polled for completion.</p>\n<h3 id=\"method\"><strong>Method</strong></h3>\n<p><code>POST</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters</strong></h3>\n<p>None</p>\n<h3 id=\"request-headers\"><strong>Request Headers</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>Basic {base64_encoded_credentials}</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\"><strong>Request Body</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"format\": \"csv\",\n  \"fromDate\": \"2026-01-01T00:00:00Z\",\n  \"toDate\": \"2026-01-31T23:59:59Z\"\n}\n\n</code></pre>\n<h3 id=\"request-body-attributes\"><strong>Request Body Attributes</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>format</td>\n<td>string</td>\n<td>Export format. Currently only <code>csv</code> is supported</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>datetime</td>\n<td>Start of the date range filter (inclusive, UTC)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>datetime</td>\n<td>End of the date range filter (inclusive, UTC)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\"><strong>Response</strong></h3>\n<h4 id=\"response-status-codes\"><strong>Response Status Codes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>202</td>\n<td>Accepted</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\"><strong>Example Response Body</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"exportId\": \"8f3c2c9e-6a9d-4a7b-9b8c-3b6c9f0a2f14\",\n  \"status\": \"Queued\"\n}\n\n</code></pre>\n<h3 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exportId</td>\n<td>string</td>\n<td>Unique identifier for the export job</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Current export status (<code>Queued</code>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["ExportConnections"],"host":["https://stagingapi.click2sign.co.uk/api/Exports"],"query":[],"variable":[]}},"response":[],"_postman_id":"1345e6a2-2221-47d9-b94a-5f9ac050ba73"},{"name":"Get Connections Export Status","id":"9aa2a6cb-67af-410b-9c06-152d117db9ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Exports/GetExportStatus?exportId={{export_id}}","description":"<h2 id=\"get-connections-export-status\">Get Connections Export Status</h2>\n<h3 id=\"endpoint\"><strong>Endpoint</strong></h3>\n<p><code>GET /api/exports/GetExportStatus?exportId={exportId}</code></p>\n<h3 id=\"description\"><strong>Description</strong></h3>\n<p>This endpoint returns the current status of a previously requested connections CSV export. It is intended to be polled until the export reaches a <code>Completed</code> or <code>Failed</code> state.</p>\n<h3 id=\"method\"><strong>Method</strong></h3>\n<p><code>GET</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exportId</td>\n<td>string</td>\n<td>Unique ID of the export job</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\"><strong>Request Headers</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>Basic {base64_encoded_credentials}</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\"><strong>Response</strong></h3>\n<h4 id=\"response-status-codes\"><strong>Response Status Codes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body-processing\"><strong>Example Response Body (Processing)</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"exportId\": \"8f3c2c9e-6a9d-4a7b-9b8c-3b6c9f0a2f14\",\n  \"status\": \"Processing\"\n}\n\n</code></pre>\n<h3 id=\"example-response-body-completed\"><strong>Example Response Body (Completed)</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"exportId\": \"8f3c2c9e-6a9d-4a7b-9b8c-3b6c9f0a2f14\",\n  \"status\": \"Completed\",\n  \"rowCount\": 128734,\n  \"fromDate\": \"2026-01-01T00:00:00Z\",\n  \"toDate\": \"2026-01-31T23:59:59Z\",\n  \"expiresAt\": \"2026-02-07T23:59:59Z\",\n  \"downloadUrl\": \"https://api.example.com/api/exports/connections/8f3c2c9e-6a9d-4a7b-9b8c-3b6c9f0a2f14/download\"\n}\n\n</code></pre>\n<h3 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exportId</td>\n<td>string</td>\n<td>Unique identifier for the export job</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Export status (<code>Queued</code>, <code>Processing</code>, <code>Completed</code>, <code>Failed</code>, <code>Expired</code>)</td>\n</tr>\n<tr>\n<td>progressPercent</td>\n<td>integer</td>\n<td>Percentage completion of the export job</td>\n</tr>\n<tr>\n<td>rowCount</td>\n<td>integer</td>\n<td>Total number of rows written to the CSV</td>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>datetime</td>\n<td>Start of the date range used for this export</td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>datetime</td>\n<td>End of the date range used for this export</td>\n</tr>\n<tr>\n<td>expiresAt</td>\n<td>datetime</td>\n<td>Date/time the download link will expire</td>\n</tr>\n<tr>\n<td>downloadUrl</td>\n<td>string</td>\n<td>Secure URL to download the generated CSV (only when completed)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["GetExportStatus"],"host":["https://stagingapi.click2sign.co.uk/api/Exports"],"query":[{"key":"exportId","value":"{{export_id}}"}],"variable":[]}},"response":[],"_postman_id":"9aa2a6cb-67af-410b-9c06-152d117db9ec"},{"name":"Download Connections Export CSV","id":"af799ebd-9d6f-4fc7-b929-b2a141f04ddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Exports/DownloadConnectionsExportCsv?exportId={{exportId}}","description":"<h2 id=\"download-connections-export-csv\">Download Connections Export CSV</h2>\n<h3 id=\"endpoint\"><strong>Endpoint</strong></h3>\n<p><code>GET /api/exports/downloadConnectionsExportCsv?exportId={exportId}</code></p>\n<h3 id=\"description\"><strong>Description</strong></h3>\n<p>This endpoint downloads the generated CSV file for a completed connections export. The export must be in a <code>Completed</code> state and not expired.</p>\n<h3 id=\"method\"><strong>Method</strong></h3>\n<p><code>GET</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exportId</td>\n<td>string</td>\n<td>Unique ID of the export job</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\"><strong>Request Headers</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>Basic {base64_encoded_credentials}</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\"><strong>Response</strong></h3>\n<h4 id=\"response-status-codes\"><strong>Response Status Codes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td>410</td>\n<td>Gone (Export expired)</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\"><strong>Example Response Body</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>CLI,Network,Status,CustomerName,Tariff,StartDate,LastModifiedDate\n07123456789,O2,Active,Acme Ltd,Business 10GB,2026-01-02,2026-01-15\n07123456790,EE,Active,Acme Ltd,Business 5GB,2026-01-03,2026-01-18\n07123456791,Vodafone,Paused,Globex Corp,Unlimited Data,2026-01-05,2026-01-20\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["DownloadConnectionsExportCsv"],"host":["https://stagingapi.click2sign.co.uk/api/Exports"],"query":[{"key":"exportId","value":"{{exportId}}"}],"variable":[]}},"response":[],"_postman_id":"af799ebd-9d6f-4fc7-b929-b2a141f04ddf"}],"id":"dc126b16-a421-4651-ba5c-b2f10ca99cb6","_postman_id":"dc126b16-a421-4651-ba5c-b2f10ca99cb6","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"c604db46-a8b2-40e7-b232-22ebdc36a3e9","_postman_id":"c604db46-a8b2-40e7-b232-22ebdc36a3e9","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Order Controller","item":[{"name":"Appendix","item":[{"name":"Mobile Connection Types","id":"cdb8463c-619a-4d17-8140-4c4da8c1c98f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetMobileConnectionTypes/","description":"<h1 id=\"mobile-connection-types\">Mobile Connection Types</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET/api/Order/GetMobileConnectionTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of applicable mobile connection types. The 'ConnectionTypeID' value is used within the 'AddMobileToOrder' endpoint.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"ConnectionTypeID\":1,\n      \"Description\":\"New\"\n   },\n   {\n      \"ConnectionTypeID \":2,\n      \"Description\":\"Port\"\n   },\n   {\n      \"ConnectionTypeID\":3,\n      \"Description\":\"Migrate\"\n   },\n   {\n      \"ConnectionTypeID \":4,\n      \"Description\":\"Upgrade\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetMobileConnectionTypes",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[],"variable":[]}},"response":[{"id":"e4d1e0c2-f41e-47d4-8279-7a5cae54aa58","name":"Mobile Connection Types","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetMobileConnectionTypes/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ConnectionTypeID\": 1,\n        \"Description\": \"New\"\n    },\n    {\n        \"ConnectionTypeID \": 2,\n        \"Description\": \"Port\"\n    },\n    {\n        \"ConnectionTypeID\": 3,\n        \"Description\": \"Migrate\"\n    },\n    {\n        \"ConnectionTypeID \": 4,\n        \"Description\": \"Upgrade\"\n    }\n]"}],"_postman_id":"cdb8463c-619a-4d17-8140-4c4da8c1c98f"},{"name":"Bill Cap Eligible Tariffs","id":"be337a08-aea8-461f-8e06-bbdbd8c77d06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetMobileConnectionTypes/","description":"<h1 id=\"bill-cap-eligible-tariffs\">Bill Cap Eligible Tariffs</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET/api/Order/GetBillCapEligibleTariffs/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves Bill Cap eligible tariffs</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"TariffID\": 0,\n  \"TariffName\": \"\",\n  \"RetailCost\": 0\n}\n\n</code></pre>\n","urlObject":{"path":["GetMobileConnectionTypes",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[],"variable":[]}},"response":[{"id":"3843385f-bded-4b0c-bad9-5f5f679b3196","name":"Bill Cap Eligible Tariffs","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/BillCapEligibleTariffs/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"TariffID\": 0,\r\n  \"TariffName\": \"\",\r\n  \"RetailCost\": 0\r\n}\r\n"}],"_postman_id":"be337a08-aea8-461f-8e06-bbdbd8c77d06"},{"name":"Get Order Status Types","id":"e97b957d-4992-404f-8195-3d55ce7b6a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetOrderStatusTypes","description":"<h1 id=\"get-order-status-types\">Get Order Status Types</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET/api/Order/GetOrderStatusTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint returns a list of order status types.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"OrderStatusID\": 1,\n        \"Description\": \"To Order\"\n    },\n    {\n        \"OrderStatusID\": 2,\n        \"Description\": \"Ordered\"\n    },\n    {\n        \"OrderStatusID\": 3,\n        \"Description\": \"Received\"\n    },\n    {\n        \"OrderStatusID\": 4,\n        \"Description\": \"Cancelled\"\n    }\n]\n\n\n</code></pre>\n","urlObject":{"path":["GetOrderStatusTypes"],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[],"variable":[]}},"response":[{"id":"faef801e-a84e-4a6a-b90c-5e97d61f519f","name":"Get Order Status Types","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetOrderStatusTypes"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"OrderStatusID\": 1,\r\n        \"Description\": \"To Order\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 2,\r\n        \"Description\": \"Ordered\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 3,\r\n        \"Description\": \"Received\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 4,\r\n        \"Description\": \"Cancelled\"\r\n    }\r\n]\r\n"}],"_postman_id":"e97b957d-4992-404f-8195-3d55ce7b6a7c"},{"name":"List Available Numbers","id":"ca33cbbb-9ae7-46ae-9084-0488eeb3a17d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://stagingapi.click2sign.co.uk/api/Order/ListAvailableNumbers","description":"<h1 id=\"list-available-numbers\">List Available Numbers</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Order/ListAvailableNumbers/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints retrieves a list of available numbers for a given network.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"MobileNumber\": \"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["ListAvailableNumbers"],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[],"variable":[]}},"response":[{"id":"3b3120eb-aa57-4d47-81dc-1d486daf09c8","name":"List Available Numbers","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://stagingapi.click2sign.co.uk/api/Order/ListAvailableNumbers"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"MobileNumber\": \"\"\r\n   }\r\n]\r\n"}],"_postman_id":"ca33cbbb-9ae7-46ae-9084-0488eeb3a17d"},{"name":"Get Network Codes","id":"5e9aa055-7ddb-405a-98dc-d756201d684d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetNetworkCodes","description":"<h1 id=\"get-network-codes\">Get Network Codes</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Order/GetNetworkCodes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves a list of applicable Network codes for each available Mobile network</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"NetworkID\": 0,\n  \"Operator\": \"\",\n  \"NetworkCode\": \"\"\n}\n\n</code></pre>\n","urlObject":{"path":["GetNetworkCodes"],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[],"variable":[]}},"response":[{"id":"1a7a2b49-5800-471e-9386-8da0ade263da","name":"Get Network Codes","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetNetworkCodes"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"NetworkID\": 0,\r\n  \"Operator\": \"\",\r\n  \"NetworkCode\": \"\"\r\n}\r\n"}],"_postman_id":"5e9aa055-7ddb-405a-98dc-d756201d684d"}],"id":"76f08291-e422-4ccd-b8d3-e2cdec9ad126","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/order</code>endpoints.</p>\n","_postman_id":"76f08291-e422-4ccd-b8d3-e2cdec9ad126","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add Bar To Draft Mobile Order","id":"5493d16a-8b15-455f-97ec-1ef1dc1a410a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://stagingapi.click2sign.co.uk/api/Order/AddBarToMobileOrder/?connectionId=<connection_id>&tariffLevelOptionId=<tariff_level_opton_id>","description":"<h2 id=\"add-bar-to-draft-order\">Add Bar to Draft Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/AddBarToMobileOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to add a mobile bar against a connection within a Portal order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectionId</td>\n<td>long</td>\n<td>The unique ID for the draft mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>tariffLevelOptionId</td>\n<td>long</td>\n<td>Unique ID of the bar being added against the connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["AddBarToMobileOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"connectionId","value":"<connection_id>"},{"key":"tariffLevelOptionId","value":"<tariff_level_opton_id>"}],"variable":[]}},"response":[{"id":"b297b921-6c12-4eeb-9e3d-c8984f469397","name":"Add Bar To Draft Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/AddBarToMobile/?connectionId=<connection_id>&tariffLevelOptionId=<tariff_level_opton_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["AddBarToMobile",""],"query":[{"key":"connectionId","value":"<connection_id>"},{"key":"tariffLevelOptionId","value":"<tariff_level_opton_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"response_message\": \"\"\r\n}\r\n"}],"_postman_id":"5493d16a-8b15-455f-97ec-1ef1dc1a410a"},{"name":"Add Bundle To Draft Order","id":"b815daad-d47c-4657-8c5e-a112473a2a47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://stagingapi.click2sign.co.uk/api/Order/AddBundleToMobile/?connectionId=<contract_ids>&tariffOptionId=<tariff_option_id>","description":"<h2 id=\"add-bar-to-draft-order\">Add Bar to Draft Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/AddBundleToMobile/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to add a mobile bundle against a connection within a draft Portal order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectionId</td>\n<td>long</td>\n<td>The unique ID for the draft mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>tariffOptionId</td>\n<td>long</td>\n<td>Unique ID of the bundle being added against the connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["AddBundleToMobile",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"connectionId","value":"<contract_ids>"},{"key":"tariffOptionId","value":"<tariff_option_id>"}],"variable":[]}},"response":[{"id":"f92dfbf5-9568-4ad0-aa28-1c77154e1b2c","name":"Add Bundle To Draft Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/AddBundleToMobile/?connectionId=<contract_ids>&tariffOptionId=<tariff_option_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["AddBundleToMobile",""],"query":[{"key":"connectionId","value":"<contract_ids>"},{"key":"tariffOptionId","value":"<tariff_option_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"response_message\": \"\"\n}"}],"_postman_id":"b815daad-d47c-4657-8c5e-a112473a2a47"},{"name":"Add Mobile To Order","id":"bebb653b-affe-41da-b661-6a09fca6f655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"OrderID\": 0,\r\n        \"Details\": {\r\n            \"CLI\": \"\",\r\n            \"ConnectionType\": 0,\r\n            \"StartDate\": \"\",\r\n            \"Term\": 0,\r\n            \"EndDate\": \"\",\r\n            \"PAC\": \"\",\r\n            \"BillCapOffered\": true,\r\n            \"EnableBillCap\": true,\r\n            \"BillCapValue\": 0.00\r\n        },\r\n        \"Tariff\": {\r\n            \"TariffID\": 0,\r\n            \"TariffCost\": 0.00\r\n        },\r\n        \"SIM\": {\r\n            \"SIMNumber\": \"\",\r\n            \"IsEsim\": false,\r\n            \"EsimEmailRecipient\": \"\"\r\n        }\r\n    }\r\n]"},"url":"https://stagingapi.click2sign.co.uk/api/Order/AddMobileToOrder/","description":"<h2 id=\"add-mobile-to-order\">Add Mobile To Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/AddMobileToOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to add a mobile connection against a Portal order.</p>\n<p><strong>Two new fields have been added for Vodafone eSIM requests under the \"SIM\" object. The fields are IsEsim and EsimRecipientEmail. If these are provided, a SIM number is not required as part of the order.</strong></p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>The request body should contain a JSON object representing the model used to add a mobile to a Portal order.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"OrderID\": 0,\n        \"Details\": {\n            \"CLI\": \"\",\n            \"ConnectionType\": 0,\n            \"StartDate\": \"\",\n            \"Term\": 0,\n            \"EndDate\": \"\",\n            \"PAC\": \"\",\n            \"BillCapOffered\": true,\n            \"EnableBillCap\": true,\n            \"BillCapValue\": 0.00\n        },\n        \"Tariff\": {\n            \"TariffID\": 0,\n            \"TariffCost\": 0.00\n        },\n        \"SIM\": {\n            \"SIMNumber\": \"\",\n            \"IsEsim\": false,\n            \"EsimEmailRecipient\": \"\"\n        }\n    }\n]\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["AddMobileToOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[],"variable":[]}},"response":[{"id":"1653e0b6-8ccc-4d6f-9b80-31abc413bb23","name":"Add Mobile To Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"OrderID\": 0,\r\n        \"Details\": {\r\n            \"CLI\": \"\",\r\n            \"ConnectionType\": 0,\r\n            \"StartDate\": \"\",\r\n            \"Term\": 0,\r\n            \"EndDate\": \"\",\r\n            \"PAC\": \"\",\r\n            \"BillCapOffered\": true,\r\n            \"EnableBillCap\": true,\r\n            \"BillCapValue\": 0.00\r\n        },\r\n        \"Tariff\": {\r\n            \"TariffID\": 0,\r\n            \"TariffCost\": 0.00\r\n        },\r\n        \"SIM\": {\r\n            \"SIMNumber\": \"\"\r\n        }\r\n    }\r\n]"},"url":"https://stagingapi.click2sign.co.uk/api/Order/AddMobileToOrder/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"OrderID\": 0,\n    \"Details\": {\n        \"CLI\": \"\",\n        \"ConnectionType\": 0,\n        \"StartDate\": \"\",\n        \"Term\": 0,\n        \"EndDate\": \"\",\n        \"PAC\": \"\",\n        \"BillCapOffered\": true,\n        \"EnableBillCap\": true,\n        \"BillCapValue\": 0\n    },\n    \"Tariff\": {\n        \"TariffID\": 0,\n        \"TariffCost\": 0\n    },\n    \"SIM\": {\n        \"SIMNumber\": \"\",\n        \"IsEsim\": false,\n        \"EsimEmailRecipient\": \"\"\n    }\n}"}],"_postman_id":"bebb653b-affe-41da-b661-6a09fca6f655"},{"name":"Create Order","id":"f4dd5e77-2615-4d26-999f-9040f9d846ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://stagingapi.click2sign.co.uk/api/Order/CreateOrder/?customerId=<customer_id>","description":"<h2 id=\"create-order\">Create Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/CreateOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to create a new order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>The unique ID of a customer under whom the order will be created</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"OrderId\": 0,\n  \"OrderGuid\": \"00000000-0000-0000-0000-000000000000\",\n  \"CustomerId\": 0,\n  \"ResellerID\": 0,\n  \"OrderStatusId\": 0,\n  \"CreatedDate\": \"0001-01-01T00:00:00\",\n  \"CreatedBy\": \"\",\n  \"CreatedByEmail\": \"\",\n  \"EmailLink\": \"00000000-0000-0000-0000-000000000000\",\n  \"PrintedName\": \"\",\n  \"ContractBinary\": \"\",\n  \"HasSentEmailContract\": false,\n  \"HasPrintedContract\": false,\n  \"HasTabletSigned\": false\n}\n\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td>long</td>\n<td>Unique ID of a Portal order</td>\n</tr>\n<tr>\n<td>OrderGuid</td>\n<td>guid</td>\n<td>Unique order GUID</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>Unique ID of the customer under who the order exists</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>Unique ID of the Reseller associated to the customer</td>\n</tr>\n<tr>\n<td>OrderStatusId</td>\n<td>long</td>\n<td>Unique status of the Portal order</td>\n</tr>\n<tr>\n<td>CreatedDate</td>\n<td>datetime</td>\n<td>Date/time when the order was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>The name of the user who created the order</td>\n</tr>\n<tr>\n<td>CreatedByEmail</td>\n<td>string</td>\n<td>The email address of the user who created the order</td>\n</tr>\n<tr>\n<td>EmailLink</td>\n<td>guid</td>\n<td>Unique GUID containing the Abzorb e-signature contract link</td>\n</tr>\n<tr>\n<td>PrintedName</td>\n<td>string</td>\n<td>The printed name used for Abzorb's eContract process</td>\n</tr>\n<tr>\n<td>ContractBinary</td>\n<td>string</td>\n<td>The contract binary. Only applicable if a contract has been generated via the Abzorb Portal</td>\n</tr>\n<tr>\n<td>HasSentEmailContract</td>\n<td>boolean</td>\n<td>Indicates if an eContract has been sent for the order</td>\n</tr>\n<tr>\n<td>HasPrintedContract</td>\n<td>boolean</td>\n<td>Indicates if an eContract has been printed for the order</td>\n</tr>\n<tr>\n<td>HasTabletSigned</td>\n<td>boolean</td>\n<td>Indicates if the order has been tablet signed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["CreateOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"0c4a2dde-6cf7-4736-b646-e7c0e0ebe1bc","name":"Create Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/CreateOrder/?customerId=<customer_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["CreateOrder",""],"query":[{"key":"customerId","value":"<customer_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"OrderId\": 0,\r\n  \"OrderGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n  \"CustomerId\": 0,\r\n  \"ResellerID\": 0,\r\n  \"OrderStatusId\": 0,\r\n  \"CreatedDate\": \"0001-01-01T00:00:00\",\r\n  \"CreatedBy\": \"\",\r\n  \"CreatedByEmail\": \"\",\r\n  \"EmailLink\": \"00000000-0000-0000-0000-000000000000\",\r\n  \"PrintedName\": \"\",\r\n  \"ContractBinary\": \"\",\r\n  \"HasSentEmailContract\": false,\r\n  \"HasPrintedContract\": false,\r\n  \"HasTabletSigned\": false\r\n}\r\n\r\n\r\n"}],"_postman_id":"f4dd5e77-2615-4d26-999f-9040f9d846ba"},{"name":"Monitor Order Status","id":"0a82bca4-bad0-4807-8b47-e2fdb3cd3b38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/MonitorOrder/?orderId=<order_id>","description":"<h1 id=\"monitor-order-status\">Monitor Order Status</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET/api/Order/MonitorOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves the status of a Portal order.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th><strong>Required</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>long</td>\n<td><strong>Yes</strong></td>\n<td>Unique ID for an order</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">0\n\n</code></pre>\n","urlObject":{"path":["MonitorOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"3f0c63e4-da94-4a86-9eb9-3c293ced823b","name":"Monitor Order Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/MonitorOrder/?orderId=<order_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["MonitorOrder",""],"query":[{"key":"orderId","value":"<order_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"0"}],"_postman_id":"0a82bca4-bad0-4807-8b47-e2fdb3cd3b38"},{"name":"Get Order Details","id":"b944dd57-68a3-4219-9bef-abd84798721a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetOrderDetails/?orderId=<order_id>","description":"<h1 id=\"get-order-details\">Get Order Details</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Order/GetOrderDetails/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves order details for a specific order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>long</td>\n<td>The unique ID of the Portal order</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"OrderId\": 0,\n  \"OrderGuid\": \"00000000-0000-0000-0000-000000000000\",\n  \"CustomerId\": 0,\n  \"ResellerID\": 0,\n  \"OrderStatusId\": 0,\n  \"CreatedDate\": \"0001-01-01T00:00:00\",\n  \"CreatedBy\": \"\",\n  \"CreatedByEmail\": \"\",\n  \"EmailLink\": \"00000000-0000-0000-0000-000000000000\",\n  \"PrintedName\": \"\",\n  \"ContractBinary\": \"\",\n  \"HasSentEmailContract\": false,\n  \"HasPrintedContract\": false,\n  \"HasTabletSigned\": false\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td>long</td>\n<td>Unique ID of a Portal order</td>\n</tr>\n<tr>\n<td>OrderGuid</td>\n<td>guid</td>\n<td>Unique order GUID</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>Unique ID of the customer under who the order exists</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>Unique ID of the Reseller associated to the customer</td>\n</tr>\n<tr>\n<td>OrderStatusId</td>\n<td>long</td>\n<td>Unique status of the Portal order</td>\n</tr>\n<tr>\n<td>CreatedDate</td>\n<td>datetime</td>\n<td>Date/time when the order was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>The name of the user who created the order</td>\n</tr>\n<tr>\n<td>CreatedByEmail</td>\n<td>string</td>\n<td>The email address of the user who created the order</td>\n</tr>\n<tr>\n<td>EmailLink</td>\n<td>guid</td>\n<td>Unique GUID containing the Abzorb e-signature contract link</td>\n</tr>\n<tr>\n<td>PrintedName</td>\n<td>string</td>\n<td>The printed name used for Abzorb's eContract process</td>\n</tr>\n<tr>\n<td>ContractBinary</td>\n<td>string</td>\n<td>The contract binary. Only applicable if a contract has been generated via the Abzorb Portal</td>\n</tr>\n<tr>\n<td>HasSentEmailContract</td>\n<td>boolean</td>\n<td>Indicates if an eContract has been sent for the order</td>\n</tr>\n<tr>\n<td>HasPrintedContract</td>\n<td>boolean</td>\n<td>Indicates if an eContract has been printed for the order</td>\n</tr>\n<tr>\n<td>HasTabletSigned</td>\n<td>boolean</td>\n<td>Indicates if the order has been tablet signed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetOrderDetails",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"496662d3-357d-4745-ab50-ccf681422324","name":"Get Order Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/GetOrderDetails/?orderId=<order_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["GetOrderDetails",""],"query":[{"key":"orderId","value":"<order_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"OrderId\": 0,\n    \"OrderGuid\": \"00000000-0000-0000-0000-000000000000\",\n    \"CustomerId\": 0,\n    \"ResellerID\": 0,\n    \"OrderStatusId\": 0,\n    \"CreatedDate\": \"0001-01-01T00:00:00\",\n    \"CreatedBy\": \"\",\n    \"CreatedByEmail\": \"\",\n    \"EmailLink\": \"00000000-0000-0000-0000-000000000000\",\n    \"PrintedName\": \"\",\n    \"ContractBinary\": \"\",\n    \"HasSentEmailContract\": false,\n    \"HasPrintedContract\": false,\n    \"HasTabletSigned\": false\n}"}],"_postman_id":"b944dd57-68a3-4219-9bef-abd84798721a"},{"name":"Get Order Details for Customer","id":"ad75d949-4ccf-4f79-8d00-6db24326ab5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Order/GetOrdersForCustomer/?customerId=<customer_id>","description":"<h1 id=\"get-order-details-for-customer\">Get Order Details For Customer</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Order/GetOrdersForCustomer/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves all order details for a specific customer</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>The unique ID of the customer</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"OrderId\":0,\n      \"OrderGuid\":\"00000000-0000-0000-0000-000000000000\",\n      \"CustomerId\":0,\n      \"ResellerID\":0,\n      \"OrderStatusId\":0,\n      \"CreatedDate\":\"0001-01-01T00:00:00\",\n      \"CreatedBy\":\"\",\n      \"CreatedByEmail\":\"\",\n      \"EmailLink\":\"00000000-0000-0000-0000-000000000000\",\n      \"PrintedName\":\"\",\n      \"ContractBinary\":\"\",\n      \"HasSentEmailContract\":false,\n      \"HasPrintedContract\":false,\n      \"HasTabletSigned\":false\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td>long</td>\n<td>Unique ID of a Portal order</td>\n</tr>\n<tr>\n<td>OrderGuid</td>\n<td>guid</td>\n<td>Unique order GUID</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>Unique ID of the customer under who the order exists</td>\n</tr>\n<tr>\n<td>ResellerID</td>\n<td>long</td>\n<td>Unique ID of the Reseller associated to the customer</td>\n</tr>\n<tr>\n<td>OrderStatusId</td>\n<td>long</td>\n<td>Unique status of the Portal order</td>\n</tr>\n<tr>\n<td>CreatedDate</td>\n<td>datetime</td>\n<td>Date/time when the order was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>The name of the user who created the order</td>\n</tr>\n<tr>\n<td>CreatedByEmail</td>\n<td>string</td>\n<td>The email address of the user who created the order</td>\n</tr>\n<tr>\n<td>EmailLink</td>\n<td>guid</td>\n<td>Unique GUID containing the Abzorb e-signature contract link</td>\n</tr>\n<tr>\n<td>PrintedName</td>\n<td>string</td>\n<td>The printed name used for Abzorb's eContract process</td>\n</tr>\n<tr>\n<td>ContractBinary</td>\n<td>string</td>\n<td>The contract binary. Only applicable if a contract has been generated via the Abzorb Portal</td>\n</tr>\n<tr>\n<td>HasSentEmailContract</td>\n<td>boolean</td>\n<td>Indicates if an eContract has been sent for the order</td>\n</tr>\n<tr>\n<td>HasPrintedContract</td>\n<td>boolean</td>\n<td>Indicates if an eContract has been printed for the order</td>\n</tr>\n<tr>\n<td>HasTabletSigned</td>\n<td>boolean</td>\n<td>Indicates if the order has been tablet signed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetOrdersForCustomer",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"bcd4a7d9-aade-43e2-836e-c753b24fb113","name":"Get Order Details for Customer","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/GetOrdersForCustomer/?customerId=<customer_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["GetOrdersForCustomer",""],"query":[{"key":"customerId","value":"<customer_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"OrderId\": 0,\n        \"OrderGuid\": \"00000000-0000-0000-0000-000000000000\",\n        \"CustomerId\": 0,\n        \"ResellerID\": 0,\n        \"OrderStatusId\": 0,\n        \"CreatedDate\": \"0001-01-01T00:00:00\",\n        \"CreatedBy\": \"\",\n        \"CreatedByEmail\": \"\",\n        \"EmailLink\": \"00000000-0000-0000-0000-000000000000\",\n        \"PrintedName\": \"\",\n        \"ContractBinary\": \"\",\n        \"HasSentEmailContract\": false,\n        \"HasPrintedContract\": false,\n        \"HasTabletSigned\": false\n    }\n]"}],"_postman_id":"ad75d949-4ccf-4f79-8d00-6db24326ab5d"},{"name":"Return Order to Draft","id":"a213aed7-08a9-4f6f-9b9f-1a227c44618f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://stagingapi.click2sign.co.uk/api/Order/ReturnOrderToDraft/?orderId=<order_id>","description":"<h1 id=\"return-order-to-draft\">Return Order To Draft</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Order/ReturnOrderToDraft/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns an applicable order back to draft. This call only applies to any orders that are not in a 'Signed' or 'Completed' state.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>long</td>\n<td>The unique ID of the Portal order</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ReturnOrderToDraft",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"b47249ca-ac61-4d7a-8c76-19e1d9034630","name":"Return Order to Draft","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/ReturnOrderToDraft/?orderId=<order_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["ReturnOrderToDraft",""],"query":[{"key":"orderId","value":"<order_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"response_message\": \"\"\n}"}],"_postman_id":"a213aed7-08a9-4f6f-9b9f-1a227c44618f"},{"name":"Reserve CLI","id":"d9ed1e57-ecba-484f-843b-6b5600318e61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://stagingapi.click2sign.co.uk/api/Order/ReserveCLI?cli=<cli>","description":"<h1 id=\"reserve-cli\">Reserve CLI</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Order/ReserveCLI/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint will check if the pararmter passed through is a genuine CLI and if it is then it will check that the CLI exists within the number allocation table. If the number exists and isn't locked it will lock the CLI.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>The unique identifier for a mobile number</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ReserveCLI"],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"cli","value":"<cli>"}],"variable":[]}},"response":[{"id":"534a3195-da15-4913-8d74-d75124227e98","name":"Reserve CLI","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/ReserveCLI?cli=<cli>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["ReserveCLI"],"query":[{"key":"cli","value":"<cli>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"response_message\": \"\"\r\n}\r\n"}],"_postman_id":"d9ed1e57-ecba-484f-843b-6b5600318e61"},{"name":"Remove Mobile From Order","id":"eeb50905-0450-4e6e-bd89-5a832d009664","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://stagingapi.click2sign.co.uk/api/Order/RemoveMobileFromOrder/?orderId=<order_id>&connectionId=<contract_ids>","description":"<h1 id=\"remove-mobile-from-order\">Remove Mobile From Order</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Order/RemoveMobileFromOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint removes a specific mobile connection from a Portal order.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>long</td>\n<td>The unique ID of the Portal order</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>connectionId</td>\n<td>long</td>\n<td>The unique ID of the Portal connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["RemoveMobileFromOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"orderId","value":"<order_id>"},{"key":"connectionId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"62711ea4-f7ff-47fd-af77-4647519ea908","name":"Remove Mobile From Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/RemoveMobileFromOrder/?orderId=<order_id>&connectionId=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["RemoveMobileFromOrder",""],"query":[{"key":"orderId","value":"<order_id>"},{"key":"connectionId","value":"<contract_ids>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"response_message\": \"\"\n}"}],"_postman_id":"eeb50905-0450-4e6e-bd89-5a832d009664"},{"name":"Remove Bundle From Draft Order","id":"f374a996-600c-447c-a039-27560355ea7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://stagingapi.click2sign.co.uk/api/Order/RemoveBundleFromMobile/?connectionId=<contract_ids>&tariffOptionId=<tariff_option_id>","description":"<h2 id=\"remove-bundle-from-draft-order\">Remove Bundle from Draft Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/RemoveBundleFromMobile/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to remove a mobile bundle against a connection within a Portal order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectionId</td>\n<td>long</td>\n<td>The unique ID of the draft mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>tariffOptionId</td>\n<td>long</td>\n<td>Unique ID of the bundle being removed from the connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["RemoveBundleFromMobile",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"connectionId","value":"<contract_ids>"},{"key":"tariffOptionId","value":"<tariff_option_id>"}],"variable":[]}},"response":[{"id":"e1ca38e7-3e6e-4356-b02d-0c6d086d577c","name":"Remove Bundle From Draft Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/RemoveBundleFromMobile/?connectionId=<contract_ids>&tariffOptionId=<tariff_option_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["RemoveBundleFromMobile",""],"query":[{"key":"connectionId","value":"<contract_ids>"},{"key":"tariffOptionId","value":"<tariff_option_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"response_message\": \"\"\n}"}],"_postman_id":"f374a996-600c-447c-a039-27560355ea7a"},{"name":"Remove Bar From Mobile Order","id":"32e8a3f2-2788-43ae-9476-4fa9c5ea4bc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://stagingapi.click2sign.co.uk/api/Order/RemoveBarFromMobileOrder/?connectionId=<connection_id>&tariffLevelOptionId=<tariff_level_opton_id>","description":"<h2 id=\"remove-bar-from-draft-order\">Remove Bar from Draft Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/RemoveBarFromMobileOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to remove a mobile bar against a connection within a Portal order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectionId</td>\n<td>long</td>\n<td>The unique ID for the draft mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>tariffLevelOptionId</td>\n<td>long</td>\n<td>Unique ID of the bar being added against the connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["RemoveBarFromMobileOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"connectionId","value":"<connection_id>"},{"key":"tariffLevelOptionId","value":"<tariff_level_opton_id>"}],"variable":[]}},"response":[{"id":"afc087d2-90b2-4803-9625-7ca99a94c814","name":"Remove Bar From Mobile Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/RemoveBarFromMobileOrder/?ConnectionID=<contract_ids>&TariffLevelOptionID=<tariff_level_opton_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["RemoveBarFromMobileOrder",""],"query":[{"key":"ConnectionID","value":"<contract_ids>"},{"key":"TariffLevelOptionID","value":"<tariff_level_opton_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"response_message\": \"\"\r\n}\r\n"}],"_postman_id":"32e8a3f2-2788-43ae-9476-4fa9c5ea4bc7"},{"name":"Submit Order","id":"312748ff-5e36-41ef-acec-864a642c22d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"file"}]},"url":"https://stagingapi.click2sign.co.uk/api/Order/SubmitOrder/?orderId=<order_id>","description":"<h2 id=\"submit-order\">Submit Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/order/SubmitOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to submit a Portal order</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>long</td>\n<td>The unique ID of a Portal order</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Content-Type</td>\n<td>The type of the request content <code>application/x-www-form-urlencoded</code></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"request-body\"><strong>Request Body</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>file</td>\n<td>The file to be uploaded (e.g., PDF, JPG, PNG, DOCX, XLSX)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["SubmitOrder",""],"host":["https://stagingapi.click2sign.co.uk/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"685e119f-2a37-4c56-929e-8d8b94caa65a","name":"Submit Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","src":[""]}]},"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Order/SubmitOrder/?orderId=<order_id>","host":["https://stagingapi.click2sign.co.uk/api/Order"],"path":["SubmitOrder",""],"query":[{"key":"orderId","value":"<order_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"response_message\": \"\"\n}"}],"_postman_id":"312748ff-5e36-41ef-acec-864a642c22d6"}],"id":"deb05064-1018-44ac-8053-3511621301ac","description":"<p>This subfolder contains the primary API calls for the <code>/api/order</code>endpoint.</p>\n","_postman_id":"deb05064-1018-44ac-8053-3511621301ac","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"13663b76-5c06-4a06-8500-07a5c95127ce","description":"<p>The <code>/order</code>endpoint allows you add, remove and view bars against mobile connections.</p>\n","_postman_id":"13663b76-5c06-4a06-8500-07a5c95127ce","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"SIM Management","item":[{"name":"Appendix","item":[{"name":"Validate SIM","id":"bbc2ae8b-22b3-4280-8e3e-726f5c7810c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/sim/CheckSIM?sim=<sim>&cli=<cli>","description":"<h2 id=\"validate-sim\">Validate SIM</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/sim/CheckSIM/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to validate the SIM that will be used alongside for the SIM change request</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sim</td>\n<td>string</td>\n<td>The new SIM number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>The mobile number for the request</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<p>Upon a successful execution, the API returns a JSON response with a status code of 200 and the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<p>The <code>success</code> field indicates whether the request was successful, and the <code>response_message</code> field may contain additional information or messages from the server.</p>\n","urlObject":{"path":["CheckSIM"],"host":["https://stagingapi.click2sign.co.uk/api/sim"],"query":[{"key":"sim","value":"<sim>"},{"key":"cli","value":"<cli>"}],"variable":[]}},"response":[{"id":"d3345a9a-1864-4e66-9be7-63d9907c8352","name":"Validate SIM","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/sim/CheckSIM?SIM=<sim>&CLI=<cli>","host":["https://stagingapi.click2sign.co.uk/api/sim"],"path":["CheckSIM"],"query":[{"key":"SIM","value":"<sim>"},{"key":"CLI","value":"<cli>"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"diary_entry_id\": null,\r\n    \"response_message\": \"\"\r\n}"}],"_postman_id":"bbc2ae8b-22b3-4280-8e3e-726f5c7810c4"}],"id":"c53beb25-3a4c-4677-a13e-2c5b69c3ff03","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/sim</code> endpoints.</p>\n","_postman_id":"c53beb25-3a4c-4677-a13e-2c5b69c3ff03","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Create eSIM Request","id":"c272f0ce-6363-47e4-a03b-4ae93e31e97f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/sim/CreateEsimRequest/?contractId=<contract_ids>&cli=<cli>&esimRecipientEmail=\"\"","description":"<h2 id=\"esim-swap-request\">eSIM Swap Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/sim/CreateEsimRequest/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Allows for an eSIM request to be performed against any active Vodafone connection.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>Unique ID of the mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>CLI associated to the Contract record.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>esimRecipientEmail</td>\n<td>string</td>\n<td>The email address to which the QR code for the eSIM request will be sent. This is usually the customer's email address.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["CreateEsimRequest",""],"host":["https://stagingapi.click2sign.co.uk/api/sim"],"query":[{"key":"contractId","value":"<contract_ids>"},{"key":"cli","value":"<cli>"},{"key":"esimRecipientEmail","value":"\"\""}],"variable":[]}},"response":[{"id":"9d825178-9fb4-416e-b114-f4c8d823fa9d","name":"Create eSIM Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/sim/CreateEsimRequest/?ContractID=<contract_ids>&Mobile_No=<cli>&EsimRecipientEmail=\"\"","host":["https://stagingapi.click2sign.co.uk/api/sim"],"path":["CreateEsimRequest",""],"query":[{"key":"ContractID","value":"<contract_ids>"},{"key":"Mobile_No","value":"<cli>"},{"key":"EsimRecipientEmail","value":"\"\""}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"diary_entry_id\": 123456,\r\n    \"response_message\": \"\"\r\n}"}],"_postman_id":"c272f0ce-6363-47e4-a03b-4ae93e31e97f"},{"name":"SIM Change","id":"cf55eb56-bfc9-4c48-b311-c883139d0bf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/sim/ChangeSIM/?contractId=<contract_ids>&cli=<cli>&simNo=<sim>","description":"<h2 id=\"sim-change\">SIM Change</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/sim/ChangeSIM/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Allows you to perform a SIM change for a specifc contract and mobile onto a new SIM.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>Unique ID of the mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cli</td>\n<td>string</td>\n<td>CLI associated to the Contract record.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>simNo</td>\n<td>string</td>\n<td>New SIM number required for the SIM change</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ChangeSIM",""],"host":["https://stagingapi.click2sign.co.uk/api/sim"],"query":[{"key":"contractId","value":"<contract_ids>"},{"key":"cli","value":"<cli>"},{"key":"simNo","value":"<sim>"}],"variable":[]}},"response":[{"id":"c442583f-f17d-4415-916b-b0374edeab3f","name":"SIM Change","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/sim/ChangeSIM/?ContractID=<contract_ids>&Mobile_No=<cli>&SimNo=<sim>","host":["https://stagingapi.click2sign.co.uk/api/sim"],"path":["ChangeSIM",""],"query":[{"key":"ContractID","value":"<contract_ids>"},{"key":"Mobile_No","value":"<cli>"},{"key":"SimNo","value":"<sim>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}"}],"_postman_id":"cf55eb56-bfc9-4c48-b311-c883139d0bf0"}],"id":"20ae2f12-4917-481b-9f0b-936d200f161c","description":"<p>This subfolder contains the primary API calls for the <code>/api/sim</code> endpoint.</p>\n","_postman_id":"20ae2f12-4917-481b-9f0b-936d200f161c","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"41cb799a-95ac-463b-a2b2-afecfa77dfb8","description":"<p>The <code>/sim</code> endpoint allows for SIM changes to be completed and for SIMs to be validated prior to SIM changes.</p>\n","_postman_id":"41cb799a-95ac-463b-a2b2-afecfa77dfb8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Tariff Management","item":[{"name":"Appendix","item":[{"name":"Get All Tariffs","id":"98b2fa08-76ea-4a88-b6df-7ff9be9c17e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tariff/GetTariffs","description":"<h1 id=\"get-all-tariffs\">Get All Tariffs</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Tariff/GetTariffs/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of tariffs.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"TariffID\": \"2982\",\n        \"TariffName\": \"VF Business Advance Basic BT Child\",\n        \"RetailCost\": 31.85\n    },\n    {\n        \"TariffID\": \"7305\",\n        \"TariffName\": \"VF Red 12GB - (2021)\",\n        \"RetailCost\": 28.73\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetTariffs"],"host":["https://stagingapi.click2sign.co.uk/api/Tariff"],"query":[],"variable":[]}},"response":[{"id":"cb407bfd-6782-4e82-8ea3-6e7fc5de6f5c","name":"Get All Tariffs","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tariff/GetTariffs"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"98b2fa08-76ea-4a88-b6df-7ff9be9c17e1"}],"id":"5716d3fd-7e63-414d-9095-4df7745820e0","_postman_id":"5716d3fd-7e63-414d-9095-4df7745820e0","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get Tariffs for Connection","id":"98010744-6ff6-4867-a3a5-63b5183e4175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tariff/GetTariffsForContract?contractId=<contract_ids>","description":"<h1 id=\"get-tariffs-for-connection\">Get Tariffs for Connection</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Tariff/GetTariffsForContract/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves tariff details for a specific contract. The request should include the ContractID as a query parameter in the URL.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the mobile connection.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"TariffID\": \"\",\n        \"TariffName\": \"\",\n        \"RetailCost\": 0\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetTariffsForContract"],"host":["https://stagingapi.click2sign.co.uk/api/Tariff"],"query":[{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"e0161a33-1657-475c-9555-d8c6aa467070","name":"Get Tariffs for Connection","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}Tariff/GetTariffsForContract?ContractID=<contract_ids>","host":["{{baseUrl}}Tariff"],"path":["GetTariffsForContract"],"query":[{"key":"ContractID","value":"<contract_ids>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 23 Jun 2024 23:01:18 GMT"},{"key":"Content-Length","value":"44962"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"TariffID\": \"2982\",\n        \"TariffName\": \"VF Business Advance Basic BT Child\",\n        \"RetailCost\": 29.93\n    },\n    {\n        \"TariffID\": \"3092\",\n        \"TariffName\": \"EE Lead - PAYG\",\n        \"RetailCost\": 3.08\n    },\n    {\n        \"TariffID\": \"3221\",\n        \"TariffName\": \"O2 Small Biz SIMO 4Gb (2017)\",\n        \"RetailCost\": 24.99\n    },\n    {\n        \"TariffID\": \"3222\",\n        \"TariffName\": \"O2 Small Biz SIMO 7Gb (2017)\",\n        \"RetailCost\": 29.48\n    },\n    {\n        \"TariffID\": \"3229\",\n        \"TariffName\": \"O2 Mobile Broadband 20GB (2017)\",\n        \"RetailCost\": 28.2\n    },\n    {\n        \"TariffID\": \"3233\",\n        \"TariffName\": \"O2 Business Shared 1300 (2017)\",\n        \"RetailCost\": 50.09\n    },\n    {\n        \"TariffID\": \"3234\",\n        \"TariffName\": \"O2 Business Shared 1300 Sharer (2017)\",\n        \"RetailCost\": 16.68\n    },\n    {\n        \"TariffID\": \"3239\",\n        \"TariffName\": \"O2 Small Biz Data Share - Child (2017)\",\n        \"RetailCost\": 2.55\n    },\n    {\n        \"TariffID\": \"3310\",\n        \"TariffName\": \"VF Virocom PPM - Child\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"6994\",\n        \"TariffName\": \"O2 Small Biz 300MB (2019)\",\n        \"RetailCost\": 12.82\n    },\n    {\n        \"TariffID\": \"6997\",\n        \"TariffName\": \"O2 Small Biz 5GB (2019)\",\n        \"RetailCost\": 18.57\n    },\n    {\n        \"TariffID\": \"6999\",\n        \"TariffName\": \"O2 Small Biz 16GB (2019)\",\n        \"RetailCost\": 24.35\n    },\n    {\n        \"TariffID\": \"7009\",\n        \"TariffName\": \"O2 Small Biz 2GB (2022)\",\n        \"RetailCost\": 14.3\n    },\n    {\n        \"TariffID\": \"7133\",\n        \"TariffName\": \"VF Bus Opt Voice and Data 750\",\n        \"RetailCost\": 18.54\n    },\n    {\n        \"TariffID\": \"7134\",\n        \"TariffName\": \"VF Bus Opt Data Only 750\",\n        \"RetailCost\": 2.63\n    },\n    {\n        \"TariffID\": \"7182\",\n        \"TariffName\": \"DfE Data - 3gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7183\",\n        \"TariffName\": \"DfE Data - 4gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7184\",\n        \"TariffName\": \"DfE Data - 5gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7185\",\n        \"TariffName\": \"DfE Data - 6gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7186\",\n        \"TariffName\": \"DfE Data - 7gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7187\",\n        \"TariffName\": \"DfE Data - 8gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7188\",\n        \"TariffName\": \"DfE Data - 9gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7189\",\n        \"TariffName\": \"DfE Data - 10gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7190\",\n        \"TariffName\": \"DfE Data - 11gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7191\",\n        \"TariffName\": \"DfE Data - 12gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7196\",\n        \"TariffName\": \"O2 Small Biz 8GB (2020)\",\n        \"RetailCost\": 20.51\n    },\n    {\n        \"TariffID\": \"7198\",\n        \"TariffName\": \"O2 Small Biz 24GB (2020)\",\n        \"RetailCost\": 25.64\n    },\n    {\n        \"TariffID\": \"7224\",\n        \"TariffName\": \"DfE Data - 20gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7226\",\n        \"TariffName\": \"Pangea Multi-Network Static IP Connection\",\n        \"RetailCost\": 75\n    },\n    {\n        \"TariffID\": \"7227\",\n        \"TariffName\": \"DfE Data - 40gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7228\",\n        \"TariffName\": \"DfE Data - 30gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7229\",\n        \"TariffName\": \"DfE Data - 70gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7237\",\n        \"TariffName\": \"DfE Data - 125gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7239\",\n        \"TariffName\": \"abz One Wholesale PPM + 500MB\",\n        \"RetailCost\": 3.7\n    },\n    {\n        \"TariffID\": \"7341\",\n        \"TariffName\": \"VF Evolve 24m Business Single 25GB\",\n        \"RetailCost\": 36.41\n    },\n    {\n        \"TariffID\": \"7347\",\n        \"TariffName\": \"VF Evolve 36m Business Single 25GB\",\n        \"RetailCost\": 32.37\n    },\n    {\n        \"TariffID\": \"7354\",\n        \"TariffName\": \"VF Single Unlimited - (2021)\",\n        \"RetailCost\": 52.6\n    },\n    {\n        \"TariffID\": \"7359\",\n        \"TariffName\": \"abz One Business Voice Only (2021)\",\n        \"RetailCost\": 18.51\n    },\n    {\n        \"TariffID\": \"7360\",\n        \"TariffName\": \"abz One Business 2GB (2021)\",\n        \"RetailCost\": 19.74\n    },\n    {\n        \"TariffID\": \"7361\",\n        \"TariffName\": \"abz One Business 6GB (2021)\",\n        \"RetailCost\": 23.44\n    },\n    {\n        \"TariffID\": \"7362\",\n        \"TariffName\": \"abz One Business 12GB (2021)\",\n        \"RetailCost\": 25.91\n    },\n    {\n        \"TariffID\": \"7363\",\n        \"TariffName\": \"abz One Business 24GB (2021)\",\n        \"RetailCost\": 33.31\n    },\n    {\n        \"TariffID\": \"7364\",\n        \"TariffName\": \"abz One Business 50GB (2021)\",\n        \"RetailCost\": 43.2\n    },\n    {\n        \"TariffID\": \"7365\",\n        \"TariffName\": \"abz One Data 2GB (2021)\",\n        \"RetailCost\": 17.27\n    },\n    {\n        \"TariffID\": \"7366\",\n        \"TariffName\": \"abz One Data 6GB (2021)\",\n        \"RetailCost\": 20.97\n    },\n    {\n        \"TariffID\": \"7368\",\n        \"TariffName\": \"abz One Data 12GB (2021)\",\n        \"RetailCost\": 23.44\n    },\n    {\n        \"TariffID\": \"7369\",\n        \"TariffName\": \"abz One Data 24GB (2021)\",\n        \"RetailCost\": 30.85\n    },\n    {\n        \"TariffID\": \"7370\",\n        \"TariffName\": \"abz One Data 50GB (2021)\",\n        \"RetailCost\": 40.73\n    },\n    {\n        \"TariffID\": \"7371\",\n        \"TariffName\": \"abz One Sharer Voice (2021)\",\n        \"RetailCost\": 18.51\n    },\n    {\n        \"TariffID\": \"7372\",\n        \"TariffName\": \"abz One Sharer Data Only (2021)\",\n        \"RetailCost\": 12.34\n    },\n    {\n        \"TariffID\": \"7373\",\n        \"TariffName\": \"abz One Sharer 2GB Voice (2021)\",\n        \"RetailCost\": 23.44\n    },\n    {\n        \"TariffID\": \"7374\",\n        \"TariffName\": \"abz One Sharer 2GB Data Only (2021)\",\n        \"RetailCost\": 17.27\n    },\n    {\n        \"TariffID\": \"7375\",\n        \"TariffName\": \"VF Bus Opt Data Only 750 - (Whit)\",\n        \"RetailCost\": 1.32\n    },\n    {\n        \"TariffID\": \"7376\",\n        \"TariffName\": \"VF Bus Opt Voice and Data 750 - (Whit)\",\n        \"RetailCost\": 9.27\n    },\n    {\n        \"TariffID\": \"7378\",\n        \"TariffName\": \"VF Sharer Unlimited Voice - (2021) - (Whit)\",\n        \"RetailCost\": 9.27\n    },\n    {\n        \"TariffID\": \"7390\",\n        \"TariffName\": \"O2 Small Biz 2GB (2021)\",\n        \"RetailCost\": 15.38\n    },\n    {\n        \"TariffID\": \"7402\",\n        \"TariffName\": \"DfE Data - 25gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7415\",\n        \"TariffName\": \"Giant One Sharer Voice\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"7416\",\n        \"TariffName\": \"Giant One Sharer Data Only\",\n        \"RetailCost\": 8\n    },\n    {\n        \"TariffID\": \"7417\",\n        \"TariffName\": \"Giant One Sharer 2GB Voice\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"7418\",\n        \"TariffName\": \"Giant One Sharer 2GB Data Only\",\n        \"RetailCost\": 10\n    },\n    {\n        \"TariffID\": \"7419\",\n        \"TariffName\": \"Giant One Unlimited Data Flex\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"7420\",\n        \"TariffName\": \"Giant One Business 250MB\",\n        \"RetailCost\": 18.2\n    },\n    {\n        \"TariffID\": \"7421\",\n        \"TariffName\": \"Giant One Business 1GB\",\n        \"RetailCost\": 21.4\n    },\n    {\n        \"TariffID\": \"7422\",\n        \"TariffName\": \"Giant One Business 2GB\",\n        \"RetailCost\": 24.61\n    },\n    {\n        \"TariffID\": \"7423\",\n        \"TariffName\": \"Giant One Business 4GB\",\n        \"RetailCost\": 27.83\n    },\n    {\n        \"TariffID\": \"7424\",\n        \"TariffName\": \"Giant One Business 8GB\",\n        \"RetailCost\": 36.39\n    },\n    {\n        \"TariffID\": \"7425\",\n        \"TariffName\": \"Giant One Business 16GB\",\n        \"RetailCost\": 40.67\n    },\n    {\n        \"TariffID\": \"7426\",\n        \"TariffName\": \"Giant One Business 32GB\",\n        \"RetailCost\": 74.92\n    },\n    {\n        \"TariffID\": \"7427\",\n        \"TariffName\": \"Giant One Business 64GB\",\n        \"RetailCost\": 137\n    },\n    {\n        \"TariffID\": \"7428\",\n        \"TariffName\": \"Giant One Data 250MB\",\n        \"RetailCost\": 5.2\n    },\n    {\n        \"TariffID\": \"7429\",\n        \"TariffName\": \"Giant One Data 1GB\",\n        \"RetailCost\": 8.4\n    },\n    {\n        \"TariffID\": \"7430\",\n        \"TariffName\": \"Giant One Data 2GB\",\n        \"RetailCost\": 11.61\n    },\n    {\n        \"TariffID\": \"7431\",\n        \"TariffName\": \"Giant One Data 4GB\",\n        \"RetailCost\": 14.83\n    },\n    {\n        \"TariffID\": \"7432\",\n        \"TariffName\": \"Giant One Data 8GB\",\n        \"RetailCost\": 23.39\n    },\n    {\n        \"TariffID\": \"7433\",\n        \"TariffName\": \"Giant One Data 16GB\",\n        \"RetailCost\": 27.67\n    },\n    {\n        \"TariffID\": \"7434\",\n        \"TariffName\": \"Giant One Data 32GB\",\n        \"RetailCost\": 61.92\n    },\n    {\n        \"TariffID\": \"7435\",\n        \"TariffName\": \"Giant One Data 64GB\",\n        \"RetailCost\": 124\n    },\n    {\n        \"TariffID\": \"7436\",\n        \"TariffName\": \"Giant One Wholesale PPM\",\n        \"RetailCost\": 3\n    },\n    {\n        \"TariffID\": \"7438\",\n        \"TariffName\": \"Giant One Data UK Only 500Mb\",\n        \"RetailCost\": 3\n    },\n    {\n        \"TariffID\": \"7439\",\n        \"TariffName\": \"Giant One Business Voice Only (2021)\",\n        \"RetailCost\": 15\n    },\n    {\n        \"TariffID\": \"7440\",\n        \"TariffName\": \"Giant One Business 2GB (2021)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"7441\",\n        \"TariffName\": \"Giant One Business 6GB (2021)\",\n        \"RetailCost\": 19\n    },\n    {\n        \"TariffID\": \"7442\",\n        \"TariffName\": \"Giant One Business 12GB (2021)\",\n        \"RetailCost\": 21\n    },\n    {\n        \"TariffID\": \"7443\",\n        \"TariffName\": \"Giant One Business 24GB (2021)\",\n        \"RetailCost\": 27\n    },\n    {\n        \"TariffID\": \"7444\",\n        \"TariffName\": \"Giant One Business 50GB (2021)\",\n        \"RetailCost\": 35\n    },\n    {\n        \"TariffID\": \"7445\",\n        \"TariffName\": \"Giant One Data 2GB (2021)\",\n        \"RetailCost\": 14\n    },\n    {\n        \"TariffID\": \"7446\",\n        \"TariffName\": \"Giant One Data 6GB (2021)\",\n        \"RetailCost\": 17\n    },\n    {\n        \"TariffID\": \"7447\",\n        \"TariffName\": \"Giant One Data 12GB (2021)\",\n        \"RetailCost\": 19\n    },\n    {\n        \"TariffID\": \"7448\",\n        \"TariffName\": \"Giant One Data 24GB (2021)\",\n        \"RetailCost\": 25\n    },\n    {\n        \"TariffID\": \"7449\",\n        \"TariffName\": \"Giant One Data 50GB (2021)\",\n        \"RetailCost\": 33\n    },\n    {\n        \"TariffID\": \"7450\",\n        \"TariffName\": \"Giant One Sharer Voice (2021)\",\n        \"RetailCost\": 15\n    },\n    {\n        \"TariffID\": \"7451\",\n        \"TariffName\": \"Giant One Sharer Data Only (2021)\",\n        \"RetailCost\": 10\n    },\n    {\n        \"TariffID\": \"7452\",\n        \"TariffName\": \"Giant One Sharer 2GB Voice (2021)\",\n        \"RetailCost\": 19\n    },\n    {\n        \"TariffID\": \"7453\",\n        \"TariffName\": \"Giant One Sharer 2GB Data Only (2021)\",\n        \"RetailCost\": 14\n    },\n    {\n        \"TariffID\": \"7454\",\n        \"TariffName\": \"DfE Data - 35gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7455\",\n        \"TariffName\": \"DfE Data - 2gb Cap\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7457\",\n        \"TariffName\": \"Smart Tariff with NetSweeper - Min 1GB\",\n        \"RetailCost\": 6.5\n    },\n    {\n        \"TariffID\": \"7458\",\n        \"TariffName\": \"Smart Tariff with NetSweeper – Min 1GB (1% discount)\",\n        \"RetailCost\": 6.44\n    },\n    {\n        \"TariffID\": \"7459\",\n        \"TariffName\": \"Pangea Multi-Network 100MB Connection\",\n        \"RetailCost\": 4\n    },\n    {\n        \"TariffID\": \"7500\",\n        \"TariffName\": \"Q One Sharer Voice\",\n        \"RetailCost\": 18.3\n    },\n    {\n        \"TariffID\": \"7501\",\n        \"TariffName\": \"Q One Sharer Data Only\",\n        \"RetailCost\": 9.15\n    },\n    {\n        \"TariffID\": \"7502\",\n        \"TariffName\": \"Q One Sharer 2GB Voice\",\n        \"RetailCost\": 22.88\n    },\n    {\n        \"TariffID\": \"7503\",\n        \"TariffName\": \"Q One Sharer 2GB Data Only\",\n        \"RetailCost\": 11.44\n    },\n    {\n        \"TariffID\": \"7504\",\n        \"TariffName\": \"Q One Unlimited Data Flex\",\n        \"RetailCost\": 18.3\n    },\n    {\n        \"TariffID\": \"7505\",\n        \"TariffName\": \"Q One Business 250MB\",\n        \"RetailCost\": 20.82\n    },\n    {\n        \"TariffID\": \"7506\",\n        \"TariffName\": \"Q One Business 1GB\",\n        \"RetailCost\": 24.48\n    },\n    {\n        \"TariffID\": \"7507\",\n        \"TariffName\": \"Q One Business 2GB\",\n        \"RetailCost\": 28.15\n    },\n    {\n        \"TariffID\": \"7508\",\n        \"TariffName\": \"Q One Business 4GB\",\n        \"RetailCost\": 31.83\n    },\n    {\n        \"TariffID\": \"7509\",\n        \"TariffName\": \"Q One Business 8GB\",\n        \"RetailCost\": 41.63\n    },\n    {\n        \"TariffID\": \"7510\",\n        \"TariffName\": \"Q One Business 16GB\",\n        \"RetailCost\": 46.52\n    },\n    {\n        \"TariffID\": \"7511\",\n        \"TariffName\": \"Q One Business 32GB\",\n        \"RetailCost\": 85.7\n    },\n    {\n        \"TariffID\": \"7512\",\n        \"TariffName\": \"Q One Business 64GB\",\n        \"RetailCost\": 156.72\n    },\n    {\n        \"TariffID\": \"7513\",\n        \"TariffName\": \"Q One Data 250MB\",\n        \"RetailCost\": 5.94\n    },\n    {\n        \"TariffID\": \"7514\",\n        \"TariffName\": \"Q One Data 1GB\",\n        \"RetailCost\": 9.6\n    },\n    {\n        \"TariffID\": \"7515\",\n        \"TariffName\": \"Q One Data 2GB\",\n        \"RetailCost\": 13.28\n    },\n    {\n        \"TariffID\": \"7516\",\n        \"TariffName\": \"Q One Data 4GB\",\n        \"RetailCost\": 16.96\n    },\n    {\n        \"TariffID\": \"7517\",\n        \"TariffName\": \"Q One Data 8GB\",\n        \"RetailCost\": 26.75\n    },\n    {\n        \"TariffID\": \"7518\",\n        \"TariffName\": \"Q One Data 16GB\",\n        \"RetailCost\": 31.65\n    },\n    {\n        \"TariffID\": \"7519\",\n        \"TariffName\": \"Q One Data 32GB\",\n        \"RetailCost\": 70.83\n    },\n    {\n        \"TariffID\": \"7520\",\n        \"TariffName\": \"Q One Data 64GB\",\n        \"RetailCost\": 141.85\n    },\n    {\n        \"TariffID\": \"7521\",\n        \"TariffName\": \"Q One Wholesale PPM\",\n        \"RetailCost\": 3.43\n    },\n    {\n        \"TariffID\": \"7522\",\n        \"TariffName\": \"Q One Wholesale PPM + 500MB\",\n        \"RetailCost\": 3.43\n    },\n    {\n        \"TariffID\": \"7523\",\n        \"TariffName\": \"Q One Data UK Only 500Mb\",\n        \"RetailCost\": 3.43\n    },\n    {\n        \"TariffID\": \"7524\",\n        \"TariffName\": \"Q One Business Voice Only (2021)\",\n        \"RetailCost\": 17.16\n    },\n    {\n        \"TariffID\": \"7525\",\n        \"TariffName\": \"Q One Business 2GB (2021)\",\n        \"RetailCost\": 18.3\n    },\n    {\n        \"TariffID\": \"7526\",\n        \"TariffName\": \"Q One Business 6GB (2021)\",\n        \"RetailCost\": 21.73\n    },\n    {\n        \"TariffID\": \"7527\",\n        \"TariffName\": \"Q One Business 12GB (2021)\",\n        \"RetailCost\": 25.91\n    },\n    {\n        \"TariffID\": \"7528\",\n        \"TariffName\": \"Q One Business 24GB (2021)\",\n        \"RetailCost\": 30.88\n    },\n    {\n        \"TariffID\": \"7529\",\n        \"TariffName\": \"Q One Business 50GB (2021)\",\n        \"RetailCost\": 43.2\n    },\n    {\n        \"TariffID\": \"7530\",\n        \"TariffName\": \"Q One Data 2GB (2021)\",\n        \"RetailCost\": 16.01\n    },\n    {\n        \"TariffID\": \"7531\",\n        \"TariffName\": \"Q One Data 6GB (2021)\",\n        \"RetailCost\": 19.44\n    },\n    {\n        \"TariffID\": \"7532\",\n        \"TariffName\": \"Q One Data 12GB (2021)\",\n        \"RetailCost\": 21.73\n    },\n    {\n        \"TariffID\": \"7533\",\n        \"TariffName\": \"Q One Data 24GB (2021)\",\n        \"RetailCost\": 28.6\n    },\n    {\n        \"TariffID\": \"7534\",\n        \"TariffName\": \"Q One Data 50GB (2021)\",\n        \"RetailCost\": 37.75\n    },\n    {\n        \"TariffID\": \"7535\",\n        \"TariffName\": \"Q One Sharer Voice (2021)\",\n        \"RetailCost\": 17.16\n    },\n    {\n        \"TariffID\": \"7536\",\n        \"TariffName\": \"Q One Sharer Data Only (2021)\",\n        \"RetailCost\": 11.44\n    },\n    {\n        \"TariffID\": \"7537\",\n        \"TariffName\": \"Q One Sharer 2GB Voice (2021)\",\n        \"RetailCost\": 21.73\n    },\n    {\n        \"TariffID\": \"7538\",\n        \"TariffName\": \"Q One Sharer 2GB Data Only (2021)\",\n        \"RetailCost\": 16.01\n    },\n    {\n        \"TariffID\": \"7546\",\n        \"TariffName\": \"Pangea Multi-Network 20GB 1m\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7547\",\n        \"TariffName\": \"Pangea Multi-Network 20GB 12m\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7548\",\n        \"TariffName\": \"Pangea Multi-Network 20GB 24m\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7549\",\n        \"TariffName\": \"Pangea Multi-Network 20GB 36m\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7554\",\n        \"TariffName\": \"Pangea Multi-Network 1GB\",\n        \"RetailCost\": 8.32\n    },\n    {\n        \"TariffID\": \"7555\",\n        \"TariffName\": \"Pangea Multi-Network 2GB\",\n        \"RetailCost\": 13.04\n    },\n    {\n        \"TariffID\": \"7556\",\n        \"TariffName\": \"Pangea Multi-Network 3GB\",\n        \"RetailCost\": 18.88\n    },\n    {\n        \"TariffID\": \"7557\",\n        \"TariffName\": \"Pangea Multi-Network 4GB\",\n        \"RetailCost\": 22.42\n    },\n    {\n        \"TariffID\": \"7558\",\n        \"TariffName\": \"Pangea Multi-Network 5GB\",\n        \"RetailCost\": 27.04\n    },\n    {\n        \"TariffID\": \"7559\",\n        \"TariffName\": \"VF EU B1 Data Sim 30GB (2021)\",\n        \"RetailCost\": 16.24\n    },\n    {\n        \"TariffID\": \"7560\",\n        \"TariffName\": \"VF EU B1 Data Sim Unlimited (2021)\",\n        \"RetailCost\": 36.25\n    },\n    {\n        \"TariffID\": \"7561\",\n        \"TariffName\": \"VF EU B1 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 47.51\n    },\n    {\n        \"TariffID\": \"7562\",\n        \"TariffName\": \"VF EU B1 Evolve 24m Business Single 12GB\",\n        \"RetailCost\": 19.99\n    },\n    {\n        \"TariffID\": \"7563\",\n        \"TariffName\": \"VF EU B1 Evolve 24m Business Single 25GB\",\n        \"RetailCost\": 27.5\n    },\n    {\n        \"TariffID\": \"7564\",\n        \"TariffName\": \"VF EU B1 Evolve 24m Business Single 2GB\",\n        \"RetailCost\": 15.62\n    },\n    {\n        \"TariffID\": \"7565\",\n        \"TariffName\": \"VF EU B1 Evolve 24m Business Single 6GB\",\n        \"RetailCost\": 17.5\n    },\n    {\n        \"TariffID\": \"7566\",\n        \"TariffName\": \"VF EU Bus Adv - Extra Base 0GB - (2021)\",\n        \"RetailCost\": 38.44\n    },\n    {\n        \"TariffID\": \"7567\",\n        \"TariffName\": \"VF EU Bus Adv - Extra Base 10GB - (2021)\",\n        \"RetailCost\": 112.43\n    },\n    {\n        \"TariffID\": \"7568\",\n        \"TariffName\": \"VF EU Bus Adv - Extra Base 1GB - (2021)\",\n        \"RetailCost\": 45.84\n    },\n    {\n        \"TariffID\": \"7569\",\n        \"TariffName\": \"VF EU Bus Adv - Extra Base 2GB - (2021)\",\n        \"RetailCost\": 53.25\n    },\n    {\n        \"TariffID\": \"7570\",\n        \"TariffName\": \"VF EU Bus Adv - Extra Base 5GB - (2021)\",\n        \"RetailCost\": 75.45\n    },\n    {\n        \"TariffID\": \"7571\",\n        \"TariffName\": \"VF EU Bus Adv - MBB Extra 4GB - (2021)\",\n        \"RetailCost\": 29.57\n    },\n    {\n        \"TariffID\": \"7572\",\n        \"TariffName\": \"VF EU Bus Adv - MBB Value 4GB - (2021)\",\n        \"RetailCost\": 29.57\n    },\n    {\n        \"TariffID\": \"7573\",\n        \"TariffName\": \"VF EU Bus Adv - Value Base 0GB - (2021)\",\n        \"RetailCost\": 32.52\n    },\n    {\n        \"TariffID\": \"7574\",\n        \"TariffName\": \"VF EU Bus Adv - Value Base 10GB - (2021)\",\n        \"RetailCost\": 106.51\n    },\n    {\n        \"TariffID\": \"7575\",\n        \"TariffName\": \"VF EU Bus Adv - Value Base 1GB - (2021)\",\n        \"RetailCost\": 39.91\n    },\n    {\n        \"TariffID\": \"7576\",\n        \"TariffName\": \"VF EU Bus Adv - Value Base 2GB - (2021)\",\n        \"RetailCost\": 47.33\n    },\n    {\n        \"TariffID\": \"7577\",\n        \"TariffName\": \"VF EU Bus Adv - Value Base 5GB - (2021)\",\n        \"RetailCost\": 69.51\n    },\n    {\n        \"TariffID\": \"7578\",\n        \"TariffName\": \"VF EU Bus Adv Unltd Calls&Data - Extra Base (2021)\",\n        \"RetailCost\": 116.99\n    },\n    {\n        \"TariffID\": \"7579\",\n        \"TariffName\": \"VF EU Bus Adv Unltd Calls&Data - Value Base (2021)\",\n        \"RetailCost\": 109.96\n    },\n    {\n        \"TariffID\": \"7580\",\n        \"TariffName\": \"VF EU Bus Adv Unltd Data Only - Extra - (2021)\",\n        \"RetailCost\": 91.61\n    },\n    {\n        \"TariffID\": \"7581\",\n        \"TariffName\": \"VF EU Bus Adv Unltd Data Only - Value - (2021)\",\n        \"RetailCost\": 91.61\n    },\n    {\n        \"TariffID\": \"7582\",\n        \"TariffName\": \"VF EU Bus Adv Unltd Voice Only - Extra Base (2021)\",\n        \"RetailCost\": 37.63\n    },\n    {\n        \"TariffID\": \"7583\",\n        \"TariffName\": \"VF EU Bus Adv Unltd Voice Only - Value Base (2021)\",\n        \"RetailCost\": 31.83\n    },\n    {\n        \"TariffID\": \"7596\",\n        \"TariffName\": \"VF EU Data Sim 10GB (2021)\",\n        \"RetailCost\": 16.85\n    },\n    {\n        \"TariffID\": \"7597\",\n        \"TariffName\": \"VF EU Data Sim 30GB (2021)\",\n        \"RetailCost\": 22.48\n    },\n    {\n        \"TariffID\": \"7598\",\n        \"TariffName\": \"VF EU Data Sim 4GB (2021)\",\n        \"RetailCost\": 11.23\n    },\n    {\n        \"TariffID\": \"7599\",\n        \"TariffName\": \"VF EU Data Sim Unlimited (2021)\",\n        \"RetailCost\": 47.2\n    },\n    {\n        \"TariffID\": \"7611\",\n        \"TariffName\": \"VF EU Mobile Broadband 12GB (2021)\",\n        \"RetailCost\": 29.21\n    },\n    {\n        \"TariffID\": \"7612\",\n        \"TariffName\": \"VF EU Mobile Broadband 25GB (2021)\",\n        \"RetailCost\": 31.46\n    },\n    {\n        \"TariffID\": \"7613\",\n        \"TariffName\": \"VF EU Mobile Broadband 2GB (2021)\",\n        \"RetailCost\": 20.23\n    },\n    {\n        \"TariffID\": \"7614\",\n        \"TariffName\": \"VF EU Mobile Broadband 6GB (2021)\",\n        \"RetailCost\": 25.85\n    },\n    {\n        \"TariffID\": \"7615\",\n        \"TariffName\": \"VF EU Mobile Broadband Unlimited (2021)\",\n        \"RetailCost\": 52.6\n    },\n    {\n        \"TariffID\": \"7616\",\n        \"TariffName\": \"Pangea Multi-Network 250MB Connection\",\n        \"RetailCost\": 4.75\n    },\n    {\n        \"TariffID\": \"7617\",\n        \"TariffName\": \"Pangea Multi-Network 512MB Connection\",\n        \"RetailCost\": 6\n    },\n    {\n        \"TariffID\": \"7618\",\n        \"TariffName\": \"VF EU Flex Data Only - (2021)\",\n        \"RetailCost\": 9.14\n    },\n    {\n        \"TariffID\": \"7619\",\n        \"TariffName\": \"VF EU Flex Unlimited Voice - (2021)\",\n        \"RetailCost\": 22.55\n    },\n    {\n        \"TariffID\": \"7620\",\n        \"TariffName\": \"VF EU Sharer Data Only - (2021)\",\n        \"RetailCost\": 9.14\n    },\n    {\n        \"TariffID\": \"7621\",\n        \"TariffName\": \"VF EU Sharer Unlimited Voice - (2021)\",\n        \"RetailCost\": 18.31\n    },\n    {\n        \"TariffID\": \"7622\",\n        \"TariffName\": \"VF EU Sharer Unlimited Voice - (2021) - (Whit)\",\n        \"RetailCost\": 9.27\n    },\n    {\n        \"TariffID\": \"7623\",\n        \"TariffName\": \"VF EU Sharer Unlimited Voice + Int - (2021)\",\n        \"RetailCost\": 25.35\n    },\n    {\n        \"TariffID\": \"7628\",\n        \"TariffName\": \"abz FMC Unlimited Data Flex\",\n        \"RetailCost\": 24.02\n    },\n    {\n        \"TariffID\": \"7645\",\n        \"TariffName\": \"abz FMC Wholesale PPM\",\n        \"RetailCost\": 9.15\n    },\n    {\n        \"TariffID\": \"7648\",\n        \"TariffName\": \"abz FMC Business Voice Only (2021)\",\n        \"RetailCost\": 22.88\n    },\n    {\n        \"TariffID\": \"7649\",\n        \"TariffName\": \"abz FMC Business 2GB (2021)\",\n        \"RetailCost\": 25.91\n    },\n    {\n        \"TariffID\": \"7650\",\n        \"TariffName\": \"abz FMC Business 6GB (2021)\",\n        \"RetailCost\": 27.45\n    },\n    {\n        \"TariffID\": \"7651\",\n        \"TariffName\": \"abz FMC Business 12GB (2021)\",\n        \"RetailCost\": 32.08\n    },\n    {\n        \"TariffID\": \"7652\",\n        \"TariffName\": \"abz FMC Business 24GB (2021)\",\n        \"RetailCost\": 36.6\n    },\n    {\n        \"TariffID\": \"7653\",\n        \"TariffName\": \"abz FMC Business 50GB (2021)\",\n        \"RetailCost\": 45.76\n    },\n    {\n        \"TariffID\": \"7654\",\n        \"TariffName\": \"abz One Data 2GB (2021)\",\n        \"RetailCost\": 16.01\n    },\n    {\n        \"TariffID\": \"7655\",\n        \"TariffName\": \"abz One Data 6GB (2021)\",\n        \"RetailCost\": 19.44\n    },\n    {\n        \"TariffID\": \"7656\",\n        \"TariffName\": \"abz One Data 12GB (2021)\",\n        \"RetailCost\": 21.73\n    },\n    {\n        \"TariffID\": \"7657\",\n        \"TariffName\": \"abz One Data 24GB (2021)\",\n        \"RetailCost\": 28.6\n    },\n    {\n        \"TariffID\": \"7658\",\n        \"TariffName\": \"abz One Data 50GB (2021)\",\n        \"RetailCost\": 37.75\n    },\n    {\n        \"TariffID\": \"7659\",\n        \"TariffName\": \"abz FMC Sharer Voice (2021)\",\n        \"RetailCost\": 22.88\n    },\n    {\n        \"TariffID\": \"7660\",\n        \"TariffName\": \"abz FMC Sharer Data Only (2021)\",\n        \"RetailCost\": 11.44\n    },\n    {\n        \"TariffID\": \"7661\",\n        \"TariffName\": \"abz FMC Sharer 2GB Voice (2021)\",\n        \"RetailCost\": 27.45\n    },\n    {\n        \"TariffID\": \"7662\",\n        \"TariffName\": \"abz FMC Sharer 2GB Data Only (2021)\",\n        \"RetailCost\": 16.01\n    },\n    {\n        \"TariffID\": \"7669\",\n        \"TariffName\": \"VF Single 3GB - (2021)\",\n        \"RetailCost\": 20.23\n    },\n    {\n        \"TariffID\": \"7670\",\n        \"TariffName\": \"VF Single 7GB - (2021)\",\n        \"RetailCost\": 24.27\n    },\n    {\n        \"TariffID\": \"7671\",\n        \"TariffName\": \"VF Single 25GB - (2021)\",\n        \"RetailCost\": 29.67\n    },\n    {\n        \"TariffID\": \"7680\",\n        \"TariffName\": \"Pangea Multi-Network Instanet 100GB\",\n        \"RetailCost\": 300\n    },\n    {\n        \"TariffID\": \"7697\",\n        \"TariffName\": \"VF Evolve 24m Business Single 2GB - Catapult\",\n        \"RetailCost\": 11.6\n    },\n    {\n        \"TariffID\": \"7698\",\n        \"TariffName\": \"VF Evolve 24m Business Single 6GB - Catapult\",\n        \"RetailCost\": 15.24\n    },\n    {\n        \"TariffID\": \"7699\",\n        \"TariffName\": \"VF Evolve 24m Business Single 12GB - Catapult\",\n        \"RetailCost\": 16.84\n    },\n    {\n        \"TariffID\": \"7700\",\n        \"TariffName\": \"VF Evolve 24m Business Single 25GB - Catapult\",\n        \"RetailCost\": 21.66\n    },\n    {\n        \"TariffID\": \"7701\",\n        \"TariffName\": \"VF Evolve 24m Business Pro Unlimited - Catapult\",\n        \"RetailCost\": 39.31\n    },\n    {\n        \"TariffID\": \"7702\",\n        \"TariffName\": \"VF Evolve 36m Business Single 2GB - Catapult\",\n        \"RetailCost\": 8.92\n    },\n    {\n        \"TariffID\": \"7703\",\n        \"TariffName\": \"VF Evolve 36m Business Single 6GB - Catapult\",\n        \"RetailCost\": 12.83\n    },\n    {\n        \"TariffID\": \"7704\",\n        \"TariffName\": \"VF Evolve 36m Business Single 12GB - Catapult\",\n        \"RetailCost\": 13.38\n    },\n    {\n        \"TariffID\": \"7705\",\n        \"TariffName\": \"VF Evolve 36m Business Single 25GB - Catapult\",\n        \"RetailCost\": 19.25\n    },\n    {\n        \"TariffID\": \"7706\",\n        \"TariffName\": \"VF Evolve 36m Business Pro Unlimited- Catapult\",\n        \"RetailCost\": 33.46\n    },\n    {\n        \"TariffID\": \"7707\",\n        \"TariffName\": \"VF Evolve 24m Business Data 4GB - Catapult\",\n        \"RetailCost\": 17.1\n    },\n    {\n        \"TariffID\": \"7708\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 2GB - Catapult\",\n        \"RetailCost\": 18.88\n    },\n    {\n        \"TariffID\": \"7709\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 6GB - Catapult\",\n        \"RetailCost\": 24.87\n    },\n    {\n        \"TariffID\": \"7710\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 12GB - Catapult\",\n        \"RetailCost\": 33.46\n    },\n    {\n        \"TariffID\": \"7711\",\n        \"TariffName\": \"VF Evolve 36m Business Data 4GB - Catapult\",\n        \"RetailCost\": 16.04\n    },\n    {\n        \"TariffID\": \"7712\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 2GB - Catapult\",\n        \"RetailCost\": 13.64\n    },\n    {\n        \"TariffID\": \"7713\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 6GB - Catapult\",\n        \"RetailCost\": 20.82\n    },\n    {\n        \"TariffID\": \"7714\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 12GB - Catapult\",\n        \"RetailCost\": 31.23\n    },\n    {\n        \"TariffID\": \"7715\",\n        \"TariffName\": \"VF Data Sim 10GB (2021) - Catapult\",\n        \"RetailCost\": 9.3\n    },\n    {\n        \"TariffID\": \"7716\",\n        \"TariffName\": \"VF Data Sim Unlimited Max (2021) - Catapult\",\n        \"RetailCost\": 28.06\n    },\n    {\n        \"TariffID\": \"7739\",\n        \"TariffName\": \"abz One Sharer Data Only (2021) - BCH\",\n        \"RetailCost\": 7.4\n    },\n    {\n        \"TariffID\": \"7740\",\n        \"TariffName\": \"abz - One Voice and Data - BCH\",\n        \"RetailCost\": 11.1\n    },\n    {\n        \"TariffID\": \"7741\",\n        \"TariffName\": \"VF Data Sim 4GB (2021) - Catapult\",\n        \"RetailCost\": 6.67\n    },\n    {\n        \"TariffID\": \"7742\",\n        \"TariffName\": \"VF Data Sim 30GB (2021) - Catapult\",\n        \"RetailCost\": 13.38\n    },\n    {\n        \"TariffID\": \"7743\",\n        \"TariffName\": \"abz One Business Voice Only (2021) - Catapult\",\n        \"RetailCost\": 10.29\n    },\n    {\n        \"TariffID\": \"7744\",\n        \"TariffName\": \"abz One Business 2GB (2021)  - Catapult\",\n        \"RetailCost\": 10.98\n    },\n    {\n        \"TariffID\": \"7745\",\n        \"TariffName\": \"abz One Business 6GB (2021) - Catapult\",\n        \"RetailCost\": 13.04\n    },\n    {\n        \"TariffID\": \"7746\",\n        \"TariffName\": \"abz One Business 12GB (2021) - Catapult\",\n        \"RetailCost\": 15.55\n    },\n    {\n        \"TariffID\": \"7747\",\n        \"TariffName\": \"abz One Business 24GB (2021) - Catapult\",\n        \"RetailCost\": 18.53\n    },\n    {\n        \"TariffID\": \"7748\",\n        \"TariffName\": \"abz One Business 50GB (2021) - Catapult\",\n        \"RetailCost\": 25.92\n    },\n    {\n        \"TariffID\": \"7749\",\n        \"TariffName\": \"abz One Data 2GB (2021) - Catapult\",\n        \"RetailCost\": 9.6\n    },\n    {\n        \"TariffID\": \"7750\",\n        \"TariffName\": \"abz One Data 6GB (2021) - Catapult\",\n        \"RetailCost\": 11.66\n    },\n    {\n        \"TariffID\": \"7751\",\n        \"TariffName\": \"abz One Data 12GB (2021) - Catapult\",\n        \"RetailCost\": 13.04\n    },\n    {\n        \"TariffID\": \"7752\",\n        \"TariffName\": \"abz One Data 24GB (2021) - Catapult\",\n        \"RetailCost\": 17.16\n    },\n    {\n        \"TariffID\": \"7753\",\n        \"TariffName\": \"abz One Data 50GB (2021) - Catapult\",\n        \"RetailCost\": 22.65\n    },\n    {\n        \"TariffID\": \"7754\",\n        \"TariffName\": \"abz One Sharer 2GB Voice (2021) - Catapult\",\n        \"RetailCost\": 13.04\n    },\n    {\n        \"TariffID\": \"7755\",\n        \"TariffName\": \"abz One Sharer 2GB Data Only (2021) - Catapult\",\n        \"RetailCost\": 9.6\n    },\n    {\n        \"TariffID\": \"7756\",\n        \"TariffName\": \"abz One Business 100GB (2021) - Catapult\",\n        \"RetailCost\": 38.43\n    },\n    {\n        \"TariffID\": \"7757\",\n        \"TariffName\": \"O2 Small Biz 6GB (2022)\",\n        \"RetailCost\": 16.69\n    },\n    {\n        \"TariffID\": \"7759\",\n        \"TariffName\": \"O2 Small Biz 20GB (2022)\",\n        \"RetailCost\": 19.08\n    },\n    {\n        \"TariffID\": \"7761\",\n        \"TariffName\": \"O2 Small Biz 50GB (2022)\",\n        \"RetailCost\": 21.47\n    },\n    {\n        \"TariffID\": \"7763\",\n        \"TariffName\": \"O2 Small Biz Unlimited (2022)\",\n        \"RetailCost\": 28.62\n    },\n    {\n        \"TariffID\": \"7768\",\n        \"TariffName\": \"O2 Small Biz Data Share (2022)\",\n        \"RetailCost\": 3.57\n    },\n    {\n        \"TariffID\": \"7769\",\n        \"TariffName\": \"O2 Small Biz Voice & Data Share (2022)\",\n        \"RetailCost\": 18.48\n    },\n    {\n        \"TariffID\": \"7771\",\n        \"TariffName\": \"O2 Mobile Broadband 2GB (2022)\",\n        \"RetailCost\": 10.01\n    },\n    {\n        \"TariffID\": \"7773\",\n        \"TariffName\": \"O2 Mobile Broadband 10GB (2022)\",\n        \"RetailCost\": 14.79\n    },\n    {\n        \"TariffID\": \"7775\",\n        \"TariffName\": \"O2 Mobile Broadband 30GB (2022)\",\n        \"RetailCost\": 19.55\n    },\n    {\n        \"TariffID\": \"7777\",\n        \"TariffName\": \"O2 Mobile Broadband 300GB (2022)\",\n        \"RetailCost\": 29.09\n    },\n    {\n        \"TariffID\": \"7779\",\n        \"TariffName\": \"O2 Unlimited Data Flex (2022)\",\n        \"RetailCost\": 17.4\n    },\n    {\n        \"TariffID\": \"7863\",\n        \"TariffName\": \"BT-ADSL2+\",\n        \"RetailCost\": 8.3\n    },\n    {\n        \"TariffID\": \"9226\",\n        \"TariffName\": \"VF B5 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 33.31\n    },\n    {\n        \"TariffID\": \"9231\",\n        \"TariffName\": \"VF B6 Evolve 24m Business Single 6GB\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9232\",\n        \"TariffName\": \"VF B6 Evolve 24m Business Single 12GB\",\n        \"RetailCost\": 22.65\n    },\n    {\n        \"TariffID\": \"9233\",\n        \"TariffName\": \"VF B6 Evolve 24m Business Single 25GB\",\n        \"RetailCost\": 29.13\n    },\n    {\n        \"TariffID\": \"9234\",\n        \"TariffName\": \"VF B7 Evolve 36m Business Sharer 6GB\",\n        \"RetailCost\": 24.68\n    },\n    {\n        \"TariffID\": \"9235\",\n        \"TariffName\": \"VF B8 Evolve 24m Business Single 2GB\",\n        \"RetailCost\": 14.68\n    },\n    {\n        \"TariffID\": \"9236\",\n        \"TariffName\": \"VF B8 Evolve 24m Business Single 6GB\",\n        \"RetailCost\": 16.65\n    },\n    {\n        \"TariffID\": \"9237\",\n        \"TariffName\": \"VF B8 Evolve 24m Business Single 12GB\",\n        \"RetailCost\": 18.48\n    },\n    {\n        \"TariffID\": \"9238\",\n        \"TariffName\": \"VF B8 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 37.03\n    },\n    {\n        \"TariffID\": \"9239\",\n        \"TariffName\": \"VF B8 Data Sim Unlimited (2021)\",\n        \"RetailCost\": 32.97\n    },\n    {\n        \"TariffID\": \"9282\",\n        \"TariffName\": \"VF B9 Evolve 24m Business Sharer 6GB\",\n        \"RetailCost\": 19.74\n    },\n    {\n        \"TariffID\": \"9295\",\n        \"TariffName\": \"O2 Basic User \",\n        \"RetailCost\": 12.48\n    },\n    {\n        \"TariffID\": \"9296\",\n        \"TariffName\": \"O2 Micro User Single\",\n        \"RetailCost\": 8.51\n    },\n    {\n        \"TariffID\": \"9298\",\n        \"TariffName\": \"VF B10 Evolve 24m Business Single 2GB\",\n        \"RetailCost\": 16.06\n    },\n    {\n        \"TariffID\": \"9299\",\n        \"TariffName\": \"VF B10 Evolve 24m Business Single 25GB\",\n        \"RetailCost\": 26.58\n    },\n    {\n        \"TariffID\": \"9300\",\n        \"TariffName\": \"VF B10 Mobile Broadband Unlimited (2021)\",\n        \"RetailCost\": 38.39\n    },\n    {\n        \"TariffID\": \"9301\",\n        \"TariffName\": \"VF B10 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 38.67\n    },\n    {\n        \"TariffID\": \"9304\",\n        \"TariffName\": \"O2 Business Single + GR 6GB\",\n        \"RetailCost\": 20.27\n    },\n    {\n        \"TariffID\": \"9305\",\n        \"TariffName\": \"O2 Business Single + GR 20GB\",\n        \"RetailCost\": 23.85\n    },\n    {\n        \"TariffID\": \"9306\",\n        \"TariffName\": \"O2 Business Single + GR 50GB\",\n        \"RetailCost\": 26.83\n    },\n    {\n        \"TariffID\": \"9307\",\n        \"TariffName\": \"O2 Business Single + GR Unlimited\",\n        \"RetailCost\": 30.41\n    },\n    {\n        \"TariffID\": \"9308\",\n        \"TariffName\": \"O2 Business Single + GRE Unlimited Extra\",\n        \"RetailCost\": 39.36\n    },\n    {\n        \"TariffID\": \"9309\",\n        \"TariffName\": \"O2 Business Data Flex + GR\",\n        \"RetailCost\": 17.4\n    },\n    {\n        \"TariffID\": \"9310\",\n        \"TariffName\": \"O2 Abzorb 2022-2023\",\n        \"RetailCost\": 5.23\n    },\n    {\n        \"TariffID\": \"9311\",\n        \"TariffName\": \"O2 Business Data Only + GR 5GB\",\n        \"RetailCost\": 16.69\n    },\n    {\n        \"TariffID\": \"9312\",\n        \"TariffName\": \"O2 Business Data Only + GR 10GB\",\n        \"RetailCost\": 20.27\n    },\n    {\n        \"TariffID\": \"9313\",\n        \"TariffName\": \"O2 Business Data Only + GR 25GB\",\n        \"RetailCost\": 23.85\n    },\n    {\n        \"TariffID\": \"9314\",\n        \"TariffName\": \"O2 Business Data Only + GR 50GB\",\n        \"RetailCost\": 35.78\n    },\n    {\n        \"TariffID\": \"9315\",\n        \"TariffName\": \"O2 Business Data Only + GR 100GB\",\n        \"RetailCost\": 47.71\n    },\n    {\n        \"TariffID\": \"9316\",\n        \"TariffName\": \"O2 Business sharer + GR 2GB\",\n        \"RetailCost\": 19.79\n    },\n    {\n        \"TariffID\": \"9317\",\n        \"TariffName\": \"O2 Business Data Only sharer + GR 2GB\",\n        \"RetailCost\": 17.41\n    },\n    {\n        \"TariffID\": \"9319\",\n        \"TariffName\": \"VF B11 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 27.64\n    },\n    {\n        \"TariffID\": \"9322\",\n        \"TariffName\": \"VF B12 Evolve 24m Business Sharer 2GB\",\n        \"RetailCost\": 11.44\n    },\n    {\n        \"TariffID\": \"9323\",\n        \"TariffName\": \"Pangea Multi-Network 50MB\",\n        \"RetailCost\": 0.64\n    },\n    {\n        \"TariffID\": \"9327\",\n        \"TariffName\": \"VF B13 Evolve 24m Business Sharer 2GB\",\n        \"RetailCost\": 16.97\n    },\n    {\n        \"TariffID\": \"9355\",\n        \"TariffName\": \"VF Evolve 24m Business Voice (2023)\",\n        \"RetailCost\": 17.8\n    },\n    {\n        \"TariffID\": \"9356\",\n        \"TariffName\": \"VF Evolve 24m Business Single 2GB (2023)\",\n        \"RetailCost\": 18.88\n    },\n    {\n        \"TariffID\": \"9357\",\n        \"TariffName\": \"VF Evolve 24m Business Single 6GB (2023)\",\n        \"RetailCost\": 22.65\n    },\n    {\n        \"TariffID\": \"9358\",\n        \"TariffName\": \"VF Evolve 24m Business Single 12GB (2023)\",\n        \"RetailCost\": 24.81\n    },\n    {\n        \"TariffID\": \"9359\",\n        \"TariffName\": \"VF Evolve 24m Business Single 25GB (2023)\",\n        \"RetailCost\": 31.83\n    },\n    {\n        \"TariffID\": \"9360\",\n        \"TariffName\": \"VF Evolve 24m Business Single 50GB (2023)\",\n        \"RetailCost\": 35.6\n    },\n    {\n        \"TariffID\": \"9361\",\n        \"TariffName\": \"VF Evolve 24m Business Pro Unlimited (2023)\",\n        \"RetailCost\": 52.87\n    },\n    {\n        \"TariffID\": \"9362\",\n        \"TariffName\": \"VF Evolve 24m Data Only 2GB (2023)\",\n        \"RetailCost\": 13.48\n    },\n    {\n        \"TariffID\": \"9363\",\n        \"TariffName\": \"VF Evolve 24m Data Only 12GB (2023)\",\n        \"RetailCost\": 18.34\n    },\n    {\n        \"TariffID\": \"9364\",\n        \"TariffName\": \"VF Evolve 24m Data Only 25GB (2023)\",\n        \"RetailCost\": 23.19\n    },\n    {\n        \"TariffID\": \"9365\",\n        \"TariffName\": \"VF Evolve 24m Data Only 100GB (2023)\",\n        \"RetailCost\": 26.97\n    },\n    {\n        \"TariffID\": \"9366\",\n        \"TariffName\": \"VF Evolve 24m Data Only Unlimited (2023)\",\n        \"RetailCost\": 42.08\n    },\n    {\n        \"TariffID\": \"9367\",\n        \"TariffName\": \"VF Evolve 36m Business Voice (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9368\",\n        \"TariffName\": \"VF Evolve 36m Business Single 2GB (2023)\",\n        \"RetailCost\": 15.64\n    },\n    {\n        \"TariffID\": \"9369\",\n        \"TariffName\": \"VF Evolve 36m Business Single 6GB (2023)\",\n        \"RetailCost\": 19.42\n    },\n    {\n        \"TariffID\": \"9370\",\n        \"TariffName\": \"VF Evolve 36m Business Single 12GB (2023)\",\n        \"RetailCost\": 21.58\n    },\n    {\n        \"TariffID\": \"9371\",\n        \"TariffName\": \"VF Evolve 36m Business Single 25GB (2023)\",\n        \"RetailCost\": 28.59\n    },\n    {\n        \"TariffID\": \"9372\",\n        \"TariffName\": \"VF Evolve 36m Business Single 50GB (2023)\",\n        \"RetailCost\": 32.37\n    },\n    {\n        \"TariffID\": \"9373\",\n        \"TariffName\": \"VF Evolve 36m Business Pro Unlimited (2023)\",\n        \"RetailCost\": 48.55\n    },\n    {\n        \"TariffID\": \"9374\",\n        \"TariffName\": \"VF Evolve 36m Data Only 2GB (2023)\",\n        \"RetailCost\": 12.13\n    },\n    {\n        \"TariffID\": \"9375\",\n        \"TariffName\": \"VF Evolve 36m Data Only 12GB (2023)\",\n        \"RetailCost\": 16.99\n    },\n    {\n        \"TariffID\": \"9376\",\n        \"TariffName\": \"VF Evolve 36m Data Only 25GB (2023)\",\n        \"RetailCost\": 21.84\n    },\n    {\n        \"TariffID\": \"9377\",\n        \"TariffName\": \"VF Evolve 36m Data Only 100GB (2023)\",\n        \"RetailCost\": 25.89\n    },\n    {\n        \"TariffID\": \"9378\",\n        \"TariffName\": \"VF Evolve 36m Data Only Unlimited (2023)\",\n        \"RetailCost\": 37.76\n    },\n    {\n        \"TariffID\": \"9379\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 1GB (2023)\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9380\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 23.19\n    },\n    {\n        \"TariffID\": \"9381\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 6GB (2023)\",\n        \"RetailCost\": 35.6\n    },\n    {\n        \"TariffID\": \"9382\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 12GB (2023)\",\n        \"RetailCost\": 50.71\n    },\n    {\n        \"TariffID\": \"9383\",\n        \"TariffName\": \"VF Evolve 24m Business Data 4GB (2023)\",\n        \"RetailCost\": 23.73\n    },\n    {\n        \"TariffID\": \"9384\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 1GB (2023)\",\n        \"RetailCost\": 17.26\n    },\n    {\n        \"TariffID\": \"9385\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 19.96\n    },\n    {\n        \"TariffID\": \"9386\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 6GB (2023)\",\n        \"RetailCost\": 32.37\n    },\n    {\n        \"TariffID\": \"9387\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 12GB (2023)\",\n        \"RetailCost\": 47.47\n    },\n    {\n        \"TariffID\": \"9388\",\n        \"TariffName\": \"VF Evolve 36m Business Data 4GB (2023)\",\n        \"RetailCost\": 22.38\n    },\n    {\n        \"TariffID\": \"9407\",\n        \"TariffName\": \"Pangea Multi-Network 1GB Sharer\",\n        \"RetailCost\": 10.32\n    },\n    {\n        \"TariffID\": \"9408\",\n        \"TariffName\": \"Pangea Multi-Network 2GB Sharer\",\n        \"RetailCost\": 15.04\n    },\n    {\n        \"TariffID\": \"9409\",\n        \"TariffName\": \"Pangea Multi-Network 3GB Sharer\",\n        \"RetailCost\": 20.88\n    },\n    {\n        \"TariffID\": \"9410\",\n        \"TariffName\": \"Pangea Multi-Network 512MB Sharer\",\n        \"RetailCost\": 8\n    },\n    {\n        \"TariffID\": \"9411\",\n        \"TariffName\": \"VF B14 Evolve 24m Business Sharer 2GB\",\n        \"RetailCost\": 18.78\n    },\n    {\n        \"TariffID\": \"9412\",\n        \"TariffName\": \"VF Business Pro Unlimited (2023)\",\n        \"RetailCost\": 12.94\n    },\n    {\n        \"TariffID\": \"9413\",\n        \"TariffName\": \"abz One Wholesale PPM + 500MB Shared\",\n        \"RetailCost\": 4.31\n    },\n    {\n        \"TariffID\": \"9415\",\n        \"TariffName\": \"Pangea EE Data Unlimited 24m\",\n        \"RetailCost\": 28\n    },\n    {\n        \"TariffID\": \"9416\",\n        \"TariffName\": \"Pangea Multi Network Instanet 2GB\",\n        \"RetailCost\": 13.48\n    },\n    {\n        \"TariffID\": \"9417\",\n        \"TariffName\": \"Pangea Multi Network Instanet 5GB\",\n        \"RetailCost\": 21.13\n    },\n    {\n        \"TariffID\": \"9418\",\n        \"TariffName\": \"Pangea Multi Network Instanet 10GB\",\n        \"RetailCost\": 33.49\n    },\n    {\n        \"TariffID\": \"9419\",\n        \"TariffName\": \"Pangea Multi Network Instanet 20GB\",\n        \"RetailCost\": 58.44\n    },\n    {\n        \"TariffID\": \"9420\",\n        \"TariffName\": \"Pangea Multi Network Instanet 50GB\",\n        \"RetailCost\": 126.25\n    },\n    {\n        \"TariffID\": \"9421\",\n        \"TariffName\": \"Pangea Multi Network Instanet 100GB\",\n        \"RetailCost\": 231.05\n    },\n    {\n        \"TariffID\": \"9422\",\n        \"TariffName\": \"Pangea Multi Network Instanet 150GB\",\n        \"RetailCost\": 318.57\n    },\n    {\n        \"TariffID\": \"9424\",\n        \"TariffName\": \"Pangea EU Multi Network ECO 5GB\",\n        \"RetailCost\": 12.35\n    },\n    {\n        \"TariffID\": \"9426\",\n        \"TariffName\": \"VF B15 Evolve 24m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 14.02\n    },\n    {\n        \"TariffID\": \"9429\",\n        \"TariffName\": \"O2 Business Single + GR 500MB\",\n        \"RetailCost\": 9.78\n    },\n    {\n        \"TariffID\": \"9430\",\n        \"TariffName\": \"VF Evolve Business Single 6GB\",\n        \"RetailCost\": 17.26\n    },\n    {\n        \"TariffID\": \"9431\",\n        \"TariffName\": \"VF Evolve Business Single 12GB\",\n        \"RetailCost\": 19.42\n    },\n    {\n        \"TariffID\": \"9432\",\n        \"TariffName\": \"VF Evolve Business Single 25GB\",\n        \"RetailCost\": 25.35\n    },\n    {\n        \"TariffID\": \"9433\",\n        \"TariffName\": \"VF Evolve Business Single 50GB\",\n        \"RetailCost\": 29.13\n    },\n    {\n        \"TariffID\": \"9434\",\n        \"TariffName\": \"VF Evolve Data Only 2GB\",\n        \"RetailCost\": 13.48\n    },\n    {\n        \"TariffID\": \"9435\",\n        \"TariffName\": \"VF Evolve Data Only 12GB\",\n        \"RetailCost\": 18.34\n    },\n    {\n        \"TariffID\": \"9436\",\n        \"TariffName\": \"VF Evolve Data Only 25GB\",\n        \"RetailCost\": 17.8\n    },\n    {\n        \"TariffID\": \"9437\",\n        \"TariffName\": \"VF Evolve Data Only 100GB\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9438\",\n        \"TariffName\": \"VF Evolve Business Voice\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9439\",\n        \"TariffName\": \"VF Evolve Business Single 2GB\",\n        \"RetailCost\": 15.64\n    },\n    {\n        \"TariffID\": \"9440\",\n        \"TariffName\": \"VF Evolve Business Pro Unlimited\",\n        \"RetailCost\": 41\n    },\n    {\n        \"TariffID\": \"9441\",\n        \"TariffName\": \"VF Evolve Data Only Unlimited\",\n        \"RetailCost\": 31.29\n    },\n    {\n        \"TariffID\": \"9442\",\n        \"TariffName\": \"VF Evolve Business Sharer 1GB\",\n        \"RetailCost\": 16.18\n    },\n    {\n        \"TariffID\": \"9443\",\n        \"TariffName\": \"VF Evolve Business Sharer 2GB\",\n        \"RetailCost\": 19.96\n    },\n    {\n        \"TariffID\": \"9444\",\n        \"TariffName\": \"VF Evolve Business Sharer 6GB\",\n        \"RetailCost\": 28.05\n    },\n    {\n        \"TariffID\": \"9445\",\n        \"TariffName\": \"VF Evolve Business Sharer 12GB\",\n        \"RetailCost\": 42.08\n    },\n    {\n        \"TariffID\": \"9446\",\n        \"TariffName\": \"VF Evolve Business Data 4GB\",\n        \"RetailCost\": 16.99\n    },\n    {\n        \"TariffID\": \"9447\",\n        \"TariffName\": \"abz B1 One Business 6GB (2021)\",\n        \"RetailCost\": 18.74\n    },\n    {\n        \"TariffID\": \"9449\",\n        \"TariffName\": \"abz One Sharer Voice (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9450\",\n        \"TariffName\": \"abz One Sharer Data Only (2023)\",\n        \"RetailCost\": 8.09\n    },\n    {\n        \"TariffID\": \"9451\",\n        \"TariffName\": \"abz One Unlimited Data Flex (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9452\",\n        \"TariffName\": \"abz One Business Voice Only (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9453\",\n        \"TariffName\": \"abz One Business 1GB (2023)\",\n        \"RetailCost\": 17.8\n    },\n    {\n        \"TariffID\": \"9454\",\n        \"TariffName\": \"abz One Business 3GB (2023)\",\n        \"RetailCost\": 19.96\n    },\n    {\n        \"TariffID\": \"9455\",\n        \"TariffName\": \"abz One Business 10GB (2023)\",\n        \"RetailCost\": 24.81\n    },\n    {\n        \"TariffID\": \"9456\",\n        \"TariffName\": \"abz One Business 30GB (2023)\",\n        \"RetailCost\": 31.29\n    },\n    {\n        \"TariffID\": \"9457\",\n        \"TariffName\": \"abz One Business 100GB (2023)\",\n        \"RetailCost\": 43.69\n    },\n    {\n        \"TariffID\": \"9458\",\n        \"TariffName\": \"abz One Data Only 1GB (2023)\",\n        \"RetailCost\": 8.09\n    },\n    {\n        \"TariffID\": \"9459\",\n        \"TariffName\": \"abz One Data Only 3GB (2023)\",\n        \"RetailCost\": 10.25\n    },\n    {\n        \"TariffID\": \"9460\",\n        \"TariffName\": \"abz One Data Only 10GB (2023)\",\n        \"RetailCost\": 15.1\n    },\n    {\n        \"TariffID\": \"9461\",\n        \"TariffName\": \"abz One Data Only 30GB (2023)\",\n        \"RetailCost\": 21.31\n    },\n    {\n        \"TariffID\": \"9462\",\n        \"TariffName\": \"abz One Data Only 100GB (2023)\",\n        \"RetailCost\": 33.98\n    },\n    {\n        \"TariffID\": \"9464\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (2023)\",\n        \"RetailCost\": 21.31\n    },\n    {\n        \"TariffID\": \"9551\",\n        \"TariffName\": \"VF B16 Evolve 24m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 15.1\n    },\n    {\n        \"TariffID\": \"9559\",\n        \"TariffName\": \"VF B18 Evolve 24m Business Sharer 6GB (2023)\",\n        \"RetailCost\": 16.18\n    },\n    {\n        \"TariffID\": \"9560\",\n        \"TariffName\": \"VF B18 Evolve 24m Data Only Unlimited (2023)\",\n        \"RetailCost\": 25.89\n    },\n    {\n        \"TariffID\": \"9561\",\n        \"TariffName\": \"O2 Small Biz 7GB (2021)\",\n        \"RetailCost\": 16.66\n    },\n    {\n        \"TariffID\": \"9563\",\n        \"TariffName\": \"VF B19 Evolve 24m Data Only Unlimited (2023)\",\n        \"RetailCost\": 21.58\n    },\n    {\n        \"TariffID\": \"9564\",\n        \"TariffName\": \"VF B20 Evolve 24m Business Pro Unlimited (2023)\",\n        \"RetailCost\": 31.65\n    },\n    {\n        \"TariffID\": \"9565\",\n        \"TariffName\": \"VF B20 Evolve 24m Data Only Unlimited (2023)\",\n        \"RetailCost\": 26.97\n    },\n    {\n        \"TariffID\": \"9566\",\n        \"TariffName\": \"abz One Unlimited Data Flex (30day) (2024)\",\n        \"RetailCost\": 15.5\n    },\n    {\n        \"TariffID\": \"9567\",\n        \"TariffName\": \"abz One Unlimited Data Flex (12m) (2024)\",\n        \"RetailCost\": 14.5\n    },\n    {\n        \"TariffID\": \"9568\",\n        \"TariffName\": \"abz One Unlimited Data Flex (24m) (2024)\",\n        \"RetailCost\": 13.5\n    },\n    {\n        \"TariffID\": \"9569\",\n        \"TariffName\": \"abz One Business 10GB (30day) (2024)\",\n        \"RetailCost\": 16.5\n    },\n    {\n        \"TariffID\": \"9570\",\n        \"TariffName\": \"abz One Business 10GB (12m) (2024)\",\n        \"RetailCost\": 15.5\n    },\n    {\n        \"TariffID\": \"9571\",\n        \"TariffName\": \"abz One Business 10GB (24m) (2024)\",\n        \"RetailCost\": 13.5\n    },\n    {\n        \"TariffID\": \"9572\",\n        \"TariffName\": \"abz One Business 20GB (30day) (2024)\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9573\",\n        \"TariffName\": \"abz One Business 20GB (12m) (2024)\",\n        \"RetailCost\": 18.5\n    },\n    {\n        \"TariffID\": \"9574\",\n        \"TariffName\": \"abz One Business 20GB (24m) (2024)\",\n        \"RetailCost\": 16.5\n    },\n    {\n        \"TariffID\": \"9575\",\n        \"TariffName\": \"abz One Business 50GB (30day) (2024)\",\n        \"RetailCost\": 24.5\n    },\n    {\n        \"TariffID\": \"9576\",\n        \"TariffName\": \"abz One Business 50GB (12m) (2024)\",\n        \"RetailCost\": 22.5\n    },\n    {\n        \"TariffID\": \"9577\",\n        \"TariffName\": \"abz One Business 50GB (24m) (2024)\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9578\",\n        \"TariffName\": \"abz One Business 100GB (30day) (2024)\",\n        \"RetailCost\": 26.5\n    },\n    {\n        \"TariffID\": \"9579\",\n        \"TariffName\": \"abz One Business 100GB (12m) (2024)\",\n        \"RetailCost\": 24.5\n    },\n    {\n        \"TariffID\": \"9580\",\n        \"TariffName\": \"abz One Business 100GB (24m) (2024)\",\n        \"RetailCost\": 22.5\n    },\n    {\n        \"TariffID\": \"9581\",\n        \"TariffName\": \"abz One Business Unlimited (30day) (2024)\",\n        \"RetailCost\": 32.5\n    },\n    {\n        \"TariffID\": \"9582\",\n        \"TariffName\": \"abz One Business Unlimited (12m) (2024)\",\n        \"RetailCost\": 30.5\n    },\n    {\n        \"TariffID\": \"9583\",\n        \"TariffName\": \"abz One Business Unlimited (24m) (2024)\",\n        \"RetailCost\": 28.5\n    },\n    {\n        \"TariffID\": \"9584\",\n        \"TariffName\": \"abz One Data Only 1GB (30day) (2024)\",\n        \"RetailCost\": 7.5\n    },\n    {\n        \"TariffID\": \"9585\",\n        \"TariffName\": \"abz One Data Only 1GB (12m) (2024)\",\n        \"RetailCost\": 7.25\n    },\n    {\n        \"TariffID\": \"9586\",\n        \"TariffName\": \"abz One Data Only 1GB (24m) (2024)\",\n        \"RetailCost\": 7\n    },\n    {\n        \"TariffID\": \"9587\",\n        \"TariffName\": \"abz One Data Only 3GB (30day) (2024)\",\n        \"RetailCost\": 9.5\n    },\n    {\n        \"TariffID\": \"9588\",\n        \"TariffName\": \"abz One Data Only 3GB (12m) (2024)\",\n        \"RetailCost\": 9\n    },\n    {\n        \"TariffID\": \"9589\",\n        \"TariffName\": \"abz One Data Only 3GB (24m) (2024)\",\n        \"RetailCost\": 8.5\n    },\n    {\n        \"TariffID\": \"9590\",\n        \"TariffName\": \"abz One Data Only 10GB (30day) (2024)\",\n        \"RetailCost\": 14\n    },\n    {\n        \"TariffID\": \"9591\",\n        \"TariffName\": \"abz One Data Only 10GB (12m) (2024)\",\n        \"RetailCost\": 13.25\n    },\n    {\n        \"TariffID\": \"9592\",\n        \"TariffName\": \"abz One Data Only 10GB (24m) (2024)\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9593\",\n        \"TariffName\": \"abz One Data Only 30GB (30day) (2024)\",\n        \"RetailCost\": 19.75\n    },\n    {\n        \"TariffID\": \"9594\",\n        \"TariffName\": \"abz One Data Only 30GB (12m) (2024)\",\n        \"RetailCost\": 18.75\n    },\n    {\n        \"TariffID\": \"9595\",\n        \"TariffName\": \"abz One Data Only 30GB (24m) (2024)\",\n        \"RetailCost\": 17.75\n    },\n    {\n        \"TariffID\": \"9596\",\n        \"TariffName\": \"abz One Data Only 100GB (30day) (2024)\",\n        \"RetailCost\": 31.5\n    },\n    {\n        \"TariffID\": \"9597\",\n        \"TariffName\": \"abz One Data Only 100GB (12m) (2024)\",\n        \"RetailCost\": 29.75\n    },\n    {\n        \"TariffID\": \"9598\",\n        \"TariffName\": \"abz One Data Only 100GB (24m) (2024)\",\n        \"RetailCost\": 28\n    },\n    {\n        \"TariffID\": \"9600\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (30day) (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9601\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (12m) (2024)\",\n        \"RetailCost\": 19\n    },\n    {\n        \"TariffID\": \"9602\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (24m) (2024)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9603\",\n        \"TariffName\": \"abz One Sharer 6GB Data Only (30day) (2024)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9604\",\n        \"TariffName\": \"abz One Sharer 6GB Data Only (12m) (2024)\",\n        \"RetailCost\": 17\n    },\n    {\n        \"TariffID\": \"9605\",\n        \"TariffName\": \"abz One Sharer 6GB Data Only (24m) (2024)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"9606\",\n        \"TariffName\": \"abz One Sharer Voice (30day) (2024)\",\n        \"RetailCost\": 15.5\n    },\n    {\n        \"TariffID\": \"9607\",\n        \"TariffName\": \"abz One Sharer Voice (12m) (2024)\",\n        \"RetailCost\": 14.5\n    },\n    {\n        \"TariffID\": \"9608\",\n        \"TariffName\": \"abz One Sharer Voice (24m) (2024)\",\n        \"RetailCost\": 13.5\n    },\n    {\n        \"TariffID\": \"9609\",\n        \"TariffName\": \"abz One Sharer Data Only (30day) (2024)\",\n        \"RetailCost\": 9.5\n    },\n    {\n        \"TariffID\": \"9610\",\n        \"TariffName\": \"abz One Sharer Data Only (12m) (2024)\",\n        \"RetailCost\": 8.5\n    },\n    {\n        \"TariffID\": \"9611\",\n        \"TariffName\": \"abz One Sharer Data Only (24m) (2024)\",\n        \"RetailCost\": 7.5\n    },\n    {\n        \"TariffID\": \"9612\",\n        \"TariffName\": \"O2 K1 Business sharer + GR 2GB\",\n        \"RetailCost\": 13\n    },\n    {\n        \"TariffID\": \"9613\",\n        \"TariffName\": \"O2 K1 Business Data Only sharer + GR 2GB\",\n        \"RetailCost\": 10.73\n    },\n    {\n        \"TariffID\": \"9614\",\n        \"TariffName\": \"VF Academia Data Only 2GB\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"9615\",\n        \"TariffName\": \"Pangea Multi-Network 50MB Sharer\",\n        \"RetailCost\": 0.64\n    },\n    {\n        \"TariffID\": \"9616\",\n        \"TariffName\": \"O2 Mobile Broadband Unlimited (2024)\",\n        \"RetailCost\": 30\n    },\n    {\n        \"TariffID\": \"9617\",\n        \"TariffName\": \"O2 Small Biz 500MB (2024)\",\n        \"RetailCost\": 10.5\n    },\n    {\n        \"TariffID\": \"9618\",\n        \"TariffName\": \"Pangea Multi-Network 5GB Sharer\",\n        \"RetailCost\": 13.42\n    },\n    {\n        \"TariffID\": \"9619\",\n        \"TariffName\": \"Pangea Multi-Network 250MB Sharer\",\n        \"RetailCost\": 1.57\n    },\n    {\n        \"TariffID\": \"9620\",\n        \"TariffName\": \"VF B21 Evolve 24m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 13.7\n    },\n    {\n        \"TariffID\": \"9622\",\n        \"TariffName\": \"VF B22 Evolve 36m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 11.85\n    },\n    {\n        \"TariffID\": \"9623\",\n        \"TariffName\": \"O2 SIM only Small Biz 1GB Shared (2020)\",\n        \"RetailCost\": 15.9\n    },\n    {\n        \"TariffID\": \"9624\",\n        \"TariffName\": \"O2 SIM only Small Biz 5GB Shared (2020)\",\n        \"RetailCost\": 19.57\n    },\n    {\n        \"TariffID\": \"9625\",\n        \"TariffName\": \"O2 SIM only Small Biz 10GB Shared (2020)\",\n        \"RetailCost\": 23.24\n    },\n    {\n        \"TariffID\": \"9626\",\n        \"TariffName\": \"O2 Mobile Broadband 1GB Shared (2020)\",\n        \"RetailCost\": 12.23\n    },\n    {\n        \"TariffID\": \"9643\",\n        \"TariffName\": \"O2 F1 Small Biz Unlimited (2022)\",\n        \"RetailCost\": 26\n    },\n    {\n        \"TariffID\": \"9644\",\n        \"TariffName\": \"O2 F1 Business Single + GR Unlimited\",\n        \"RetailCost\": 26\n    },\n    {\n        \"TariffID\": \"9645\",\n        \"TariffName\": \"O2 Mobile Broadband 6GB (2022)\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9646\",\n        \"TariffName\": \"O2 Mobile Broadband 12GB (2022)\",\n        \"RetailCost\": 15\n    },\n    {\n        \"TariffID\": \"9647\",\n        \"TariffName\": \"O2 Small Biz 9GB (2021)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9648\",\n        \"TariffName\": \"VF B23 Evolve 36m Business Single 25GB (2023)\",\n        \"RetailCost\": 13\n    },\n    {\n        \"TariffID\": \"9649\",\n        \"TariffName\": \"O2 Small Biz 3GB Shares (2024)\",\n        \"RetailCost\": 18.48\n    },\n    {\n        \"TariffID\": \"9650\",\n        \"TariffName\": \"O2 Business Single + GR 500MB (2024)\",\n        \"RetailCost\": 10\n    },\n    {\n        \"TariffID\": \"9651\",\n        \"TariffName\": \"O2 Business Single + GR 6GB (2024)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"9652\",\n        \"TariffName\": \"O2 Business Single + GR 25GB (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9653\",\n        \"TariffName\": \"O2 Business Single + GR 50GB (2024)\",\n        \"RetailCost\": 22\n    },\n    {\n        \"TariffID\": \"9654\",\n        \"TariffName\": \"O2 Business Single + GR Unlimited (2024)\",\n        \"RetailCost\": 24\n    },\n    {\n        \"TariffID\": \"9655\",\n        \"TariffName\": \"O2 Business Single + GRE Unlimited Extra (2024)\",\n        \"RetailCost\": 30\n    },\n    {\n        \"TariffID\": \"9656\",\n        \"TariffName\": \"O2 Business Data Flex + GR (2024)\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9657\",\n        \"TariffName\": \"O2 Business Data Only + GR 5GB (2024)\",\n        \"RetailCost\": 12\n    },\n    {\n        \"TariffID\": \"9658\",\n        \"TariffName\": \"O2 Business Data Only + GR 10GB (2024)\",\n        \"RetailCost\": 14\n    },\n    {\n        \"TariffID\": \"9659\",\n        \"TariffName\": \"O2 Business Data Only + GR 25GB (2024)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"9660\",\n        \"TariffName\": \"O2 Business Data Only + GR 50GB (2024)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9661\",\n        \"TariffName\": \"O2 Business Data Only + GR 100GB (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9662\",\n        \"TariffName\": \"O2 Business Data Only + GR Unlimited (2024)\",\n        \"RetailCost\": 22\n    },\n    {\n        \"TariffID\": \"9663\",\n        \"TariffName\": \"O2 Business Sharer + GR 3GB (2024)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"9664\",\n        \"TariffName\": \"O2 Business Sharer + GR 6GB (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9665\",\n        \"TariffName\": \"O2 Business Sharer + GR 9GB (2024)\",\n        \"RetailCost\": 23\n    },\n    {\n        \"TariffID\": \"9666\",\n        \"TariffName\": \"O2 Business Data Only sharer + GR 4GB (2024)\",\n        \"RetailCost\": 13\n    },\n    {\n        \"TariffID\": \"9667\",\n        \"TariffName\": \"VF Busienss Share Data Only\",\n        \"RetailCost\": 5.5\n    },\n    {\n        \"TariffID\": \"9668\",\n        \"TariffName\": \"VF Busienss Share Unlimited Voice\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9669\",\n        \"TariffName\": \"VF Busienss Share Unlimited Voice + Int\",\n        \"RetailCost\": 15.95\n    },\n    {\n        \"TariffID\": \"9670\",\n        \"TariffName\": \"VF Business Data Only 4GB\",\n        \"RetailCost\": 13.65\n    },\n    {\n        \"TariffID\": \"9671\",\n        \"TariffName\": \"VF Business Data Only 10GB\",\n        \"RetailCost\": 21.35\n    },\n    {\n        \"TariffID\": \"9672\",\n        \"TariffName\": \"VF Business Data Only 30GB\",\n        \"RetailCost\": 22.48\n    },\n    {\n        \"TariffID\": \"9673\",\n        \"TariffName\": \"VF Business Data Only Unlimited\",\n        \"RetailCost\": 32.97\n    },\n    {\n        \"TariffID\": \"9674\",\n        \"TariffName\": \"VF Business Data Flex\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9675\",\n        \"TariffName\": \"VF Business Flex Data Only\",\n        \"RetailCost\": 5.5\n    },\n    {\n        \"TariffID\": \"9676\",\n        \"TariffName\": \"VF Business Single 2GB\",\n        \"RetailCost\": 16.11\n    },\n    {\n        \"TariffID\": \"9677\",\n        \"TariffName\": \"VF Business Single 6GB\",\n        \"RetailCost\": 17.97\n    },\n    {\n        \"TariffID\": \"9678\",\n        \"TariffName\": \"VF Business Single 12GB\",\n        \"RetailCost\": 27\n    },\n    {\n        \"TariffID\": \"9679\",\n        \"TariffName\": \"VF Business Single 24GB\",\n        \"RetailCost\": 29.73\n    },\n    {\n        \"TariffID\": \"9680\",\n        \"TariffName\": \"VF Business Single Unlimited\",\n        \"RetailCost\": 32.97\n    },\n    {\n        \"TariffID\": \"9681\",\n        \"TariffName\": \"O2 L1 Business Single + GR Unlimited (2024)\",\n        \"RetailCost\": 22.83\n    },\n    {\n        \"TariffID\": \"9688\",\n        \"TariffName\": \"Abenz Tariff 2 \",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"9691\",\n        \"TariffName\": \"VF R1 Evolve 36m Business Voice (2024)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9692\",\n        \"TariffName\": \"VF R1 Evolve 36m Data Only 12GB (2024)\",\n        \"RetailCost\": 18.34\n    },\n    {\n        \"TariffID\": \"9693\",\n        \"TariffName\": \"VF R1 Evolve 36m Data Only Unlimited (2024)\",\n        \"RetailCost\": 31.29\n    },\n    {\n        \"TariffID\": \"9694\",\n        \"TariffName\": \"VF R1 Evolve 36m Business Sharer 2GB (2024)\",\n        \"RetailCost\": 16.18\n    },\n    {\n        \"TariffID\": \"9703\",\n        \"TariffName\": \"O2 B1 Business Sharer + GR 10GB (2024)\",\n        \"RetailCost\": 18.08\n    },\n    {\n        \"TariffID\": \"9708\",\n        \"TariffName\": \"VF BCU Business Voice (2023)\",\n        \"RetailCost\": 2.07\n    },\n    {\n        \"TariffID\": \"9709\",\n        \"TariffName\": \"VF BCU Business Single 2GB (2023)\",\n        \"RetailCost\": 2.58\n    },\n    {\n        \"TariffID\": \"9710\",\n        \"TariffName\": \"VF BCU Business Single 6GB (2023)\",\n        \"RetailCost\": 3.6\n    },\n    {\n        \"TariffID\": \"9711\",\n        \"TariffName\": \"VF BCU Business Single 12GB (2023)\",\n        \"RetailCost\": 5.13\n    },\n    {\n        \"TariffID\": \"9712\",\n        \"TariffName\": \"VF BCU Business Single 50GB (2023)\",\n        \"RetailCost\": 12\n    },\n    {\n        \"TariffID\": \"9713\",\n        \"TariffName\": \"VF BCU Business Pro Unlimited (2023)\",\n        \"RetailCost\": 45\n    },\n    {\n        \"TariffID\": \"9714\",\n        \"TariffName\": \"VF BCU Data Only 2GB (2023)\",\n        \"RetailCost\": 5.52\n    },\n    {\n        \"TariffID\": \"9715\",\n        \"TariffName\": \"VF BCU Data Only 12GB (2023)\",\n        \"RetailCost\": 10.79\n    },\n    {\n        \"TariffID\": \"9716\",\n        \"TariffName\": \"VF BCU Data Only 25GB (2023)\",\n        \"RetailCost\": 7.31\n    },\n    {\n        \"TariffID\": \"9717\",\n        \"TariffName\": \"VF BCU Data Only 100GB (2023)\",\n        \"RetailCost\": 24\n    },\n    {\n        \"TariffID\": \"9718\",\n        \"TariffName\": \"VF BCU Data Only Unlimited (2023)\",\n        \"RetailCost\": 18.24\n    },\n    {\n        \"TariffID\": \"9721\",\n        \"TariffName\": \"abz One Wholesale PPM (2024)\",\n        \"RetailCost\": 2.25\n    },\n    {\n        \"TariffID\": \"9722\",\n        \"TariffName\": \"Bens Final Mobile Tariff Test 17.06\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"9723\",\n        \"TariffName\": \"Bens Final Mobile Tariff Test 17.06 Duplicate\",\n        \"RetailCost\": 45\n    },\n    {\n        \"TariffID\": \"9724\",\n        \"TariffName\": \"Pangea Multi-Network 500MB+30Min+20sms Sharer\",\n        \"RetailCost\": 17.81\n    }\n]"}],"_postman_id":"98010744-6ff6-4867-a3a5-63b5183e4175"},{"name":"Tariff Change","id":"cb711676-35e7-4967-a323-b94431f252f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tariff/ChangeTariff","description":"<h2 id=\"tariff-change\">Tariff Change</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Tariff/ChangeTariff/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to change the tariff associated to a mobile connection.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"contractId\": 0,\n   \"tariffId\": 0\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>The unique ID of the mobile number the bundle will be applied against.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>tariffId</td>\n<td>long</td>\n<td>The unique ID of the tariff.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ChangeTariff"],"host":["https://stagingapi.click2sign.co.uk/api/Tariff"],"query":[],"variable":[]}},"response":[{"id":"9cd61f73-9078-4b18-aba7-df8b849c5143","name":"Tariff Change","originalRequest":{"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tariff/ChangeTariff"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"diary_entry_id\": 123456,\r\n    \"response_message\": \"\"\r\n}\r\n"}],"_postman_id":"cb711676-35e7-4967-a323-b94431f252f0"}],"id":"451e944a-e68f-4722-b162-a3961969577e","_postman_id":"451e944a-e68f-4722-b162-a3961969577e","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"3b84b657-9820-4bb2-bb6c-f467d2aed28c","description":"<p>The <code>/tariff</code> endpoint is used to manage and change the tairiffs applied against one or more connections.</p>\n","_postman_id":"3b84b657-9820-4bb2-bb6c-f467d2aed28c","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Tasks Controller","item":[{"name":"Appendix","item":[{"name":"Ticket Task Types","id":"bdf28a9f-32e0-4b8d-915f-09861527ad6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tasks/GetDiaryTaskTypes/","description":"<h1 id=\"get-task-types\">Get Task Types</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Bars/GetDiaryTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of applicable ticket task types</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"DiaryTaskID\": 0,\n      \"Description\": \"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetDiaryTaskTypes",""],"host":["https://stagingapi.click2sign.co.uk/api/Tasks"],"query":[],"variable":[]}},"response":[{"id":"76401d4d-0196-4a3b-aab1-ce8326fdffc0","name":"Get Task Types","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tasks/GetDiaryTaskTypes/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"DiaryTaskID\": 3,\n        \"Description\": \"GENERAL QUERY\"\n    }\n]"}],"_postman_id":"bdf28a9f-32e0-4b8d-915f-09861527ad6a"},{"name":"Ticket Status Types","id":"082420c3-e543-4742-b6df-3382f3a23205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tasks/GetDiaryStatusTypes/","description":"<h1 id=\"get-task-status\">Get Task Status</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Bars/GetDiaryStatusTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of applicable ticket statuses.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response-body\">Example Response Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"DiaryStatusID\": 0,\n      \"Description\": \"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetDiaryStatusTypes",""],"host":["https://stagingapi.click2sign.co.uk/api/Tasks"],"query":[],"variable":[]}},"response":[{"id":"d9990f76-2e3d-44dd-9201-17fcdbb56973","name":"Ticket Status","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tasks/GetDiaryStatusTypes/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\r\n   {\r\n      \"DiaryStatusID\": 1,\r\n      \"Description\": \"PENDING SAVE\"\r\n   },\r\n   {\r\n      \"DiaryStatusID\": 2,\r\n      \"Description\": \"AWAITING ALLOCATION\"\r\n   }\r\n]\r\n"}],"_postman_id":"082420c3-e543-4742-b6df-3382f3a23205"}],"id":"e2acafd3-9d92-4b45-a5e2-a6f521e573fd","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/tasks</code> endpoints.</p>\n","_postman_id":"e2acafd3-9d92-4b45-a5e2-a6f521e573fd","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add Comment to Ticket","id":"ddeccb24-f140-4774-a69c-c5cb3a78b10c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/tasks/AddTaskComment?diaryEntryId=<diary_entry_id>&comment=\"\"\"","description":"<h2 id=\"add-comment-to-ticket\">Add Comment to Ticket</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/tasks/AddTaskComment/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to add a comment to a ticket.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"diaryEntryId\": 0,\n   \"comment\": \"\"\n}\n\n</code></pre>\n<h3 id=\"query-parameters-1\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>diaryEntryId</td>\n<td>long</td>\n<td>TicketID of the request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>A comment to be added to the ticket</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["AddTaskComment"],"host":["https://stagingapi.click2sign.co.uk/api/tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"},{"key":"comment","value":"\"\"\""}],"variable":[]}},"response":[{"id":"b2f1f276-52e1-4921-8cba-72f4a43af1bc","name":"Add Task Coment","originalRequest":{"method":"POST","header":[],"url":"https://stagingapi.click2sign.co.uk/api/tasks/AddTaskComment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Mon, 24 Jun 2024 09:19:14 GMT"},{"key":"Content-Length","value":"51"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}"}],"_postman_id":"ddeccb24-f140-4774-a69c-c5cb3a78b10c"},{"name":"Get Comments for Ticket","id":"809f67ee-5d69-4a32-ba72-35954474044a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tasks/GetCommentsForTask/?diaryEntryId=<diary_entry_id>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["GetCommentsForTask",""],"host":["https://stagingapi.click2sign.co.uk/api/Tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"}],"variable":[]}},"response":[{"id":"fa8efe8f-076d-4ee2-b2f8-0a8663762540","name":"Get Comments for Ticket","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Tasks/GetCommentsForTask/?diaryEntryId={{ticket_id}}","host":["https://stagingapi.click2sign.co.uk/api/Tasks"],"path":["GetCommentsForTask",""],"query":[{"key":"diaryEntryId","value":"{{ticket_id}}"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n   \"DiaryCommentID\":0,\r\n   \"DiaryEntryID\":0,\r\n   \"CreatedTime\":\"0001-01-01T00:00:00\",\r\n   \"Comment\":null\r\n}"}],"_postman_id":"809f67ee-5d69-4a32-ba72-35954474044a"},{"name":"Get Tickets for Customer","id":"d216f17e-18db-404a-87f4-e2efe0b478b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/tasks/GetCommentsForTask/?diaryEntryId=<diary_entry_id>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}},"urlObject":{"path":["GetCommentsForTask",""],"host":["https://stagingapi.click2sign.co.uk/api/tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"}],"variable":[]}},"response":[{"id":"4f2d90d7-0801-4fa1-a246-9694e9877419","name":"Get Tickets for Customer","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/tasks/GetCommentsForTask/?diaryEntryId=<diary_entry_id>","host":["https://stagingapi.click2sign.co.uk/api/tasks"],"path":["GetCommentsForTask",""],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"DiaryCommentID\":0,\r\n      \"DiaryEntryID\":0,\r\n      \"CreatedTime\":\"0001-01-01T00:00:00\",\r\n      \"Comment\":null\r\n   }\r\n]"}],"_postman_id":"d216f17e-18db-404a-87f4-e2efe0b478b9"},{"name":"Raise Task","id":"bc8f5184-a66e-4576-a974-fb152cc275df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"diaryTaskId\": <diary_task_id>,\r\n    \"comment\": <comment>,\r\n    \"contractId\": <contract_ids>\r\n}","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/tasks/RaiseTask/","description":"<h2 id=\"raise-task\">Raise Task</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/tasks/RaiseTask/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to generate a new ticket against a specific connection using its associated ContractID.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><code>Content-Type: application/json</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"diaryTaskId\": 0,\n   \"comment\": \"\",\n   \"contractId\": 0\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>diaryTaskId</td>\n<td>int</td>\n<td>Unique ID for the task being generated.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>A comment to be added to the ticket</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>Unique ID of the mobile connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["RaiseTask",""],"host":["https://stagingapi.click2sign.co.uk/api/tasks"],"query":[],"variable":[]}},"response":[{"id":"70589e96-1319-461e-956b-15464725d035","name":"Raise Task","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"diaryTaskId\": <diary_task_id>,\r\n    \"comment\": <comment>,\r\n    \"contractId\": <contract_ids>\r\n}","options":{"raw":{"language":"json"}}},"url":"https://stagingapi.click2sign.co.uk/api/tasks/RaiseTask/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}"}],"_postman_id":"bc8f5184-a66e-4576-a974-fb152cc275df"},{"name":"View Task Status - Bulk","id":"bd0ead37-830b-4d70-a7b7-d1315add04a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/tasks/ViewTaskStatusBulk/?lapsedTime=<lapsed_time>","description":"<h3 id=\"view-task-status-bulk\">View Task Status Bulk</h3>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/tasks/ViewTaskStatusBulk/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows you to view the status of multiple tickets based on a <code>LapsedTime</code>value provided.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LapsedTime</td>\n<td>integer</td>\n<td>Integer value in minutes</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"DiaryEntryID\":0,\n   \"DiaryStatusID\":0,\n   \"Description\":\"ALLOCATED\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DiaryEntryID</td>\n<td>long</td>\n<td>Unique ID for the ticket</td>\n</tr>\n<tr>\n<td>DiaryStatusID</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>long</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"view-task-status\">View Task Status</h3>\n<p>This endpoint allows you to view the status of a specific task identified by the DiaryEntryID.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>Base URL: https://stagingapi.click2sign.co.uk/api/</p>\n</li>\n<li><p>Path: /Tasks/ViewTaskStatus/</p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li>DiaryEntryID (required, string): The ID of the task to view status for.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-1\">Response</h4>\n<p>The response of this request is a text/plain content type with a status code of 200. The response body contains the status of the task, which is indicated as \"Complete\".</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This request does not require a request body.</p>\n<h4 id=\"response-body-json-schema\">Response Body (JSON Schema)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"status\": {\n      \"type\": \"string\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["ViewTaskStatusBulk",""],"host":["https://stagingapi.click2sign.co.uk/api/tasks"],"query":[{"key":"lapsedTime","value":"<lapsed_time>"}],"variable":[]}},"response":[{"id":"0e53e03b-2dc2-4fb7-a2c2-4520d928a0a0","name":"View Task Status - Bulk","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/tasks/ViewTaskStatusBulk/?LapsedTime=<lapsed_time>","host":["https://stagingapi.click2sign.co.uk/api/tasks"],"path":["ViewTaskStatusBulk",""],"query":[{"key":"LapsedTime","value":"<lapsed_time>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n   {\r\n      \"DiaryEntryID\":123456,\r\n      \"DiaryStatusID\":3,\r\n      \"Description\":\"ALLOCATED\"\r\n   }\r\n]"}],"_postman_id":"bd0ead37-830b-4d70-a7b7-d1315add04a6"},{"name":"View Task Status","id":"4d487ac1-8c75-4631-8697-b6b975a58705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/Tasks/ViewTaskStatus/?diaryEntryId=<diary_entry_id>","description":"<h3 id=\"view-task-status\">View Task Status</h3>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/tasks/ViewTaskStatus/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows you to view the status of a specific task identified by the DiaryEntryID.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DairyEntryID</td>\n<td>long</td>\n<td>TicketID of the request</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful.</td>\n</tr>\n<tr>\n<td>diary_entry_id</td>\n<td>long</td>\n<td>The ID of the ticket created for this action. This will return null should the request not be successful.</td>\n</tr>\n<tr>\n<td>response_message</td>\n<td>string</td>\n<td>A message providing additional information about the response. This usually showcases error messages.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ViewTaskStatus",""],"host":["https://stagingapi.click2sign.co.uk/api/Tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"}],"variable":[]}},"response":[{"id":"ee494c94-a8eb-44a6-816f-56d09eeebcda","name":"View Task Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/Tasks/ViewTaskStatus/?DiaryEntryID=<diary_entry_id>","host":["https://stagingapi.click2sign.co.uk/api/Tasks"],"path":["ViewTaskStatus",""],"query":[{"key":"DiaryEntryID","value":"<diary_entry_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"diary_entry_id\": 123456,\n    \"response_message\": \"\"\n}"}],"_postman_id":"4d487ac1-8c75-4631-8697-b6b975a58705"}],"id":"8be3cdde-e2e5-4b70-a549-a62797a36613","description":"<p>This subfolder contains the primary API calls for the <code>/api/tasks</code>endpoint.</p>\n","_postman_id":"8be3cdde-e2e5-4b70-a549-a62797a36613","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"f291738c-3de8-4b99-9887-a95becd26f84","description":"<p>The <code>/tasks</code> endpoint allows for tickets to be created, viewed and updated.</p>\n","_postman_id":"f291738c-3de8-4b99-9887-a95becd26f84","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Usage","item":[{"name":"Appendix","item":[],"id":"884a9338-c298-4594-9496-7ca2d2137926","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/usage</code>endpoints.</p>\n","_postman_id":"884a9338-c298-4594-9496-7ca2d2137926","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Group Data Usage Groups","id":"7970bd98-999d-4f49-8f30-f4e30369634f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/usage/GetGroupDataUsageGroups","description":"<h2 id=\"group-data-usage-groups\">Group Data Usage Groups</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/usage/GetGroupDataUsageGroups/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns a list of mobile group data usage groups with associated usage information for the associated Reseller of the API user</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<p><code>None</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"GroupId\":0,\n      \"ResellerId\":0,\n      \"Reseller_Name\":\"\",\n      \"CustomerId\":0,\n      \"Customer\":\"\",\n      \"Group_Name\":\"\",\n      \"Number_Of_CLIs\":0,\n      \"Group_Allowance_GB\":0.00,\n      \"Group_Data_Used_GB\":0.00,\n      \"Group_Usage_Percentage\":0.00,\n      \"Nop\":\"\"\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GroupId</td>\n<td>long</td>\n<td>Unique ID of the data group</td>\n</tr>\n<tr>\n<td>ResellerId</td>\n<td>long</td>\n<td>Unique ID of the Reseller associated to the group</td>\n</tr>\n<tr>\n<td>Reseller_Name</td>\n<td>string</td>\n<td>Name of Reseller associated to the group</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>Unique ID of the Customer associated to the group</td>\n</tr>\n<tr>\n<td>Group_Name</td>\n<td>string</td>\n<td>Name of the data usage group</td>\n</tr>\n<tr>\n<td>Number_Of_CLIs</td>\n<td>integer</td>\n<td>Number of CLIs that are included in hte group</td>\n</tr>\n<tr>\n<td>Group_Allowance_GB</td>\n<td>decimal</td>\n<td>Total allowance of the group in Gigabytes</td>\n</tr>\n<tr>\n<td>group_Group_Data_Used_GBData_Used_GB</td>\n<td>decimal</td>\n<td>Total amount of data used within group in Gigabytes</td>\n</tr>\n<tr>\n<td>Group_Usage_Percentage</td>\n<td>decimal</td>\n<td>Percentage of data used by group</td>\n</tr>\n<tr>\n<td>Nop</td>\n<td>string</td>\n<td>Network operator code for group</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetGroupDataUsageGroups"],"host":["https://stagingapi.click2sign.co.uk/api/usage"],"query":[],"variable":[]}},"response":[{"id":"658ff18e-0af8-4356-98bb-ed5fd48cd5b7","name":"Group Data Usage Groups","originalRequest":{"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/usage/GetGroupDataUsageGroups"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\r\n   {\r\n      \"GroupId\":0,\r\n      \"ResellerId\":0,\r\n      \"Reseller_Name\":\"\",\r\n      \"CustomerId\":0,\r\n      \"Customer\":\"\",\r\n      \"Group_Name\":\"\",\r\n      \"Number_Of_CLIs\":0,\r\n      \"Group_Allowance_GB\":0.00,\r\n      \"Group_Data_Used_GB\":0.00,\r\n      \"Group_Usage_Percentage\":0.00,\r\n      \"Nop\":\"\"\r\n   }\r\n]\r\n"}],"_postman_id":"7970bd98-999d-4f49-8f30-f4e30369634f"},{"name":"Get Usage Information for CLI","id":"b0016999-7daa-4b07-be79-94ec363cfdac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/usage/GetUsageInformationForCli?contracTId=<contract_ids>","description":"<h2 id=\"get-usage-information-for-cli\">Get Usage Information for CLI</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/usage/GetUsageInformationForCli/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns a list of mobile usage information for a given CLI.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contractId</td>\n<td>long</td>\n<td>Unique ID for mobile connection</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"PlanName\": \"\",\n        \"DataAllowance\": \"\",\n        \"DataUsed\": \"\",\n        \"MinuteAllowance\": \"\",\n        \"MinutesUsed\": 0.00,\n        \"TextAllowance\": \"\",\n        \"TextsUsed\": 0.00,\n        \"CostAllowance\": 0.0,\n        \"CostUsed\": 0.00    }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PlanName</td>\n<td>string</td>\n<td>Unique name of the Billing plan associated to the connection</td>\n</tr>\n<tr>\n<td>DataAllowance</td>\n<td>string</td>\n<td>The individual or group allowance for the connection</td>\n</tr>\n<tr>\n<td>DataUsed</td>\n<td>string</td>\n<td>The amount of data used against the plan</td>\n</tr>\n<tr>\n<td>MinuteAllowance</td>\n<td>string</td>\n<td>The amount of minutes associated to the plan</td>\n</tr>\n<tr>\n<td>MinutesUsed</td>\n<td>decimal</td>\n<td>The number of minutes used</td>\n</tr>\n<tr>\n<td>TextAllowance</td>\n<td>string</td>\n<td>The volume of SMS message included in the plan</td>\n</tr>\n<tr>\n<td>TextsUsed</td>\n<td>decimal</td>\n<td>The number of SMS messages used</td>\n</tr>\n<tr>\n<td>CostAllowance</td>\n<td>double</td>\n<td>The cost allowance for the CLI. This is a monetary value.</td>\n</tr>\n<tr>\n<td>CostUsed</td>\n<td>decimal</td>\n<td>The amount of cost used. This is a monetary value.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetUsageInformationForCli"],"host":["https://stagingapi.click2sign.co.uk/api/usage"],"query":[{"key":"contracTId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"14ef3d7c-f425-434f-910d-b67a0a1c2687","name":"Get Usage Information for CLI","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/usage/GetUsageInformationForCli?contracTId=<contract_ids>","host":["https://stagingapi.click2sign.co.uk/api/usage"],"path":["GetUsageInformationForCli"],"query":[{"key":"contracTId","value":"<contract_ids>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"PlanName\": \"\",\r\n        \"DataAllowance\": \"\",\r\n        \"DataUsed\": \"\",\r\n        \"MinuteAllowance\": \"\",\r\n        \"MinutesUsed\": 0.00,\r\n        \"TextAllowance\": \"\",\r\n        \"TextsUsed\": 0.00,\r\n        \"CostAllowance\": 0.0,\r\n        \"CostUsed\": 0.00    }\r\n]"}],"_postman_id":"b0016999-7daa-4b07-be79-94ec363cfdac"},{"name":"Group Data Usage Groups for Customer","id":"6ffe84ad-20fd-4385-a4e2-0939fed873cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/usage/GetGroupDataUsageGroupsForCustomer?customerId=<customer_id>","description":"<h2 id=\"group-data-usage-groups-for-customer\">Group Data Usage Groups for Customer</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET/api/usage/GetGroupDataUsageGroupsForCustomer/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns a list of mobile group data usage groups associated to a specifc customer</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>Unique ID for customer</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"GroupId\":0,\n      \"ResellerId\":0,\n      \"Reseller_Name\":\"\",\n      \"CustomerId\":0,\n      \"Customer\":\"\",\n      \"Group_Name\":\"\",\n      \"Number_Of_CLIs\":0,\n      \"Group_Allowance_GB\":0.00,\n      \"Group_Data_Used_GB\":0.00,\n      \"Group_Usage_Percentage\":0.00,\n      \"Nop\":\"\"\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GroupId</td>\n<td>long</td>\n<td>Unique ID of the data group</td>\n</tr>\n<tr>\n<td>ResellerId</td>\n<td>long</td>\n<td>Unique ID of the Reseller associated to the group</td>\n</tr>\n<tr>\n<td>Reseller_Name</td>\n<td>string</td>\n<td>Name of Reseller associated to the group</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>Unique ID of the Customer associated to the group</td>\n</tr>\n<tr>\n<td>Group_Name</td>\n<td>string</td>\n<td>Name of the data usage group</td>\n</tr>\n<tr>\n<td>Number_Of_CLIs</td>\n<td>integer</td>\n<td>Number of CLIs that are included in hte group</td>\n</tr>\n<tr>\n<td>Group_Allowance_GB</td>\n<td>decimal</td>\n<td>Total allowance of the group in Gigabytes</td>\n</tr>\n<tr>\n<td>group_Group_Data_Used_GBData_Used_GB</td>\n<td>decimal</td>\n<td>Total amount of data used within group in Gigabytes</td>\n</tr>\n<tr>\n<td>Group_Usage_Percentage</td>\n<td>decimal</td>\n<td>Percentage of data used by group</td>\n</tr>\n<tr>\n<td>Nop</td>\n<td>string</td>\n<td>Network operator code for group</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetGroupDataUsageGroupsForCustomer"],"host":["https://stagingapi.click2sign.co.uk/api/usage"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"e1176d94-01f7-49b0-9546-1c5af478262f","name":"Group Data Usage Groups for Customer","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/usage/GetGroupDataUsageGroupsForCustomer?customerId=<customer_id>","host":["https://stagingapi.click2sign.co.uk/api/usage"],"path":["GetGroupDataUsageGroupsForCustomer"],"query":[{"key":"customerId","value":"<customer_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\r\n   {\r\n      \"GroupId\":0,\r\n      \"ResellerId\":0,\r\n      \"Reseller_Name\":\"\",\r\n      \"CustomerId\":0,\r\n      \"Customer\":\"\",\r\n      \"Group_Name\":\"\",\r\n      \"Number_Of_CLIs\":0,\r\n      \"Group_Allowance_GB\":0.00,\r\n      \"Group_Data_Used_GB\":0.00,\r\n      \"Group_Usage_Percentage\":0.00,\r\n      \"Nop\":\"\"\r\n   }\r\n]\r\n"}],"_postman_id":"6ffe84ad-20fd-4385-a4e2-0939fed873cf"},{"name":"Group Data Usage for CLIs","id":"fd4cdca3-8ab0-40b6-a92c-1e69a4fb66eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://stagingapi.click2sign.co.uk/api/usage/GetGroupDataUsageGroupClis?groupId=<group_id>&customerId=<customer_id>","description":"<h2 id=\"group-data-usage-groups-for-clis\">Group Data Usage Groups for CLIs</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/usage/GetGroupDataUsageGroupClis/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns a list of usage for CLIs associated to a specific data usage group</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`GET`</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>long</td>\n<td>The unique ID for a group data usage group</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>long</td>\n<td>Unique ID for customer</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-headers\">Request Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Basic auth credentials (<code>`Basic {base64_encoded_credentials}`</code>)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<h4 id=\"response-status-codes\">Response Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response-body\">Example Response Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"GroupId\": 0,\n      \"CLI\": \"\",\n      \"TariffName\": \"\",\n      \"Username\": \"\",\n      \"Tariff_Allowance_GB\": 0.00,\n      \"Individual_Usage_GB\": 0.00,\n      \"Individual_Usage_MB\": 0.00,\n      \"Individual_Usage_Percentage\": 0.00,\n      \"Nop\": \"\",\n      \"CustomerId\": 0\n   }\n]\n\n</code></pre>\n<h4 id=\"response-body-attributes\"><strong>Response Body Attributes</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GroupId</td>\n<td>long</td>\n<td>Unique ID of the data group</td>\n</tr>\n<tr>\n<td>CLI</td>\n<td>string</td>\n<td>The mobile number of the connection</td>\n</tr>\n<tr>\n<td>TariffName</td>\n<td>string</td>\n<td>The name for the tariff associated to the connection</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>string</td>\n<td>The username (if applicable) assoicated to the connection</td>\n</tr>\n<tr>\n<td>Tariff_Allowance_GB</td>\n<td>decimal</td>\n<td>The tariff allowance in GigaBytes</td>\n</tr>\n<tr>\n<td>Individual_Usage_GB</td>\n<td>decimal</td>\n<td>Usage for the connection in GigaBytes</td>\n</tr>\n<tr>\n<td>Individual_Usage_MB</td>\n<td>decimal</td>\n<td>Usage for the connection in MegaBytes</td>\n</tr>\n<tr>\n<td>Individual_Usage_Percentage</td>\n<td>decimal</td>\n<td>Percentage of usage utilised by the connection</td>\n</tr>\n<tr>\n<td>Nop</td>\n<td>string</td>\n<td>Network operator code for group</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>long</td>\n<td>The unique ID of the customer</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetGroupDataUsageGroupClis"],"host":["https://stagingapi.click2sign.co.uk/api/usage"],"query":[{"key":"groupId","value":"<group_id>"},{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"b2213ab3-b7df-4752-b36c-9bb30871a15e","name":"Group Data Usage for CLIs","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stagingapi.click2sign.co.uk/api/usage/GetGroupDataUsageGroupClis?groupId=<group_id>&customerId=<customer_id>","host":["https://stagingapi.click2sign.co.uk/api/usage"],"path":["GetGroupDataUsageGroupClis"],"query":[{"key":"groupId","value":"<group_id>"},{"key":"customerId","value":"<customer_id>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"GroupId\": 0,\n        \"CLI\": \"\",\n        \"TariffName\": \"\",\n        \"Username\": \"\",\n        \"Tariff_Allowance_GB\": 0,\n        \"Individual_Usage_GB\": 0,\n        \"Individual_Usage_MB\": 0,\n        \"Individual_Usage_Percentage\": 0,\n        \"Nop\": \"\",\n        \"CustomerId\": 0\n    }\n]"}],"_postman_id":"fd4cdca3-8ab0-40b6-a92c-1e69a4fb66eb"}],"id":"6d0f84d2-2665-4ea4-a280-da0d796849b1","description":"<p>This subfolder contains the primary API calls for the <code>/api/usage</code>endpoint.</p>\n","_postman_id":"6d0f84d2-2665-4ea4-a280-da0d796849b1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"id":"2ae9aa30-c99b-4b66-8bcc-a4804f30f43d","description":"<p>The <code>/usage</code>endpoint allows you to view group data usage and itemised usage for mobile connections</p>\n","_postman_id":"2ae9aa30-c99b-4b66-8bcc-a4804f30f43d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","id":"60bcc004-ce2f-4b03-aef7-6e655a47419d","name":"Abzorb API Documentation - v1.1","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]}},"event":[{"listen":"prerequest","script":{"id":"4884bee2-e634-4823-8aa4-b87e0f174477","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"f35bb297-a79a-4d87-8891-66fd4449dc5c","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":"https://stagingapi.click2sign.co.uk/api/"},{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"},{"key":"network_code","value":"<network_code>"},{"key":"contract_id","value":"<contract_ids>"},{"key":"cli","value":"<cli>"},{"key":"bar_suffix","value":"<bar_suffix>"},{"key":"sim","value":"<sim>"},{"key":"tariff_id","value":"<tariff_id>"},{"key":"customer_id","value":"<customer_id>"},{"key":"diary_task_id","value":"<diary_task_id>"},{"key":"diary_entry_id","value":"<diary_entry_id>"},{"key":"order_id","value":"<order_id>"},{"key":"toggle","value":"<toggle_bar>"},{"key":"comment","value":"<comment>"},{"key":"lapsed_time","value":"<lapsed_time>"},{"key":"group_id","value":"<group_id>"},{"key":"connection_id","value":"<connection_id>"},{"key":"tariff_level_option_id","value":"<tariff_level_opton_id>"},{"key":"alert_level","value":"<alert_level>"},{"key":"tariff_option_id","value":"<tariff_option_id>"},{"key":"divert_cli","value":"<diver_cli>"}]}